diff options
author | John P. Davis <zhen@gentoo.org> | 2004-10-06 05:57:48 +0000 |
---|---|---|
committer | John P. Davis <zhen@gentoo.org> | 2004-10-06 05:57:48 +0000 |
commit | a728d8d48859c76b8240bf4dd3ca3fd6bc6767b1 (patch) | |
tree | c81bd263e42c612cca115c989474414e383215bd /sys-boot | |
parent | minor fix (Manifest recommit) (diff) | |
download | gentoo-2-a728d8d48859c76b8240bf4dd3ca3fd6bc6767b1.tar.gz gentoo-2-a728d8d48859c76b8240bf4dd3ca3fd6bc6767b1.tar.bz2 gentoo-2-a728d8d48859c76b8240bf4dd3ca3fd6bc6767b1.zip |
code cleanup
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/netboot/ChangeLog | 8 | ||||
-rw-r--r-- | sys-boot/netboot/netboot-0.9.8.ebuild | 18 |
2 files changed, 14 insertions, 12 deletions
diff --git a/sys-boot/netboot/ChangeLog b/sys-boot/netboot/ChangeLog index 04c08143873d..db0cff203e35 100644 --- a/sys-boot/netboot/ChangeLog +++ b/sys-boot/netboot/ChangeLog @@ -1,3 +1,9 @@ # ChangeLog for sys-boot/netboot # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/netboot/ChangeLog,v 1.1 2004/10/06 05:40:12 zhen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/netboot/ChangeLog,v 1.2 2004/10/06 05:57:48 zhen Exp $ + +*netboot-0.9.8 (06 Oct 2004) + + 06 Oct 2004; John Davis <zhen@gentoo.org> netboot-0.9.8.ebuild: + cleaned up the code + diff --git a/sys-boot/netboot/netboot-0.9.8.ebuild b/sys-boot/netboot/netboot-0.9.8.ebuild index 3d5415449d6e..5e09b312e2d1 100644 --- a/sys-boot/netboot/netboot-0.9.8.ebuild +++ b/sys-boot/netboot/netboot-0.9.8.ebuild @@ -1,8 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/netboot/netboot-0.9.8.ebuild,v 1.1 2004/10/06 05:40:12 zhen Exp $ - -inherit eutils +# $Header: /var/cvsroot/gentoo-x86/sys-boot/netboot/netboot-0.9.8.ebuild,v 1.2 2004/10/06 05:57:48 zhen Exp $ DESCRIPTION="x86 specific netbooting utility" HOMEPAGE="http://netboot.sourceforge.net" @@ -14,15 +12,13 @@ KEYWORDS="-* ~x86" IUSE="" DEPEND="sys-devel/autoconf" -#RDEPEND="" - -src_compile() { - econf || die "econf failed" - emake || die "emake failed" -} +RDEPEND="" src_install() { - einstall || die + # this method does not work thanks to a icky Makefile, so we use einstall instead + # DESTDIR="${D}" make install || die + einstall || die "einstall failed" dodoc README version - cp -a FlashCard ${D}/usr/share/doc/${P} + docinto FlashCard + dodoc FlashCard/* } |