Gentoo Archives: gentoo-commits

From: "Wolfram Schlich (wschlich)" <wschlich@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/gwhois: ChangeLog gwhois-20090717.ebuild gwhois-20081227.ebuild
Date: Fri, 17 Jul 2009 13:58:18
Message-Id: E1MRnx2-0001p9-D7@stork.gentoo.org
1 wschlich 09/07/17 13:58:16
2
3 Modified: ChangeLog
4 Added: gwhois-20090717.ebuild
5 Removed: gwhois-20081227.ebuild
6 Log:
7 version bump fixing bug #276750, removed old version
8 (Portage version: 2.2_rc33/cvs/Linux i686)
9
10 Revision Changes Path
11 1.44 net-misc/gwhois/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gwhois/ChangeLog?rev=1.44&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gwhois/ChangeLog?rev=1.44&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gwhois/ChangeLog?r1=1.43&r2=1.44
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/gwhois/ChangeLog,v
20 retrieving revision 1.43
21 retrieving revision 1.44
22 diff -u -r1.43 -r1.44
23 --- ChangeLog 19 Jun 2009 22:18:11 -0000 1.43
24 +++ ChangeLog 17 Jul 2009 13:58:16 -0000 1.44
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-misc/gwhois
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/ChangeLog,v 1.43 2009/06/19 22:18:11 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/ChangeLog,v 1.44 2009/07/17 13:58:16 wschlich Exp $
30 +
31 +*gwhois-20090717 (17 Jul 2009)
32 +
33 + 17 Jul 2009; Wolfram Schlich <wschlich@g.o>
34 + -gwhois-20081227.ebuild, +gwhois-20090717.ebuild:
35 + version bump fixing bug #276750, removed old version
36
37 19 Jun 2009; Brent Baude <ranger@g.o> gwhois-20081227.ebuild:
38 keyworded ~arch for ppc64, bug 272588
39
40
41
42 1.1 net-misc/gwhois/gwhois-20090717.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gwhois/gwhois-20090717.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/gwhois/gwhois-20090717.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gwhois-20090717.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/gwhois-20090717.ebuild,v 1.1 2009/07/17 13:58:16 wschlich Exp $
52
53 inherit eutils
54
55 MY_P=${P/_p/.}
56 S="${WORKDIR}/${MY_P}"
57 DESCRIPTION="generic whois"
58 HOMEPAGE="http://gwhois.de/"
59 SRC_URI="http://gwhois.de/gwhois/${MY_P/-/_}.tar.gz"
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
63 IUSE=""
64
65 RDEPEND="www-client/lynx
66 net-misc/curl
67 dev-lang/perl
68 dev-perl/libwww-perl"
69
70 src_install() {
71 dodir /etc/gwhois
72 insinto /etc/gwhois
73 doins pattern
74 dobin gwhois
75 doman gwhois.1
76 dodoc TODO "${FILESDIR}/gwhois.xinetd" README.RIPE
77 einfo ""
78 einfo "See included gwhois.xinetd for an example on how to"
79 einfo "use gwhois as a whois proxy using xinetd."
80 einfo "Just copy gwhois.xinetd to /etc/xinetd.d/gwhois"
81 einfo "and reload xinetd."
82 einfo ""
83 }
84
85 pkg_postinst() {
86 if [ -f /etc/gwhois/pattern.ripe ]; then
87 ewarn ""
88 ewarn "Will move old /etc/gwhois/pattern.ripe to removethis-pattern.ripe"
89 ewarn "as it causes malfunction with this version."
90 ewarn "If you did not modify the file, just remove it."
91 ewarn ""
92 mv /etc/gwhois/pattern.ripe /etc/gwhois/removethis-pattern.ripe
93 fi
94 }