Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/openpgm/
Date: Sun, 20 Sep 2015 10:43:29
Message-Id: 1442745421.729a8abb7cb4e1fa2be9a4646f8e70211d89a2e7.jlec@gentoo
1 commit: 729a8abb7cb4e1fa2be9a4646f8e70211d89a2e7
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 20 10:37:01 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 20 10:37:01 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=729a8abb
7
8 net-libs/openpgm: Drop old
9
10 Package-Manager: portage-2.2.20.1
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 net-libs/openpgm/openpgm-5.1.118.ebuild | 42 ---------------------------------
14 1 file changed, 42 deletions(-)
15
16 diff --git a/net-libs/openpgm/openpgm-5.1.118.ebuild b/net-libs/openpgm/openpgm-5.1.118.ebuild
17 deleted file mode 100644
18 index dde8f77..0000000
19 --- a/net-libs/openpgm/openpgm-5.1.118.ebuild
20 +++ /dev/null
21 @@ -1,42 +0,0 @@
22 -# Copyright 1999-2014 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -EAPI=3
27 -inherit autotools
28 -
29 -DESCRIPTION="OpenPGM is an open source implementation of the Pragmatic General
30 -Multicast (PGM) specification"
31 -HOMEPAGE="https://code.google.com/p/openpgm"
32 -SRC_URI="https://openpgm.googlecode.com/files/libpgm-${PV}~dfsg.tar.gz"
33 -
34 -LICENSE="LGPL-2.1"
35 -SLOT="0"
36 -KEYWORDS="amd64 arm hppa ppc ppc64 x86 ~x86-fbsd"
37 -IUSE="static-libs"
38 -
39 -DEPEND=""
40 -RDEPEND="${DEPEND}"
41 -
42 -S="${WORKDIR}/libpgm-${PV}~dfsg/${PN}/pgm"
43 -
44 -src_prepare() {
45 - eautoreconf
46 -}
47 -
48 -src_configure() {
49 - econf \
50 - $(use_enable static-libs static) \
51 - --disable-dependency-tracking
52 -}
53 -
54 -src_install() {
55 - emake DESTDIR="${D}" install || die "emake install failed."
56 - dodoc "${S}"/../doc/* "${S}"/README
57 -
58 - # remove useless .la files
59 - find "${D}" -name '*.la' -delete
60 -
61 - # remove useless .a (only for non static compilation)
62 - use static-libs || find "${D}" -name '*.a' -delete
63 -}