Gentoo Archives: gentoo-commits

From: "Markus Ullmann (jokey)" <jokey@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/xchat-gnome: ChangeLog xchat-gnome-0.18.ebuild
Date: Sat, 03 Nov 2007 21:36:20
Message-Id: E1IoQf4-0001sC-QV@stork.gentoo.org
1 jokey 07/11/03 21:36:10
2
3 Modified: ChangeLog
4 Added: xchat-gnome-0.18.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.3.17)
8
9 Revision Changes Path
10 1.31 net-irc/xchat-gnome/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.31&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/ChangeLog?rev=1.31&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/ChangeLog?r1=1.30&r2=1.31
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v
19 retrieving revision 1.30
20 retrieving revision 1.31
21 diff -u -r1.30 -r1.31
22 --- ChangeLog 4 Apr 2007 19:25:52 -0000 1.30
23 +++ ChangeLog 3 Nov 2007 21:36:10 -0000 1.31
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-irc/xchat-gnome
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.30 2007/04/04 19:25:52 swegener Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/ChangeLog,v 1.31 2007/11/03 21:36:10 jokey Exp $
29 +
30 +*xchat-gnome-0.18 (03 Nov 2007)
31 +
32 + 03 Nov 2007; Markus Ullmann <jokey@g.o> +xchat-gnome-0.18.ebuild:
33 + Version bump
34
35 *xchat-gnome-0.17 (04 Apr 2007)
36
37
38
39
40 1.1 net-irc/xchat-gnome/xchat-gnome-0.18.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.18.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.18.ebuild?rev=1.1&content-type=text/plain
44
45 Index: xchat-gnome-0.18.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-irc/xchat-gnome/xchat-gnome-0.18.ebuild,v 1.1 2007/11/03 21:36:10 jokey Exp $
50
51 inherit gnome2 eutils autotools
52
53 DESCRIPTION="GNOME frontend for the popular X-Chat IRC client"
54 HOMEPAGE="http://xchat-gnome.navi.cx/"
55 SRC_URI="http://releases.navi.cx/${PN}/${P}.tar.bz2"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
60 IUSE="perl tcl python ssl mmx ipv6 nls dbus libnotify spell"
61
62 RDEPEND=">=dev-libs/glib-2.12.0
63 >=gnome-base/libgnome-2.16.0
64 >=gnome-base/gconf-2.8.0
65 >=gnome-base/libgnomeui-2.16.0
66 >=gnome-base/libglade-2.3.0
67 >=gnome-base/gnome-vfs-2.9.2
68 >=x11-libs/gtk+-2.10.0
69 spell? ( app-text/gtkspell )
70 ssl? ( >=dev-libs/openssl-0.9.6d )
71 perl? ( >=dev-lang/perl-5.6.1 )
72 python? ( dev-lang/python )
73 tcl? ( dev-lang/tcl )
74 dbus? ( >=sys-apps/dbus-0.60 )
75 >=x11-libs/libsexy-0.1.11
76 libnotify? ( >=x11-libs/libnotify-0.3.2 )"
77
78 DEPEND="${RDEPEND}
79 gnome-base/gnome-common
80 >=dev-util/pkgconfig-0.7
81 >=app-text/gnome-doc-utils-0.3.2
82 nls? ( sys-devel/gettext )"
83
84 # gnome-base/gnome-common is temporarily needed for re-creating configure
85
86 src_unpack() {
87 unpack ${A}
88 cd "${S}"
89
90 epatch "${FILESDIR}"/0.17-libnotify-configure.patch
91 epatch "${FILESDIR}"/0.17-segfault-fix.patch
92
93 AT_M4DIR="m4" eautoreconf
94 }
95
96 src_compile() {
97 econf \
98 --enable-gnomefe \
99 --enable-shm \
100 --disable-schemas-install \
101 --disable-scrollkeeper \
102 $(use_enable ssl openssl) \
103 $(use_enable perl) \
104 $(use_enable python) \
105 $(use_enable tcl) \
106 $(use_enable mmx) \
107 $(use_enable ipv6) \
108 $(use_enable dbus) \
109 $(use_enable nls) \
110 $(use_enable libnotify) \
111 || die "econf failed"
112 emake || die "emake failed"
113 }
114
115 src_install() {
116 USE_DESTDIR="1" gnome2_src_install || die "gnome2_src_install failed"
117
118 # install plugin development header
119 insinto /usr/include/xchat-gnome
120 doins src/common/xchat-plugin.h || die "doins failed"
121
122 dodoc AUTHORS ChangeLog NEWS || die "dodoc failed"
123 }
124
125 pkg_postinst() {
126 gnome2_gconf_install
127 gnome2_scrollkeeper_update
128 }
129
130
131
132 --
133 gentoo-commits@g.o mailing list