From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 543A8139085 for ; Wed, 18 Jan 2017 03:15:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B1FD8234010; Wed, 18 Jan 2017 03:15:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 87804234010 for ; Wed, 18 Jan 2017 03:15:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2F5F6340FC1 for ; Wed, 18 Jan 2017 03:15:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B2CC2860 for ; Wed, 18 Jan 2017 03:15:33 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1484709305.13bf7cb0ff00807c17eeefce4c12fbad5ad4f0b1.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/t1lib/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/t1lib/t1lib-5.1.2.ebuild X-VCS-Directories: media-libs/t1lib/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 13bf7cb0ff00807c17eeefce4c12fbad5ad4f0b1 X-VCS-Branch: master Date: Wed, 18 Jan 2017 03:15:33 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5a6fc092-de98-48bf-b197-bf1c953813f3 X-Archives-Hash: 8d3ebcad2f0915a7780ea90f38532d96 commit: 13bf7cb0ff00807c17eeefce4c12fbad5ad4f0b1 Author: Aaron Bauman gentoo org> AuthorDate: Wed Jan 18 03:14:21 2017 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed Jan 18 03:15:05 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13bf7cb0 media-libs/t1lib: security cleanup wrt bug #358667 Package-Manager: portage-2.3.0 media-libs/t1lib/t1lib-5.1.2.ebuild | 73 ------------------------------------- 1 file changed, 73 deletions(-) diff --git a/media-libs/t1lib/t1lib-5.1.2.ebuild b/media-libs/t1lib/t1lib-5.1.2.ebuild deleted file mode 100644 index 8e0b0f6..00000000 --- a/media-libs/t1lib/t1lib-5.1.2.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit eutils flag-o-matic libtool toolchain-funcs - -DESCRIPTION="A Type 1 Font Rasterizer Library for UNIX/X11" -HOMEPAGE="ftp://metalab.unc.edu/pub/Linux/libs/graphics/" -SRC_URI="ftp://sunsite.unc.edu/pub/Linux/libs/graphics/${P}.tar.gz" - -LICENSE="LGPL-2 GPL-2" -SLOT="5" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris ~x86-solaris" -IUSE="X doc static-libs" - -RDEPEND="X? ( - x11-libs/libXaw - x11-libs/libX11 - x11-libs/libXt - )" -DEPEND="${RDEPEND} - doc? ( virtual/latex-base ) - X? ( - x11-libs/libXfont - x11-proto/xproto - x11-proto/fontsproto - )" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-5.1.1-parallel.patch - epatch "${FILESDIR}"/${PN}-do-not-install-t1lib_doc.patch - - sed -i -e "s:dvips:#dvips:" "${S}"/doc/Makefile.in - sed -i -e "s:\./\(t1lib\.config\):/etc/t1lib/\1:" "${S}"/xglyph/xglyph.c - # Needed for sane .so versionning on fbsd. Please don't drop. - elibtoolize -} - -src_configure() { - econf \ - --datadir="${EPREFIX}/etc" \ - $(use_enable static-libs static) \ - $(use_with X x) -} - -src_compile() { - local myopt="" - tc-export CC - - use alpha && append-flags -mieee - - if ! use doc; then - myopt="without_doc" - else - VARTEXFONTS=${T}/fonts - fi - - emake ${myopt} || die "emake failed." -} - -src_install() { - default - use static-libs || find "${ED}" -name '*.la' -exec rm -f {} + - - dodoc Changes README* - if use doc; then - cd doc - insinto /usr/share/doc/${PF} - doins *.pdf *.dvi - fi -}