blob: c860c7ac9e68e422ae0241abbd97ea3e695c0b32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/discover/discover-2.0.2.ebuild,v 1.10 2004/06/24 22:03:30 agriffis Exp $
DESCRIPTION="Library and front-end for retrieving information about a system's hardware"
HOMEPAGE="http://hackers.progeny.com/discover/"
SRC_URI="http://archive.progeny.com/progeny/discover/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ppc -sparc ~alpha hppa amd64"
IUSE="pcmcia"
DEPEND="pcmcia? ( virtual/linux-sources )
net-misc/curl
dev-libs/expat"
PDEPEND="sys-apps/discover-data"
src_unpack() {
unpack ${A}
cd ${S}
if ! which docbook-to-man 2>/dev/null ; then
if which docbook2man 2>/dev/null ; then
sed -i 's:docbook-to-man:docbook2man:' doctools/docbook.mk
else
sed -i 's:docbook-to-man:echo:' doctools/docbook.mk
fi
fi
}
src_compile() {
local myconf=""
use pcmcia \
&& myconf="--with-pcmcia-headers=/usr/src/linux/include"
econf ${myconf} || die
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS README RELEASE
}
|