Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/ayttm/
Date: Sun, 27 Dec 2015 13:41:54
Message-Id: 1451223688.f8d89c7563c61f9fbd01a9526987af9112cf334a.mrueg@gentoo
1 commit: f8d89c7563c61f9fbd01a9526987af9112cf334a
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 27 13:39:05 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 27 13:41:28 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8d89c75
7
8 net-im/ayttm: EAPI bump
9
10 Package-Manager: portage-2.2.26
11
12 net-im/ayttm/ayttm-0.6.3-r1.ebuild | 67 ++++++++++++++++++++++++++++++++++++++
13 1 file changed, 67 insertions(+)
14
15 diff --git a/net-im/ayttm/ayttm-0.6.3-r1.ebuild b/net-im/ayttm/ayttm-0.6.3-r1.ebuild
16 new file mode 100644
17 index 0000000..ce6f529
18 --- /dev/null
19 +++ b/net-im/ayttm/ayttm-0.6.3-r1.ebuild
20 @@ -0,0 +1,67 @@
21 +# Copyright 1999-2015 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=5
26 +inherit autotools eutils multilib
27 +
28 +DESCRIPTION="A multi-protocol instant messaging client"
29 +HOMEPAGE="http://ayttm.sourceforge.net/"
30 +SRC_URI="mirror://sourceforge/ayttm/${PV}/${P}.tar.bz2"
31 +
32 +LICENSE="GPL-2"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~x86"
35 +IUSE="crypt icq irc xmpp lj msn nls oscar smtp webcam xscreensaver yahoo"
36 +
37 +CDEPEND="app-text/enchant
38 + dev-libs/glib:2
39 + dev-libs/openssl:0
40 + virtual/libiconv
41 + x11-libs/gdk-pixbuf
42 + x11-libs/gtk+:2
43 + x11-libs/libX11
44 + x11-libs/libXpm
45 + x11-libs/pango
46 + crypt? ( app-crypt/gpgme )
47 + webcam? ( media-libs/jasper )
48 + xscreensaver? ( x11-libs/libXScrnSaver )
49 + yahoo? ( net-libs/libyahoo2 )"
50 +RDEPEND="${CDEPEND}
51 + webcam? ( media-tv/xawtv )"
52 +DEPEND="${CDEPEND}
53 + sys-devel/bison
54 + sys-devel/flex
55 + nls? ( sys-devel/gettext )"
56 +
57 +src_prepare() {
58 + epatch "${FILESDIR}"/${P}-opt-xscreensaver.patch \
59 + "${FILESDIR}"/${P}-opt-webcam.patch
60 + eautoreconf
61 +}
62 +
63 +src_configure() {
64 + econf \
65 + $(use_enable crypt aycryption) \
66 + --disable-esd \
67 + $(use_enable icq) \
68 + $(use_enable irc) \
69 + $(use_enable xmpp jabber) \
70 + $(use_enable lj) \
71 + $(use_enable msn) \
72 + $(use_enable nls) \
73 + $(use_enable oscar) \
74 + $(use_enable smtp) \
75 + $(use_enable webcam) \
76 + $(use_enable xscreensaver) \
77 + $(use_enable yahoo) \
78 + --disable-arts \
79 + --enable-posix-dlopen \
80 + --disable-static
81 +}
82 +
83 +src_install() {
84 + emake DESTDIR="${D}" install
85 + dodoc AUTHORS ChangeLog README README.LINUX TODO
86 + rm -f "${D}"/usr/$(get_libdir)/${PN}/*.la
87 +}