From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 2AADC139BC8 for ; Sun, 20 Sep 2015 10:43:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6FCFD21C044; Sun, 20 Sep 2015 10:43:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 00A1821C004 for ; Sun, 20 Sep 2015 10:43:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0302F34087C for ; Sun, 20 Sep 2015 10:43:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44569178 for ; Sun, 20 Sep 2015 10:43:24 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1442745421.729a8abb7cb4e1fa2be9a4646f8e70211d89a2e7.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/openpgm/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/openpgm/openpgm-5.1.118.ebuild X-VCS-Directories: net-libs/openpgm/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 729a8abb7cb4e1fa2be9a4646f8e70211d89a2e7 X-VCS-Branch: master Date: Sun, 20 Sep 2015 10:43:24 +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: 0704d849-2691-43af-9ffa-14bbe723e8cb X-Archives-Hash: ada3a6c193a1c38d914c8faeed4f8fa5 commit: 729a8abb7cb4e1fa2be9a4646f8e70211d89a2e7 Author: Justin Lecher gentoo org> AuthorDate: Sun Sep 20 10:37:01 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Sep 20 10:37:01 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=729a8abb net-libs/openpgm: Drop old Package-Manager: portage-2.2.20.1 Signed-off-by: Justin Lecher gentoo.org> net-libs/openpgm/openpgm-5.1.118.ebuild | 42 --------------------------------- 1 file changed, 42 deletions(-) diff --git a/net-libs/openpgm/openpgm-5.1.118.ebuild b/net-libs/openpgm/openpgm-5.1.118.ebuild deleted file mode 100644 index dde8f77..0000000 --- a/net-libs/openpgm/openpgm-5.1.118.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=3 -inherit autotools - -DESCRIPTION="OpenPGM is an open source implementation of the Pragmatic General -Multicast (PGM) specification" -HOMEPAGE="https://code.google.com/p/openpgm" -SRC_URI="https://openpgm.googlecode.com/files/libpgm-${PV}~dfsg.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 arm hppa ppc ppc64 x86 ~x86-fbsd" -IUSE="static-libs" - -DEPEND="" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/libpgm-${PV}~dfsg/${PN}/pgm" - -src_prepare() { - eautoreconf -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - --disable-dependency-tracking -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed." - dodoc "${S}"/../doc/* "${S}"/README - - # remove useless .la files - find "${D}" -name '*.la' -delete - - # remove useless .a (only for non static compilation) - use static-libs || find "${D}" -name '*.a' -delete -}