diff options
author | J Robert Ray <jrray@gentoo.org> | 2002-10-26 16:34:58 +0000 |
---|---|---|
committer | J Robert Ray <jrray@gentoo.org> | 2002-10-26 16:34:58 +0000 |
commit | 26b96755ecc6fa31457c822ae12f777be1386ca1 (patch) | |
tree | 20cf9fdb7b2d5dc32012fab5b524202b6c8127f7 /dev-util/global | |
parent | new version (diff) | |
download | gentoo-2-26b96755ecc6fa31457c822ae12f777be1386ca1.tar.gz gentoo-2-26b96755ecc6fa31457c822ae12f777be1386ca1.tar.bz2 gentoo-2-26b96755ecc6fa31457c822ae12f777be1386ca1.zip |
New ebuild
Diffstat (limited to 'dev-util/global')
-rw-r--r-- | dev-util/global/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/global/files/digest-global-4.5 | 1 | ||||
-rw-r--r-- | dev-util/global/global-4.5.ebuild | 27 |
3 files changed, 36 insertions, 0 deletions
diff --git a/dev-util/global/ChangeLog b/dev-util/global/ChangeLog new file mode 100644 index 000000000000..bceaecec092c --- /dev/null +++ b/dev-util/global/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-util/global +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/global/ChangeLog,v 1.1 2002/10/26 16:34:58 jrray Exp $ + +*global-4.5 (26 Oct 2002) + + 26 Oct 2002; J Robert Ray <jrray@gentoo.org> : New ebuild, submitted + by Rigo Ketelings <rigo@home.nl>. diff --git a/dev-util/global/files/digest-global-4.5 b/dev-util/global/files/digest-global-4.5 new file mode 100644 index 000000000000..cb22000acf0c --- /dev/null +++ b/dev-util/global/files/digest-global-4.5 @@ -0,0 +1 @@ +MD5 cd729b2798c8b2905a8c7b4913ba1ec5 global-4.5.tar.gz 413262 diff --git a/dev-util/global/global-4.5.ebuild b/dev-util/global/global-4.5.ebuild new file mode 100644 index 000000000000..d20c6703bcba --- /dev/null +++ b/dev-util/global/global-4.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/global/global-4.5.ebuild,v 1.1 2002/10/26 16:34:58 jrray Exp $ + +DEPEND=">=sys-libs/glibc-2.2" +DESCRIPTION="Global can find the locations of specified object in C, C++, Yacc, Java and assembler source files." +HOMEPAGE="http://www.gnu.org" +LICENSE="GPL-2" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" +S=${WORKDIR}/${P} +IUSE="" +KEYWORDS="~x86" +SLOT="0" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + emake || die +} + +src_install() { + einstall || die + dodoc AUTHORS COPYING INSTALL README NEWS +} |