Gentoo Archives: gentoo-commits

From: "Daniel Black (dragonheart)" <dragonheart@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dns/noip-updater: ChangeLog noip-updater-2.1.7-r1.ebuild
Date: Thu, 01 May 2008 21:19:07
Message-Id: E1JrgBE-0005Nw-Hx@stork.gentoo.org
1 dragonheart 08/05/01 21:19:04
2
3 Modified: ChangeLog
4 Added: noip-updater-2.1.7-r1.ebuild
5 Log:
6 fix bug #218001 - no ebuild changes just a new rc script without a space that needs to be picked up
7 (Portage version: 2.1.4.4, RepoMan options: --force)
8
9 Revision Changes Path
10 1.32 net-dns/noip-updater/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/noip-updater/ChangeLog?rev=1.32&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/noip-updater/ChangeLog?rev=1.32&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/noip-updater/ChangeLog?r1=1.31&r2=1.32
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-dns/noip-updater/ChangeLog,v
19 retrieving revision 1.31
20 retrieving revision 1.32
21 diff -u -r1.31 -r1.32
22 --- ChangeLog 5 Mar 2008 19:37:16 -0000 1.31
23 +++ ChangeLog 1 May 2008 21:19:04 -0000 1.32
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-dns/noip-updater
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-dns/noip-updater/ChangeLog,v 1.31 2008/03/05 19:37:16 coldwind Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-dns/noip-updater/ChangeLog,v 1.32 2008/05/01 21:19:04 dragonheart Exp $
29 +
30 +*noip-updater-2.1.7-r1 (02 May 2008)
31 +
32 + 02 May 2008; Daniel Black <dragonheart@g.o> noip-updater-2.1.7-r1.ebuild:
33 + as per bug #218001 there was a extra space in the init script. Thanks to Roy for finding it.
34
35 05 Mar 2008; Santiago M. Mola <coldwind@g.o>
36 noip-updater-2.1.7.ebuild:
37
38
39
40 1.1 net-dns/noip-updater/noip-updater-2.1.7-r1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/noip-updater/noip-updater-2.1.7-r1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-dns/noip-updater/noip-updater-2.1.7-r1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: noip-updater-2.1.7-r1.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-dns/noip-updater/noip-updater-2.1.7-r1.ebuild,v 1.1 2008/05/01 21:19:04 dragonheart Exp $
50
51 inherit eutils toolchain-funcs
52
53 MY_P=${P/-updater/}
54 DESCRIPTION="no-ip.com dynamic DNS updater"
55 HOMEPAGE="http://www.no-ip.com"
56 SRC_URI="http://www.no-ip.com/client/linux/${MY_P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="alpha amd64 ~hppa ia64 ~mips ~ppc ppc64 sparc x86"
61 IUSE=""
62
63 RDEPEND=""
64 DEPEND="sys-devel/gcc"
65
66 S=${WORKDIR}/${MY_P}
67
68 src_unpack() {
69 unpack ${A}
70 cd "${S}"
71 epatch "${FILESDIR}"/noip-2.1.3-cflags.patch
72 epatch "${FILESDIR}"/noip-2.1.4-daemon.patch
73 sed -i \
74 -e "s:\(#define CONFIG_FILEPATH\).*:\1 \"/etc\":" \
75 -e "s:\(#define CONFIG_FILENAME\).*:\1 \"/etc/no-ip2.conf\":" \
76 noip2.c || die
77 }
78
79 src_compile() {
80 emake \
81 CC=$(tc-getCC) \
82 PREFIX=/usr \
83 CONFDIR=/etc || die "emake failed"
84 }
85
86 src_install() {
87 dosbin noip2
88 dodoc README.FIRST
89 newinitd "${FILESDIR}"/noip2.start noip
90 }
91
92 pkg_postinst() {
93 elog "Configuration can be done manually via:"
94 elog "/usr/sbin/noip2 -C or "
95 elog "first time you use the /etc/init.d/noip script; or"
96 elog "by using this ebuild's config option."
97 }
98
99 pkg_config() {
100 cd /tmp
101 einfo "Answer the following questions."
102 noip2 -C || die
103 }
104
105
106
107 --
108 gentoo-commits@l.g.o mailing list