diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-23 11:22:19 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-23 11:22:19 +0000 |
commit | da78904e9f7a9e3b15cfc7b9128c6fe7ebd1e672 (patch) | |
tree | 7d680b4205c3492e6376f2a7517e594663f852cb /dev-util/gputils/gputils-0.10.2.ebuild | |
parent | repoman'd (diff) | |
download | gentoo-2-da78904e9f7a9e3b15cfc7b9128c6fe7ebd1e672.tar.gz gentoo-2-da78904e9f7a9e3b15cfc7b9128c6fe7ebd1e672.tar.bz2 gentoo-2-da78904e9f7a9e3b15cfc7b9128c6fe7ebd1e672.zip |
repoman'd
Diffstat (limited to 'dev-util/gputils/gputils-0.10.2.ebuild')
-rw-r--r-- | dev-util/gputils/gputils-0.10.2.ebuild | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/dev-util/gputils/gputils-0.10.2.ebuild b/dev-util/gputils/gputils-0.10.2.ebuild index 690ce4dd5a62..6abb557055c3 100644 --- a/dev-util/gputils/gputils-0.10.2.ebuild +++ b/dev-util/gputils/gputils-0.10.2.ebuild @@ -1,30 +1,26 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-util/gputils/gputils-0.10.2.ebuild,v 1.3 2002/07/11 06:30:25 drobbins Exp $ +# Distributed under the terms of the GNU General Public License, v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/gputils/gputils-0.10.2.ebuild,v 1.4 2002/07/23 11:22:18 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Utils for the PICxxx procesors" SRC_URI="mirror://sourceforge/gputils/${P}.tar.gz" HOMEPAGE="http://gputils.sourceforge.net/" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +DEPEND="virtual/glibc" + src_compile(){ - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --sysconfdir=/etc || die - emake + econf || die + emake || die } src_install() { - make prefix=${D}/usr/share \ - bindir=${D}/usr/bin \ - confdir=${D}/etc \ - datadir=${D}/usr/share/ \ - mandir=${D}/usr/share/man \ - install || die + einstall || die dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README TODO dodoc doc/gputils.ps } |