diff options
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/libtool/ChangeLog | 9 | ||||
-rw-r--r-- | sys-devel/libtool/libtool-2.4-r3.ebuild (renamed from sys-devel/libtool/libtool-2.4-r2.ebuild) | 7 | ||||
-rw-r--r-- | sys-devel/libtool/libtool-9999.ebuild | 7 |
3 files changed, 18 insertions, 5 deletions
diff --git a/sys-devel/libtool/ChangeLog b/sys-devel/libtool/ChangeLog index 904bad7b97cb..2cb939a9c56f 100644 --- a/sys-devel/libtool/ChangeLog +++ b/sys-devel/libtool/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sys-devel/libtool # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.192 2011/09/23 04:17:36 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.193 2011/09/24 06:39:35 vapier Exp $ + +*libtool-2.4-r3 (24 Sep 2011) + + 24 Sep 2011; Mike Frysinger <vapier@gentoo.org> -libtool-2.4-r2.ebuild, + +libtool-2.4-r3.ebuild, libtool-9999.ebuild: + Restore libltdl.la and add a comment noting its requirement to prevent future + screw-ups #383929 by Francesco Riosa. *libtool-2.4-r2 (23 Sep 2011) diff --git a/sys-devel/libtool/libtool-2.4-r2.ebuild b/sys-devel/libtool/libtool-2.4-r3.ebuild index 60593f52db0f..155795939c6a 100644 --- a/sys-devel/libtool/libtool-2.4-r2.ebuild +++ b/sys-devel/libtool/libtool-2.4-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.4-r2.ebuild,v 1.1 2011/09/23 04:17:36 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.4-r3.ebuild,v 1.1 2011/09/24 06:39:35 vapier Exp $ EAPI="2" #356089 @@ -70,9 +70,12 @@ src_configure() { src_install() { emake DESTDIR="${D}" install || die - use static-libs || find "${D}" -name libltdl.la -delete dodoc AUTHORS ChangeLog* NEWS README THANKS TODO doc/PLATFORMS + # While the libltdl.la file is not used directly, the m4 ltdl logic + # keys off of its existence when searching for ltdl support. #293921 + #use static-libs || find "${D}" -name libltdl.la -delete + for x in $(find "${D}" -name config.guess -o -name config.sub) ; do rm -f "${x}" ; ln -sf /usr/share/gnuconfig/${x##*/} "${x}" done diff --git a/sys-devel/libtool/libtool-9999.ebuild b/sys-devel/libtool/libtool-9999.ebuild index 855e413d72ad..7f1555b04a7c 100644 --- a/sys-devel/libtool/libtool-9999.ebuild +++ b/sys-devel/libtool/libtool-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-9999.ebuild,v 1.7 2011/09/23 04:17:36 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-9999.ebuild,v 1.8 2011/09/24 06:39:35 vapier Exp $ EAPI="2" #356089 @@ -67,9 +67,12 @@ src_configure() { src_install() { emake DESTDIR="${D}" install || die - use static-libs || find "${D}" -name libltdl.la -delete dodoc AUTHORS ChangeLog* NEWS README THANKS TODO doc/PLATFORMS + # While the libltdl.la file is not used directly, the m4 ltdl logic + # keys off of its existence when searching for ltdl support. #293921 + #use static-libs || find "${D}" -name libltdl.la -delete + for x in $(find "${D}" -name config.guess -o -name config.sub) ; do rm -f "${x}" ; ln -sf /usr/share/gnuconfig/${x##*/} "${x}" done |