Gentoo Archives: gentoo-commits

From: "Kevin McCarthy (signals)" <signals@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-im/ayttm: metadata.xml ChangeLog ayttm-0.6.3.ebuild
Date: Mon, 21 Feb 2011 16:56:42
Message-Id: 20110221165631.7645320057@flycatcher.gentoo.org
1 signals 11/02/21 16:56:31
2
3 Added: metadata.xml ChangeLog ayttm-0.6.3.ebuild
4 Log:
5 New ebuild: ayttm IM client
6
7 (Portage version: 2.2.0_alpha24/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 net-im/ayttm/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/ayttm/metadata.xml?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/ayttm/metadata.xml?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/ayttm/metadata.xml?r1=1.2&r2=1.3
15
16
17
18
19 1.17 net-im/ayttm/ChangeLog
20
21 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/ayttm/ChangeLog?rev=1.17&view=markup
22 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/ayttm/ChangeLog?rev=1.17&content-type=text/plain
23 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/ayttm/ChangeLog?r1=1.16&r2=1.17
24
25
26
27
28 1.1 net-im/ayttm/ayttm-0.6.3.ebuild
29
30 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/ayttm/ayttm-0.6.3.ebuild?rev=1.1&view=markup
31 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-im/ayttm/ayttm-0.6.3.ebuild?rev=1.1&content-type=text/plain
32
33 Index: ayttm-0.6.3.ebuild
34 ===================================================================
35 # Copyright 1999-2011 Gentoo Foundation
36 # Distributed under the terms of the GNU General Public License v2
37 # $Header: /var/cvsroot/gentoo-x86/net-im/ayttm/ayttm-0.6.3.ebuild,v 1.1 2011/02/21 16:56:31 signals Exp $
38
39 EAPI=4
40 inherit autotools eutils multilib
41
42 DESCRIPTION="A multi-protocol instant messaging client"
43 HOMEPAGE="http://ayttm.sourceforge.net/"
44 SRC_URI="mirror://sourceforge/ayttm/${PV}/${P}.tar.bz2"
45
46 LICENSE="GPL-2"
47 SLOT="0"
48 KEYWORDS="~amd64"
49 IUSE="crypt esd icq irc jabber lj msn nls oscar smtp webcam xscreensaver yahoo"
50
51 CDEPEND="app-text/enchant
52 dev-libs/glib:2
53 dev-libs/openssl
54 virtual/libiconv
55 x11-libs/gdk-pixbuf
56 x11-libs/gtk+:2
57 x11-libs/libX11
58 x11-libs/libXpm
59 x11-libs/pango
60 crypt? ( app-crypt/gpgme )
61 esd? ( media-sound/esound )
62 webcam? ( media-libs/jasper )
63 xscreensaver? ( x11-libs/libXScrnSaver )
64 yahoo? ( net-libs/libyahoo2 )"
65 RDEPEND="${CDEPEND}
66 webcam? ( media-tv/xawtv )"
67 DEPEND="${CDEPEND}
68 sys-devel/bison
69 sys-devel/flex
70 nls? ( sys-devel/gettext )"
71
72 src_prepare() {
73 epatch "${FILESDIR}"/${P}-opt-xscreensaver.patch \
74 "${FILESDIR}"/${P}-opt-webcam.patch
75 eautoreconf
76 }
77
78 src_configure() {
79 econf \
80 $(use_enable crypt aycryption) \
81 $(use_enable esd) \
82 $(use_enable icq) \
83 $(use_enable irc) \
84 $(use_enable jabber) \
85 $(use_enable lj) \
86 $(use_enable msn) \
87 $(use_enable nls) \
88 $(use_enable oscar) \
89 $(use_enable smtp) \
90 $(use_enable webcam) \
91 $(use_enable xscreensaver) \
92 $(use_enable yahoo) \
93 --disable-arts \
94 --enable-posix-dlopen \
95 --disable-static
96 }
97
98 src_install() {
99 emake DESTDIR="${D}" install
100 dodoc AUTHORS ChangeLog README README.LINUX TODO
101 rm -f "${D}"/usr/$(get_libdir)/${PN}/*.la
102 }