diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2001-12-27 06:06:44 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2001-12-27 06:06:44 +0000 |
commit | d7a8c78ad30db745ec438fa5edac623b4b52644e (patch) | |
tree | 90017a4e69b8d2058451a7b978431a05704e51c8 /sys-apps/isapnptools | |
parent | Version 1.19.3 is no longer available at all (diff) | |
download | historical-d7a8c78ad30db745ec438fa5edac623b4b52644e.tar.gz historical-d7a8c78ad30db745ec438fa5edac623b4b52644e.tar.bz2 historical-d7a8c78ad30db745ec438fa5edac623b4b52644e.zip |
New isapnptools
Diffstat (limited to 'sys-apps/isapnptools')
-rw-r--r-- | sys-apps/isapnptools/isapnptools-1.26.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/sys-apps/isapnptools/isapnptools-1.26.ebuild b/sys-apps/isapnptools/isapnptools-1.26.ebuild new file mode 100644 index 000000000000..f62b06f31edd --- /dev/null +++ b/sys-apps/isapnptools/isapnptools-1.26.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-apps/isapnptools/isapnptools-1.26.ebuild,v 1.1 2001/12/27 06:06:44 karltk Exp $ + +A=${P}.tgz +S=${WORKDIR}/${P} +DESCRIPTION="Tools for configuring ISA PnP devices" +SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/hardware/${A}" +HOMEPAGE="http://www.roestock.demon.co.uk/isapnptools/" + +DEPEND="virtual/glibc" + +src_unpack() { + unpack ${A} + cd ${S}/src + cp pnpdump_main.c pnpdump_main.c.orig + sed -e "s/^static FILE\* o_file.*//" \ + -e "s/o_file/stdout/g" \ + -e "s/stdout_name/o_file_name/g" pnpdump_main.c.orig > pnpdump_main.c + +} + +src_compile() { + + ./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} || die + emake || die + +} + +src_install() { + + make DESTDIR=${D} install || die + + dodoc AUTHORS ChangeLog COPYING README NEWS + docinto txt + dodoc doc/README* doc/*.txt test/*.txt + dodoc etc/isapnp.* + + exeinto /etc/init.d + newexe ${FILESDIR}/isapnp.rc6 isapnp + +} |