diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-12-09 01:26:53 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-09 01:26:53 +0000 |
commit | 4cc0f093215ed62fa4ef1867c6d913694d1262d3 (patch) | |
tree | 7ffcdc762c3e7aa283bc049434a5a3b549cacbcd /sys-apps/isapnptools | |
parent | Changed ant dependency to ant-core. (diff) | |
download | gentoo-2-4cc0f093215ed62fa4ef1867c6d913694d1262d3.tar.gz gentoo-2-4cc0f093215ed62fa4ef1867c6d913694d1262d3.tar.bz2 gentoo-2-4cc0f093215ed62fa4ef1867c6d913694d1262d3.zip |
touchups
(Portage version: 2.0.53)
Diffstat (limited to 'sys-apps/isapnptools')
-rw-r--r-- | sys-apps/isapnptools/isapnptools-1.26-r1.ebuild | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/sys-apps/isapnptools/isapnptools-1.26-r1.ebuild b/sys-apps/isapnptools/isapnptools-1.26-r1.ebuild index 0a50a9477bb3..06b0997de9dc 100644 --- a/sys-apps/isapnptools/isapnptools-1.26-r1.ebuild +++ b/sys-apps/isapnptools/isapnptools-1.26-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/isapnptools/isapnptools-1.26-r1.ebuild,v 1.2 2005/04/22 00:19:27 wormo Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/isapnptools/isapnptools-1.26-r1.ebuild,v 1.3 2005/12/09 01:26:53 vapier Exp $ DESCRIPTION="Tools for configuring ISA PnP devices" HOMEPAGE="http://www.roestock.demon.co.uk/isapnptools/" @@ -8,14 +8,14 @@ SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/hardware/${P}.tgz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 x86 -ppc" +KEYWORDS="-* amd64 x86" IUSE="" -DEPEND="virtual/libc" +DEPEND="" src_unpack() { unpack ${A} - cd ${S}/src + cd "${S}"/src sed -i \ -e "s/^static FILE\* o_file.*//" \ -e "s/o_file/stdout/g" \ @@ -25,15 +25,14 @@ src_unpack() { } src_install() { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die dodir /sbin - mv ${D}/usr/sbin/isapnp ${D}/sbin/ || die "couldnt relocate isapnp" + mv "${D}"/usr/sbin/isapnp "${D}"/sbin/ || die "couldnt relocate isapnp" dodoc AUTHORS ChangeLog README NEWS docinto txt dodoc doc/README* doc/*.txt test/*.txt dodoc etc/isapnp.* - exeinto /etc/init.d - newexe ${FILESDIR}/isapnp.rc isapnp + newinitd "${FILESDIR}"/isapnp.rc isapnp } |