diff options
author | 2002-10-26 16:34:58 +0000 | |
---|---|---|
committer | 2002-10-26 16:34:58 +0000 | |
commit | d670b42f531d4175d3154796f0db09504b832b0c (patch) | |
tree | c3c844727f900baac7315b90f98cedb7a1898b09 /dev-util/global/global-4.5.ebuild | |
parent | new version (diff) | |
download | historical-d670b42f531d4175d3154796f0db09504b832b0c.tar.gz historical-d670b42f531d4175d3154796f0db09504b832b0c.tar.bz2 historical-d670b42f531d4175d3154796f0db09504b832b0c.zip |
New ebuild
Diffstat (limited to 'dev-util/global/global-4.5.ebuild')
-rw-r--r-- | dev-util/global/global-4.5.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
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 +} |