diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-03-21 08:03:12 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-03-21 08:03:12 +0000 |
commit | be3c4a2647713664e005fa727e040dcf68bc74c4 (patch) | |
tree | 07e4e7d4855072ca11cd531d08137ea173ec9355 /sys-devel/m4 | |
parent | Version bump, thanks to Matthew Kennedy (diff) | |
download | gentoo-2-be3c4a2647713664e005fa727e040dcf68bc74c4.tar.gz gentoo-2-be3c4a2647713664e005fa727e040dcf68bc74c4.tar.bz2 gentoo-2-be3c4a2647713664e005fa727e040dcf68bc74c4.zip |
new version
Diffstat (limited to 'sys-devel/m4')
-rw-r--r-- | sys-devel/m4/ChangeLog | 4 | ||||
-rw-r--r-- | sys-devel/m4/files/digest-m4-1.4p | 1 | ||||
-rw-r--r-- | sys-devel/m4/m4-1.4p.ebuild | 51 |
3 files changed, 55 insertions, 1 deletions
diff --git a/sys-devel/m4/ChangeLog b/sys-devel/m4/ChangeLog index ad911d335e9a..9cbc5617fc6a 100644 --- a/sys-devel/m4/ChangeLog +++ b/sys-devel/m4/ChangeLog @@ -1,6 +1,8 @@ # ChangeLog for sys-devel/m4 # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/ChangeLog,v 1.1 2002/02/01 21:53:38 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/ChangeLog,v 1.2 2002/03/21 08:03:12 azarah Exp $ + +*m4-1.4p (21 March 2002) *m4-1.4o-r2 (1 Feb 2002) diff --git a/sys-devel/m4/files/digest-m4-1.4p b/sys-devel/m4/files/digest-m4-1.4p new file mode 100644 index 000000000000..a8c5d9091fb0 --- /dev/null +++ b/sys-devel/m4/files/digest-m4-1.4p @@ -0,0 +1 @@ +MD5 a40e0a64e0c0128e38b7e4892beba2cb m4-1.4ppre2.tar.gz 689255 diff --git a/sys-devel/m4/m4-1.4p.ebuild b/sys-devel/m4/m4-1.4p.ebuild new file mode 100644 index 000000000000..ea5c96ccd0ca --- /dev/null +++ b/sys-devel/m4/m4-1.4p.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-devel/m4/m4-1.4p.ebuild,v 1.1 2002/03/21 08:03:12 azarah Exp $ + +MY_P=${P/p/ppre2} +S=${WORKDIR}/${MY_P} +DESCRIPTION="GNU macro processor" +SRC_URI="ftp://ftp.seindal.dk/gnu/${MY_P}.tar.gz" +HOMEPAGE="http://www.gnu.org/software/m4/m4.html" + +DEPEND="virtual/glibc + nls? ( sys-devel/gettext ) + >=sys-devel/libtool-1.3.5-r2" + +RDEPEND="virtual/glibc" + +src_compile() { + local myconf + if [ -z "`use nls`" ] + then + myconf="--disable-nls" + fi + + ./configure --prefix=/usr \ + --libexecdir=/usr/lib \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --with-modules \ + --host=${CHOST} \ + ${myconf} || die + + make ${MAKEOPTS} || die +} + +src_install() { + make prefix=${D}/usr \ + libexecdir=${D}/usr/lib \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + install || die + +# rm -rf ${D}/usr/include + + dodoc AUTHORS BACKLOG ChangeLog COPYING NEWS README* THANKS TODO + docinto modules + dodoc modules/README modules/TODO + docinto html + dohtml examples/WWW/*.htm +} + |