diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-05-29 17:33:09 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-05-29 17:33:09 +0000 |
commit | 0e887996b0a910f0e50f034744cab3b0d049bce2 (patch) | |
tree | 78822298c811cdbba93cb6e112cf29818e6f3460 /dev-libs | |
parent | drop pypy1.8 support, add pypy2_0 (diff) | |
download | gentoo-2-0e887996b0a910f0e50f034744cab3b0d049bce2.tar.gz gentoo-2-0e887996b0a910f0e50f034744cab3b0d049bce2.tar.bz2 gentoo-2-0e887996b0a910f0e50f034744cab3b0d049bce2.zip |
Remove deprecated python_* commands. Remove -L<libdir> from dnet-config.
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libdnet/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/libdnet/libdnet-1.12.ebuild | 10 |
2 files changed, 6 insertions, 9 deletions
diff --git a/dev-libs/libdnet/ChangeLog b/dev-libs/libdnet/ChangeLog index 748ebc1db1c8..ea8a290f1f7e 100644 --- a/dev-libs/libdnet/ChangeLog +++ b/dev-libs/libdnet/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libdnet # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.61 2013/05/29 16:04:41 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/ChangeLog,v 1.62 2013/05/29 17:33:09 jer Exp $ + + 29 May 2013; Jeroen Roovers <jer@gentoo.org> libdnet-1.12.ebuild: + Remove deprecated python_* commands. Remove -L<libdir> from dnet-config. 29 May 2013; Jeroen Roovers <jer@gentoo.org> libdnet-1.12.ebuild: Stable for HPPA (bug #471420). diff --git a/dev-libs/libdnet/libdnet-1.12.ebuild b/dev-libs/libdnet/libdnet-1.12.ebuild index 4ef7e2915e26..a0b5635ccda8 100644 --- a/dev-libs/libdnet/libdnet-1.12.ebuild +++ b/dev-libs/libdnet/libdnet-1.12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.12.ebuild,v 1.5 2013/05/29 16:04:41 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdnet/libdnet-1.12.ebuild,v 1.6 2013/05/29 17:33:09 jer Exp $ EAPI=5 @@ -27,13 +27,6 @@ RESTRICT="test" DOCS=( README THANKS TODO ) -pkg_setup() { - if use python; then - python_set_active_version 2 - python_pkg_setup - fi -} - src_prepare() { # Useless copy rm -r trunk/ || die @@ -42,6 +35,7 @@ src_prepare() { -e 's/libcheck.a/libcheck.so/g' \ -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' \ configure.in || die + sed -i -e 's|-L@libdir@ ||g' dnet-config.in || die use ipv6 && epatch "${WORKDIR}/${P}.ipv6-1.patch" autotools-utils_src_prepare } |