diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-09-18 17:25:05 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-09-18 17:25:05 +0000 |
commit | 244a799f7d0d5fa796222913a3004033d796c078 (patch) | |
tree | 5ed12518fe49b69180411438d961bc1ffa307aa6 /sys-apps/discover/discover-2.0.1.ebuild | |
parent | version bump (diff) | |
download | gentoo-2-244a799f7d0d5fa796222913a3004033d796c078.tar.gz gentoo-2-244a799f7d0d5fa796222913a3004033d796c078.tar.bz2 gentoo-2-244a799f7d0d5fa796222913a3004033d796c078.zip |
version bump
Diffstat (limited to 'sys-apps/discover/discover-2.0.1.ebuild')
-rw-r--r-- | sys-apps/discover/discover-2.0.1.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/sys-apps/discover/discover-2.0.1.ebuild b/sys-apps/discover/discover-2.0.1.ebuild new file mode 100644 index 000000000000..2ee32c86c8d2 --- /dev/null +++ b/sys-apps/discover/discover-2.0.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/discover/discover-2.0.1.ebuild,v 1.1 2003/09/18 17:24:59 seemant Exp $ + +IUSE="pcmcia" + +S=${WORKDIR}/${P} +DESCRIPTION="Library and front-end for retrieving information about a system's hardware." +HOMEPAGE="http://hackers.progeny.com/${PN}/" +SRC_URI="http://archive.progeny.com/progeny/${PN}/${P}.tar.bz2" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~arm" + +DEPEND="virtual/linux-sources + net-ftp/curl + dev-libs/expat" + +PDEPEND="sys-apps/discover-data" + +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/${P}-gcc-3.3.patch +} + +src_compile() { + local myconf="" + + use pcmcia \ + && myconf="${myconf} --with-pcmcia-headers=/usr/src/linux/include" + + econf ${myconf} || die + emake || die +} + +src_install() { + einstall || die + + dodoc AUTHORS INSTALL LICENSE README RELEASE +} |