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: gwhois-20120626.ebuild ChangeLog
Date: Mon, 09 Jul 2012 21:04:51
Message-Id: 20120709181906.98E9820063@flycatcher.gentoo.org
1 wschlich 12/07/09 18:19:06
2
3 Modified: ChangeLog
4 Added: gwhois-20120626.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha112/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.54 net-misc/gwhois/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gwhois/ChangeLog?rev=1.54&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gwhois/ChangeLog?rev=1.54&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gwhois/ChangeLog?r1=1.53&r2=1.54
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/gwhois/ChangeLog,v
20 retrieving revision 1.53
21 retrieving revision 1.54
22 diff -u -r1.53 -r1.54
23 --- ChangeLog 1 Aug 2011 07:17:12 -0000 1.53
24 +++ ChangeLog 9 Jul 2012 18:19:06 -0000 1.54
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-misc/gwhois
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/ChangeLog,v 1.53 2011/08/01 07:17:12 wschlich Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/ChangeLog,v 1.54 2012/07/09 18:19:06 wschlich Exp $
31 +
32 +*gwhois-20120626 (09 Jul 2012)
33 +
34 + 09 Jul 2012; Wolfram Schlich <wschlich@g.o> +gwhois-20120626.ebuild:
35 + version bump
36
37 01 Aug 2011; Wolfram Schlich <wschlich@g.o>
38 -gwhois-20080716.ebuild:
39
40
41
42 1.1 net-misc/gwhois/gwhois-20120626.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gwhois/gwhois-20120626.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gwhois/gwhois-20120626.ebuild?rev=1.1&content-type=text/plain
46
47 Index: gwhois-20120626.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-misc/gwhois/gwhois-20120626.ebuild,v 1.1 2012/07/09 18:19:06 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 dev-perl/Net-LibIDN"
70
71 src_install() {
72 dodir /etc/gwhois
73 insinto /etc/gwhois
74 doins pattern
75 dobin gwhois
76 doman gwhois.1
77 dodoc TODO "${FILESDIR}/gwhois.xinetd" README.RIPE
78 einfo ""
79 einfo "See included gwhois.xinetd for an example on how to"
80 einfo "use gwhois as a whois proxy using xinetd."
81 einfo "Just copy gwhois.xinetd to /etc/xinetd.d/gwhois"
82 einfo "and reload xinetd."
83 einfo ""
84 }
85
86 pkg_postinst() {
87 if [ -f /etc/gwhois/pattern.ripe ]; then
88 ewarn ""
89 ewarn "Will move old /etc/gwhois/pattern.ripe to removethis-pattern.ripe"
90 ewarn "as it causes malfunction with this version."
91 ewarn "If you did not modify the file, just remove it."
92 ewarn ""
93 mv /etc/gwhois/pattern.ripe /etc/gwhois/removethis-pattern.ripe
94 fi
95 }