blob: af4281f71a31fb5c792552bb8a9ba42b3c8e070a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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.3 2008/12/18 04:15:31 serkan Exp $
inherit eutils
DESCRIPTION="Dynamic DNS client with plugins for several dynamic dns services"
HOMEPAGE="http://savannah.nongnu.org/projects/updatedd/"
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
}
|