summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2002-11-30 21:34:05 +0000
committerMike Frysinger <vapier@gentoo.org>2002-11-30 21:34:05 +0000
commitffe3afea80667fa30126e59e3574c9dd4f5d5021 (patch)
treec36595a23f7cf190088a60eb2f5f2a1e7d68d078 /net-misc/netkit-tftp
parentChanged econf||die to econf (diff)
downloadgentoo-2-ffe3afea80667fa30126e59e3574c9dd4f5d5021.tar.gz
gentoo-2-ffe3afea80667fa30126e59e3574c9dd4f5d5021.tar.bz2
gentoo-2-ffe3afea80667fa30126e59e3574c9dd4f5d5021.zip
Changed mkdir ${D} to dodir ${D}
Diffstat (limited to 'net-misc/netkit-tftp')
-rw-r--r--net-misc/netkit-tftp/netkit-tftp-0.17.ebuild20
1 files changed, 7 insertions, 13 deletions
diff --git a/net-misc/netkit-tftp/netkit-tftp-0.17.ebuild b/net-misc/netkit-tftp/netkit-tftp-0.17.ebuild
index 1f15f84fcc0b..315f99b5a473 100644
--- a/net-misc/netkit-tftp/netkit-tftp-0.17.ebuild
+++ b/net-misc/netkit-tftp/netkit-tftp-0.17.ebuild
@@ -1,27 +1,21 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-tftp/netkit-tftp-0.17.ebuild,v 1.8 2002/10/19 23:29:50 cselkirk Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/netkit-tftp/netkit-tftp-0.17.ebuild,v 1.9 2002/11/30 21:32:11 vapier Exp $
-S=${WORKDIR}/${P}
DESCRIPTION="the tftp server included in netkit"
SRC_URI="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-tftp-0.17.tar.gz"
HOMEPAGE="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"
+
KEYWORDS="x86 sparc sparc64 ppc"
-LICENSE="bsd"
+LICENSE="BSD"
SLOT="0"
-DEPEND="virtual/glibc"
-
src_compile() {
- cd ${S}
- ./configure --prefix=/usr --installroot=${D} || die
- emake
+ ./configure --prefix=/usr --installroot=${D} || die
+ emake || die
}
src_install() {
- mkdir -p ${D}/usr/bin ${D}/usr/sbin ${D}/usr/share/man/man1 ${D}/usr/share//man/man8
- cd ${S}
- make install
+ dodir /usr/bin /usr/sbin /usr/share/man/man1 /usr/share//man/man8
+ make install || die
}
-
-