diff options
author | 2008-05-05 03:17:26 +0000 | |
---|---|---|
committer | 2008-05-05 03:17:26 +0000 | |
commit | d4f7e2222f6e8b9548cdd456b96a8770c3b3a68c (patch) | |
tree | 967c8b49f8dacaec9fd8daaad5452b18e91a057e /sys-devel/libtool | |
parent | Require pkg-config, fix python version (diff) | |
download | gentoo-2-d4f7e2222f6e8b9548cdd456b96a8770c3b3a68c.tar.gz gentoo-2-d4f7e2222f6e8b9548cdd456b96a8770c3b3a68c.tar.bz2 gentoo-2-d4f7e2222f6e8b9548cdd456b96a8770c3b3a68c.zip |
Version bump.
(Portage version: 2.2_pre5)
Diffstat (limited to 'sys-devel/libtool')
-rw-r--r-- | sys-devel/libtool/ChangeLog | 7 | ||||
-rw-r--r-- | sys-devel/libtool/libtool-2.2.4.ebuild | 49 |
2 files changed, 55 insertions, 1 deletions
diff --git a/sys-devel/libtool/ChangeLog b/sys-devel/libtool/ChangeLog index e009ce75ec4b..10ebf5e42010 100644 --- a/sys-devel/libtool/ChangeLog +++ b/sys-devel/libtool/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/libtool # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.136 2008/04/22 22:43:45 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.137 2008/05/05 03:17:26 vapier Exp $ + +*libtool-2.2.4 (05 May 2008) + + 05 May 2008; Mike Frysinger <vapier@gentoo.org> +libtool-2.2.4.ebuild: + Version bump. *libtool-2.2.2-r1 (22 Apr 2008) diff --git a/sys-devel/libtool/libtool-2.2.4.ebuild b/sys-devel/libtool/libtool-2.2.4.ebuild new file mode 100644 index 000000000000..2b8bf23ffb70 --- /dev/null +++ b/sys-devel/libtool/libtool-2.2.4.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.2.4.ebuild,v 1.1 2008/05/05 03:17:26 vapier Exp $ + +inherit eutils autotools + +DESCRIPTION="A shared library tool for developers" +HOMEPAGE="http://www.gnu.org/software/libtool/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="1.5" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="vanilla" + +RDEPEND="sys-devel/gnuconfig + >=sys-devel/autoconf-2.60 + >=sys-devel/automake-1.10" +DEPEND="${RDEPEND} + sys-apps/help2man" + +src_unpack() { + unpack ${A} + cd "${S}" + + if ! use vanilla ; then + epunt_cxx + cd libltdl/m4 + epatch "${FILESDIR}"/1.5.20/${PN}-1.5.20-use-linux-version-in-fbsd.patch #109105 + cd "${S}" + + eautoreconf + fi +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog* NEWS README THANKS TODO doc/PLATFORMS + + local x + for x in libtool libtoolize ; do + help2man ${x} > ${x}.1 + doman ${x}.1 || die + done + + for x in $(find "${D}" -name config.guess -o -name config.sub) ; do + rm -f "${x}" ; ln -sf /usr/share/gnuconfig/${x##*/} "${x}" + done +} |