vapier 14/11/01 01:42:59 Modified: ChangeLog libtool-2.4.3-r1.ebuild Log: Respect EPREFIX during install.
Revision Changes Path 1.230 sys-devel/libtool/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/ChangeLog?rev=1.230&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/ChangeLog?rev=1.230&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/ChangeLog?r1=1.229&r2=1.230 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v retrieving revision 1.229 retrieving revision 1.230 diff -u -r1.229 -r1.230 --- ChangeLog 1 Nov 2014 01:41:51 -0000 1.229 +++ ChangeLog 1 Nov 2014 01:42:59 -0000 1.230 @@ -1,6 +1,9 @@ # ChangeLog for sys-devel/libtool # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.229 2014/11/01 01:41:51 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.230 2014/11/01 01:42:59 vapier Exp $ + + 01 Nov 2014; Mike Frysinger <[email protected]> libtool-2.4.3-r1.ebuild: + Respect EPREFIX during install. 01 Nov 2014; Mike Frysinger <[email protected]> libtool-2.4.3-r1.ebuild: Run tests in parallel 1.3 sys-devel/libtool/libtool-2.4.3-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/libtool-2.4.3-r1.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/libtool-2.4.3-r1.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/libtool/libtool-2.4.3-r1.ebuild?r1=1.2&r2=1.3 Index: libtool-2.4.3-r1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.4.3-r1.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- libtool-2.4.3-r1.ebuild 1 Nov 2014 01:41:51 -0000 1.2 +++ libtool-2.4.3-r1.ebuild 1 Nov 2014 01:42:59 -0000 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.4.3-r1.ebuild,v 1.2 2014/11/01 01:41:51 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.4.3-r1.ebuild,v 1.3 2014/11/01 01:42:59 vapier Exp $ EAPI="4" @@ -78,16 +78,16 @@ # 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 + #use static-libs || find "${ED}" -name libltdl.la -delete # Building libtool with --disable-static will cause the installed # helper to not build static objects by default. This is undesirable # for crappy packages that utilize the system libtool, so undo that. - sed -i -e '1,/^build_old_libs=/{/^build_old_libs=/{s:=.*:=yes:}}' "${D}"/usr/bin/libtool || die + sed -i -e '1,/^build_old_libs=/{/^build_old_libs=/{s:=.*:=yes:}}' "${ED}"/usr/bin/libtool || die local x - for x in $(find "${D}" -name config.guess -o -name config.sub) ; do - ln -sf /usr/share/gnuconfig/${x##*/} "${x}" || die + for x in $(find "${ED}" -name config.guess -o -name config.sub) ; do + ln -sf "${EPREFIX}"/usr/share/gnuconfig/${x##*/} "${x}" || die done }
