diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-10-23 22:22:16 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-10-23 22:22:16 +0000 |
commit | 6091bfa6ea9068120801da62650559b58b69f923 (patch) | |
tree | 522f545e3dc607e2f8b2f509136caf40eb2a0df4 /net-misc/udhcp | |
parent | new plugin version to the masses (diff) | |
download | gentoo-2-6091bfa6ea9068120801da62650559b58b69f923.tar.gz gentoo-2-6091bfa6ea9068120801da62650559b58b69f923.tar.bz2 gentoo-2-6091bfa6ea9068120801da62650559b58b69f923.zip |
add docs and samples
Diffstat (limited to 'net-misc/udhcp')
-rw-r--r-- | net-misc/udhcp/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/udhcp/Manifest | 4 | ||||
-rw-r--r-- | net-misc/udhcp/udhcp-0.9.8.ebuild | 14 |
3 files changed, 17 insertions, 6 deletions
diff --git a/net-misc/udhcp/ChangeLog b/net-misc/udhcp/ChangeLog index 46f04d1ccc9d..74ccda83ff9d 100644 --- a/net-misc/udhcp/ChangeLog +++ b/net-misc/udhcp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/udhcp # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/udhcp/ChangeLog,v 1.5 2003/02/12 08:34:12 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/udhcp/ChangeLog,v 1.6 2003/10/23 22:22:15 seemant Exp $ + + 23 Oct 2003; Seemant Kulleen <seemant@gentoo.org> udhcp-0.9.8.ebuild: + Add documentation and samples *udhcp-0.9.8 (30 Dec 2002) diff --git a/net-misc/udhcp/Manifest b/net-misc/udhcp/Manifest index 314afbf24f3e..f52982a0d1e8 100644 --- a/net-misc/udhcp/Manifest +++ b/net-misc/udhcp/Manifest @@ -1,3 +1,3 @@ -MD5 0c243649e82116b81e2070e78d78b678 udhcp-0.9.8.ebuild 640 -MD5 65946b9ebecc0e8bcc27a53b1bf6ab41 ChangeLog 429 +MD5 f34de81f0c04f0c4ba2a5288ef5a979b udhcp-0.9.8.ebuild 721 +MD5 a56b24f41aef5572ff8582f904b9b861 ChangeLog 535 MD5 83ca9ef49068eb2140999999f245f486 files/digest-udhcp-0.9.8 62 diff --git a/net-misc/udhcp/udhcp-0.9.8.ebuild b/net-misc/udhcp/udhcp-0.9.8.ebuild index 9f8fbf5dda09..085046b0f3d8 100644 --- a/net-misc/udhcp/udhcp-0.9.8.ebuild +++ b/net-misc/udhcp/udhcp-0.9.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/udhcp/udhcp-0.9.8.ebuild,v 1.3 2003/08/14 20:31:48 tester Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/udhcp/udhcp-0.9.8.ebuild,v 1.4 2003/10/23 22:22:15 seemant Exp $ DESCRIPTION="udhcp Server/Client Package" HOMEPAGE="http://udhcp.busybox.net/" @@ -20,7 +20,15 @@ src_install() { dodir /usr/sbin dodir /usr/bin dodir /sbin - dodir /etc - install -m644 samples/udhcpd.conf ${D}/etc + + insinto /etc + doins samples/udhcpd.conf + make prefix=${D}/usr SBINDIR=${D}/sbin install || die + + dodoc AUTHORS COPYING ChangeLog README* TODO + + insinto /usr/share/udhcpc + doins samples/* + } |