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 E8D5B138334 for ; Mon, 8 Oct 2018 11:04:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18610E06FE; Mon, 8 Oct 2018 11:04:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E03E5E06FE for ; Mon, 8 Oct 2018 11:04:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 88CDB335C8D for ; Mon, 8 Oct 2018 11:04:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 66B1542C for ; Mon, 8 Oct 2018 11:04:13 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1538996631.2a54c0e14644702a3f075d04a95f5a4ab27a62b5.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/agg/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-libs/agg/agg-2.5-r2.ebuild X-VCS-Directories: x11-libs/agg/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 2a54c0e14644702a3f075d04a95f5a4ab27a62b5 X-VCS-Branch: master Date: Mon, 8 Oct 2018 11:04:13 +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: f77ae69b-71b0-4db1-826d-f0376fa6f5ef X-Archives-Hash: 8bb4061716e33cc5a237d3e6b0ac8e25 commit: 2a54c0e14644702a3f075d04a95f5a4ab27a62b5 Author: Mikle Kolyada gentoo org> AuthorDate: Mon Oct 8 11:03:51 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Mon Oct 8 11:03:51 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a54c0e1 x11-libs/agg: Drop old (EAPI=2) Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.49, Repoman-2.3.11 x11-libs/agg/agg-2.5-r2.ebuild | 59 ------------------------------------------ 1 file changed, 59 deletions(-) diff --git a/x11-libs/agg/agg-2.5-r2.ebuild b/x11-libs/agg/agg-2.5-r2.ebuild deleted file mode 100644 index 8228f01acbc..00000000000 --- a/x11-libs/agg/agg-2.5-r2.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -inherit eutils autotools base - -DESCRIPTION="Anti-Grain Geometry - A High Quality Rendering Engine for C++" -HOMEPAGE="http://antigrain.com/" -SRC_URI="http://antigrain.com/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ~hppa ppc ~ppc64 sparc x86 ~x86-fbsd" -IUSE="+gpc +truetype +X" - -# preffer X with enabled xcb, really -RDEPEND=" - media-libs/libsdl[X?] - X? ( >=x11-libs/libX11-1.3.99.901 ) - truetype? ( media-libs/freetype:2 ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig -" - -# taken from debian -PATCHES=( - "${FILESDIR}/${PV}/02_maintainer_mode.patch" - "${FILESDIR}/${PV}/04_no_rpath.patch" -) - -src_prepare() { - base_src_prepare - sed -r -i \ - -e 's:^(.*) -L@.*:\1:' \ - src/platform/X11/Makefile.am || die "Failed to sed" - # fix building against automake-1.12, bug 420701 - sed -i '/^AM_C_PROTOTYPES/d' configure.in || die - eautoreconf -} - -src_configure() { - # examples are not (yet) installed, so do not compile them - # sdl is harddep only sdl-tests are optional so we enable them anyway - econf \ - --enable-ctrl \ - --enable-sdltest \ - --disable-examples \ - --disable-dependency-tracking \ - $(use_enable gpc gpc) \ - $(use_enable truetype freetype) \ - $(use_with X x) -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc readme authors ChangeLog news -}