diff options
Diffstat (limited to 'sys-apps/discover/discover-1.5.ebuild')
-rw-r--r-- | sys-apps/discover/discover-1.5.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/sys-apps/discover/discover-1.5.ebuild b/sys-apps/discover/discover-1.5.ebuild deleted file mode 100644 index 4087a066b0b2..000000000000 --- a/sys-apps/discover/discover-1.5.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# -# (C) 2002 The TelemetryBox Corporation. http://telemetrybox.biz -# Christoph Lameter, <christoph@lameter.com>, July 15, 2002 -# -# Released under the GPL -# -DESCRIPTION="Discover hardware and load the appropriate drivers for that hardware." - -LONGDESC=" - Discover is a hardware identification system based on the libdiscover1 - library. Discover provides a flexible interface that programs can use to - report a wide range of information about the hardware that is installed on a - Linux system. In addition to reporting information, discover includes - support for doing hardware detection at boot time. Detection occurs in two - stages: The first stage, which runs from an initial ramdisk (initrd), loads - just the drivers needed to mount the root file system, and the second stage - loads the rest (ethernet cards, sound cards, etc.)." - -HOMEPAGE="http://www.progeny.com/discover" - -SRC_URI="ftp://ftp.debian.org/debian/pool/main/d/discover/discover_1.5-1.tar.gz" - -LICENSE="GPL" -SLOT="1" -KEYWORDS="x86 ppc" - -DEPEND="bash" - -# Run-time dependencies, same as DEPEND if RDEPEND isn't defined: -RDEPEND="home/discover-data" - -S=${WORKDIR}/${P} - -src_compile() { - ./configure --prefix=/usr \ - --sbindir=/sbin \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info || die "configure failed" - emake || die -} - -src_install () { - make DESTDIR=${D} install || die - mv ${D}/etc/init.d/discover.init ${D}/etc/init.d/discover - insinto /usr/share/discover - doins discover/linuxrc - dodoc BUGS AUTHORS ChangeLog NEWS README TODO ChangeLog.mandrake docs/ISA-Structure docs/PCI-Structure docs/Programming - prepallman -} |