blob: 601d3b26f33b3e98d030753a5ea663680d229dfc (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-dns/noip-updater/noip-updater-1.6.ebuild,v 1.3 2003/06/15 13:13:10 jhhudso Exp $
IUSE=""
MY_P=${PN/-/_}_v${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="no-ip.com dynamic DNS updater"
HOMEPAGE="http://www.no-ip.com"
SRC_URI="http://www.no-ip.com/client/linux/${MY_P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
ebegin "Patching noip.c..."
patch noip.c < ${FILESDIR}/noip.c.patch || die
eend
}
pkg_config() {
cd /tmp
einfo "Answer the following questions."
(no-ip.sh && mv no-ip.conf /etc/no-ip.conf) || die
ln -s /etc/no-ip.conf /usr/lib/no-ip.conf >& /dev/null
}
src_compile() {
emake || die
}
src_install() {
into /usr
dosbin noip
dosbin no-ip.sh
docinto ${P}
dodoc README.FIRST
exeinto /etc/init.d
newexe ${FILESDIR}/noip.start noip
prepalldocs
}
pkg_postinst() {
einfo "Configuration can be done manually via:"
einfo "/usr/sbin/no-ip.sh; or "
einfo "first time you use the /etc/init.d/noip script; or"
einfo "by using this ebuild's config option."
}
|