diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-01-01 22:35:51 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-01-01 22:35:51 +0000 |
commit | 6958fd94660a6f75a8de8b52b4f994965b22573c (patch) | |
tree | 1fc05a3b3717559d2787ef0c8284e2eb26a87775 /sys-apps/isapnptools | |
parent | lots of cleanup. jpeg,zlib,libpng should now extract in the correct dirs (diff) | |
download | gentoo-2-6958fd94660a6f75a8de8b52b4f994965b22573c.tar.gz gentoo-2-6958fd94660a6f75a8de8b52b4f994965b22573c.tar.bz2 gentoo-2-6958fd94660a6f75a8de8b52b4f994965b22573c.zip |
header, tab fixes
Diffstat (limited to 'sys-apps/isapnptools')
-rw-r--r-- | sys-apps/isapnptools/isapnptools-1.26.ebuild | 45 |
1 files changed, 22 insertions, 23 deletions
diff --git a/sys-apps/isapnptools/isapnptools-1.26.ebuild b/sys-apps/isapnptools/isapnptools-1.26.ebuild index f62b06f31edd..64e3c6540844 100644 --- a/sys-apps/isapnptools/isapnptools-1.26.ebuild +++ b/sys-apps/isapnptools/isapnptools-1.26.ebuild @@ -1,43 +1,42 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 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 $ +# Maintainer: Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-apps/isapnptools/isapnptools-1.26.ebuild,v 1.2 2002/01/01 22:35:51 azarah 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}" +SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/hardware/${P}.tgz" 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 - + 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 - + ./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.* + make DESTDIR=${D} install || die - exeinto /etc/init.d - newexe ${FILESDIR}/isapnp.rc6 isapnp + 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 } |