diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-10-20 10:46:22 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-10-20 10:46:22 +0000 |
commit | 25809e6aa47aea515748b28b49fd15fcfd0a401e (patch) | |
tree | 52908b47febc96270ab9dfcd405b22927e19a4b9 /sys-devel/libtool/libtool-1.4.2-r2.ebuild | |
parent | tab fixes (diff) | |
download | historical-25809e6aa47aea515748b28b49fd15fcfd0a401e.tar.gz historical-25809e6aa47aea515748b28b49fd15fcfd0a401e.tar.bz2 historical-25809e6aa47aea515748b28b49fd15fcfd0a401e.zip |
remove bogus patch
Diffstat (limited to 'sys-devel/libtool/libtool-1.4.2-r2.ebuild')
-rw-r--r-- | sys-devel/libtool/libtool-1.4.2-r2.ebuild | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/sys-devel/libtool/libtool-1.4.2-r2.ebuild b/sys-devel/libtool/libtool-1.4.2-r2.ebuild new file mode 100644 index 000000000000..e7690abce2f0 --- /dev/null +++ b/sys-devel/libtool/libtool-1.4.2-r2.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-1.4.2-r2.ebuild,v 1.1 2002/10/20 10:46:22 azarah Exp ${P}-r1.ebuild,v 1.8 2002/10/04 06:34:42 vapier Exp $ + +IUSE="" + +S="${WORKDIR}/${P}" +DESCRIPTION="A shared library tool for developers" +SRC_URI="ftp://ftp.gnu.org/pub/gnu/${PN}/${P}.tar.gz" +HOMEPAGE="http://www.gnu.org/software/libtool/libtool.html" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64 ~alpha" + +DEPEND="virtual/glibc" + + +pkg_setup() { + export WANT_AUTOCONF_2_5=1 + export WANT_AUTOMAKE_1_5=1 +} + +src_unpack() { + unpack ${A} + + # Fix the relink problem where the relinked libs do not get + # installed. It is *VERY* important that you get a updated + # 'libtool-${PV}-relink.patch' if you update this, as it + # fixes a very serious bug. Please not that this patch is + # included in 'libtool-${PV}-gentoo.patch' for this ebuild. + # + # NOTE: all affected apps should get a 'libtoolize --copy --force' + # added to upate libtool + # + cd ${S} + patch -p1 < ${FILESDIR}/${PV}/${PN}-1.3.5-mktemp.patch || die + patch -p1 < ${FILESDIR}/${PV}/${PN}-1.4-nonneg.patch || die + patch -p1 < ${FILESDIR}/${PV}/${P}-test.patch || die + patch -p1 < ${FILESDIR}/${PV}/${P}-relink.patch || die + patch -p0 < ${FILESDIR}/${PV}/${P}-add-x11r6-lib-in-ignores-for-rpath.patch || die + patch -p1 < ${FILESDIR}/${PV}/${P}-duplicate-dependency.patch || die + patch -p1 < ${FILESDIR}/${PV}/${P}-fix-linkage-of-cxx-code-with-gcc.patch || die + patch -p1 < ${FILESDIR}/${PV}/${P}-lib64.patch || die + patch -p1 < ${FILESDIR}/${PV}/${P}-archive-shared.patch || die + # This breaks dependancies it seems + # <azarah@gentoo.org> (20 Oct 2002) + #patch -p0 <${FILESDIR}/${PV}/${PN}-1.4.1-ltmain.sh-hack.patch || die + # Do not create bogus entries in $dependency_libs or $libdir + # with ${D} or ${S} in them. + # + # Azarah - 07 April 2002 + patch -p0 < ${FILESDIR}/${PV}/${P}-portage.patch || die +} + +src_compile() { + #we do not wat to libtoolize this build. + ./configure --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info || die + + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + + dodoc AUTHORS COPYING ChangeLog* NEWS \ + README THANKS TODO doc/PLATFORMS +} + |