diff options
Diffstat (limited to 'net-dns/updatedd/updatedd-2.6.ebuild')
-rw-r--r-- | net-dns/updatedd/updatedd-2.6.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/net-dns/updatedd/updatedd-2.6.ebuild b/net-dns/updatedd/updatedd-2.6.ebuild new file mode 100644 index 000000000000..f4f6c336b034 --- /dev/null +++ b/net-dns/updatedd/updatedd-2.6.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dns/updatedd/updatedd-2.6.ebuild,v 1.1 2008/04/01 10:36:52 dragonheart Exp $ + +inherit eutils + +DESCRIPTION="Dynamic DNS client with plugins for several dynamic dns services" +HOMEPAGE="http://updatedd.philipp-benner.de/" +SRC_URI="http://savannah.nongnu.org/download/updatedd/${PN}_${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="virtual/libc" + +src_unpack() { + unpack "${A}" + epatch "${FILESDIR}"/${P}-options.patch +} + +src_install() { + emake DESTDIR=${D} install || die + mv ${D}/usr/share/doc/updatedd ${D}/usr/share/doc/${PF} + dodoc AUTHORS +} |