diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2013-03-12 19:33:57 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2013-03-12 19:33:57 +0000 |
commit | 96586540dadff4d728cee4bff71fd142d57a78d9 (patch) | |
tree | cb23296b1bb102d96f0b5d7bc4351f7dfe918d39 /media-libs | |
parent | Version bump to 0.7.1. (diff) | |
download | gentoo-2-96586540dadff4d728cee4bff71fd142d57a78d9.tar.gz gentoo-2-96586540dadff4d728cee4bff71fd142d57a78d9.tar.bz2 gentoo-2-96586540dadff4d728cee4bff71fd142d57a78d9.zip |
Remove useless use of epunt_cxx wrt #460976 by Roman Žilka
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libmad/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libmad/libmad-0.15.1b-r7.ebuild | 13 |
2 files changed, 12 insertions, 8 deletions
diff --git a/media-libs/libmad/ChangeLog b/media-libs/libmad/ChangeLog index 2125d64fd580..3253d0bc0f06 100644 --- a/media-libs/libmad/ChangeLog +++ b/media-libs/libmad/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/libmad -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libmad/ChangeLog,v 1.71 2012/09/07 22:34:23 radhermit Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmad/ChangeLog,v 1.72 2013/03/12 19:33:57 ssuominen Exp $ + + 12 Mar 2013; Samuli Suominen <ssuominen@gentoo.org> libmad-0.15.1b-r7.ebuild: + Remove useless use of epunt_cxx wrt #460976 by Roman Žilka 07 Sep 2012; Tim Harder <radhermit@gentoo.org> metadata.xml: Remove redundant maintainer from metadata. diff --git a/media-libs/libmad/libmad-0.15.1b-r7.ebuild b/media-libs/libmad/libmad-0.15.1b-r7.ebuild index 548e429c7203..c077f8a03996 100644 --- a/media-libs/libmad/libmad-0.15.1b-r7.ebuild +++ b/media-libs/libmad/libmad-0.15.1b-r7.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libmad/libmad-0.15.1b-r7.ebuild,v 1.9 2012/08/22 02:55:24 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmad/libmad-0.15.1b-r7.ebuild,v 1.10 2013/03/12 19:33:57 ssuominen Exp $ EAPI=4 @@ -27,9 +27,10 @@ src_prepare() { "${FILESDIR}"/libmad-0.15.1b-gcc44-mips-h-constraint-removal.patch eautoreconf - - elibtoolize - epunt_cxx #74490 + # unnecessary when eautoreconf'd +# elibtoolize + # unnecessary when eautoreconf'd with new autoconf, for example, 2.69 +# epunt_cxx #74490 } src_configure() { @@ -65,5 +66,5 @@ src_install() { sed -i -e "s:^libdir.*:libdir=${EPREFIX}/usr/$(get_libdir):" \ "${ED}"/usr/$(get_libdir)/pkgconfig/mad.pc - find "${ED}" -name '*.la' -delete + prune_libtool_files --all } |