blob: ee09877b4c52bd977d79b61bb5a489bad437aa3d (
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
28
29
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/updatedd/updatedd-2.3.ebuild,v 1.2 2005/01/31 16:06:42 blubb 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="x86 ppc ~amd64"
IUSE=""
RDEPEND="virtual/libc"
src_unpack() {
unpack ${A}
# Fix the Makefile.in so $(bindir) is created before installing files there
cd ${S}
epatch ${FILESDIR}/${P}-makefile.patch || die "Patch Failed"
}
src_install() {
emake DESTDIR=${D} install || die
mv ${D}/usr/share/doc/updatedd ${D}/usr/share/doc/${PF}
dodoc AUTHORS
}
|