diff options
author | 2006-09-04 19:34:27 +0000 | |
---|---|---|
committer | 2006-09-04 19:34:27 +0000 | |
commit | d88789d8589e46dc8523043b97fc2b7f0c684816 (patch) | |
tree | a6d72aee8086f83c2bb4ea111b2e129537ae340f /net-misc/dhcping/dhcping-1.2.ebuild | |
parent | Removed masking of ultimate ircd, since 3.0.1 has been marked stable for quie... (diff) | |
download | gentoo-2-d88789d8589e46dc8523043b97fc2b7f0c684816.tar.gz gentoo-2-d88789d8589e46dc8523043b97fc2b7f0c684816.tar.bz2 gentoo-2-d88789d8589e46dc8523043b97fc2b7f0c684816.zip |
initial ebuild, bug #128096
(Portage version: 2.1.1_rc1-r2)
Diffstat (limited to 'net-misc/dhcping/dhcping-1.2.ebuild')
-rw-r--r-- | net-misc/dhcping/dhcping-1.2.ebuild | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/net-misc/dhcping/dhcping-1.2.ebuild b/net-misc/dhcping/dhcping-1.2.ebuild new file mode 100644 index 000000000000..4f91a92a0f70 --- /dev/null +++ b/net-misc/dhcping/dhcping-1.2.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcping/dhcping-1.2.ebuild,v 1.1 2006/09/04 19:34:27 jhuebel Exp $ + +DESCRIPTION="Utility for sending a dhcp request to a dhcp server to see if it is responding." +HOMEPAGE="http://www.mavetju.org/unix/general.php" +SRC_URI="http://www.mavetju.org/download/${P}.tar.gz" +LICENSE="BSD" + +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="" + +DEPEND="" + +src_compile() { + econf || die "econf failed" +} + +src_install() { + make DESTDIR=${D} install || die +} |