Gentoo Archives: gentoo-commits

From: "Michael Januszewski (spock)" <spock@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-im/ekg: ChangeLog ekg-1.8_rc1.ebuild
Date: Sat, 13 Sep 2008 20:39:03
Message-Id: E1KebtV-0006Nu-4L@stork.gentoo.org
1 spock 08/09/13 20:39:01
2
3 Modified: ChangeLog
4 Added: ekg-1.8_rc1.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.26 x86_64)
8
9 Revision Changes Path
10 1.41 net-im/ekg/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/ekg/ChangeLog?rev=1.41&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/ekg/ChangeLog?rev=1.41&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/ekg/ChangeLog?r1=1.40&r2=1.41
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-im/ekg/ChangeLog,v
19 retrieving revision 1.40
20 retrieving revision 1.41
21 diff -u -r1.40 -r1.41
22 --- ChangeLog 25 Mar 2008 17:54:09 -0000 1.40
23 +++ ChangeLog 13 Sep 2008 20:39:00 -0000 1.41
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-im/ekg
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ChangeLog,v 1.40 2008/03/25 17:54:09 coldwind Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ChangeLog,v 1.41 2008/09/13 20:39:00 spock Exp $
29 +
30 +*ekg-1.8_rc1 (13 Sep 2008)
31 +
32 + 13 Sep 2008; MichaƂ Januszewski <spock@g.o>
33 + +files/ekg-1.8_rc1-gtkutil-button-decl.patch, +ekg-1.8_rc1.ebuild:
34 + Version bump.
35
36 25 Mar 2008; Santiago M. Mola <coldwind@g.o>
37 -files/ekg-1.6-dragonfly.patch, -files/ekg-1.6_rc1-fpic.patch,
38
39
40
41 1.1 net-im/ekg/ekg-1.8_rc1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/ekg/ekg-1.8_rc1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-im/ekg/ekg-1.8_rc1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ekg-1.8_rc1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-im/ekg/ekg-1.8_rc1.ebuild,v 1.1 2008/09/13 20:39:00 spock Exp $
51
52 inherit eutils
53
54 IUSE="gif gtk jpeg ncurses python readline spell ssl threads zlib"
55
56 DESCRIPTION="EKG (Eksperymentalny Klient Gadu-Gadu) - a text client for Polish instant messaging system Gadu-Gadu"
57 HOMEPAGE="http://ekg.chmurka.net/"
58 SRC_URI="http://ekg.chmurka.net/${P/_/}.tar.gz"
59
60 SLOT="0"
61 LICENSE="GPL-2"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86"
63
64 S="${WORKDIR}/${P/_/}"
65
66 RDEPEND="net-libs/libgadu
67 ssl? ( >=dev-libs/openssl-0.9.6 )
68 ncurses? ( sys-libs/ncurses )
69 readline? ( sys-libs/readline )
70 zlib? ( sys-libs/zlib )
71 python? ( dev-lang/python )
72 spell? ( >=app-text/aspell-0.50.3 )
73 gif? ( media-libs/giflib )
74 jpeg? ( media-libs/jpeg )
75 gtk? ( >=x11-libs/gtk+-2.0 )"
76
77 DEPEND=">=sys-devel/automake-1.7
78 >=sys-devel/autoconf-2.50
79 ${RDEPEND}"
80
81 src_unpack() {
82 unpack ${A}
83 cd "${S}"
84 epatch "${FILESDIR}/${P}-gtkutil-button-decl.patch"
85 }
86
87 src_compile() {
88 local myconf="--enable-ioctld --disable-static --enable-dynamic"
89 if use ncurses; then
90 myconf="$myconf --enable-force-ncurses"
91 else
92 myconf="$myconf --disable-ui-ncurses"
93 fi
94 use readline && myconf="$myconf --enable-ui-readline"
95
96 econf ${myconf} \
97 `use_with python` \
98 `use_with threads pthread` \
99 `use_with jpeg libjpeg` \
100 `use_with gif libgif` \
101 `use_with zlib` \
102 `use_enable spell aspell` \
103 `use_with ssl openssl` \
104 `use_enable ssl openssl` \
105 `use_enable gtk ui-gtk` \
106 || die
107 emake || die
108 }
109
110 src_install() {
111 make DESTDIR="${D}" install || die
112 dodoc docs/{*.txt,ULOTKA,TODO,README,FAQ}
113 }