Gentoo Archives: gentoo-commits

From: "Thomas Sachau (tommy)" <tommy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/eet: eet-1.7.2.ebuild ChangeLog eet-1.7.0.ebuild
Date: Fri, 23 Nov 2012 14:49:19
Message-Id: 20121123144903.C4DCF20C65@flycatcher.gentoo.org
1 tommy 12/11/23 14:49:03
2
3 Modified: ChangeLog
4 Added: eet-1.7.2.ebuild
5 Removed: eet-1.7.0.ebuild
6 Log:
7 Version bump, drop old
8
9 (Portage version: 2.2.0_alpha142-r1/cvs/Linux x86_64, signed Manifest commit with key 0x35899067)
10
11 Revision Changes Path
12 1.23 dev-libs/eet/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/eet/ChangeLog?rev=1.23&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/eet/ChangeLog?rev=1.23&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/eet/ChangeLog?r1=1.22&r2=1.23
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/eet/ChangeLog,v
21 retrieving revision 1.22
22 retrieving revision 1.23
23 diff -u -r1.22 -r1.23
24 --- ChangeLog 22 Oct 2012 13:18:32 -0000 1.22
25 +++ ChangeLog 23 Nov 2012 14:49:03 -0000 1.23
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-libs/eet
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/eet/ChangeLog,v 1.22 2012/10/22 13:18:32 tommy Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/eet/ChangeLog,v 1.23 2012/11/23 14:49:03 tommy Exp $
31 +
32 +*eet-1.7.2 (23 Nov 2012)
33 +
34 + 23 Nov 2012; Thomas Sachau (Tommy[D]) <tommy@g.o> -eet-1.7.0.ebuild,
35 + +eet-1.7.2.ebuild:
36 + Version bump, drop old
37
38 *eet-1.7.1 (22 Oct 2012)
39
40
41
42
43 1.1 dev-libs/eet/eet-1.7.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/eet/eet-1.7.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/eet/eet-1.7.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: eet-1.7.2.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/eet/eet-1.7.2.ebuild,v 1.1 2012/11/23 14:49:03 tommy Exp $
53
54 EAPI=2
55
56 inherit enlightenment
57
58 DESCRIPTION="E file chunk reading/writing library"
59 HOMEPAGE="http://trac.enlightenment.org/e/wiki/Eet"
60 SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2"
61
62 KEYWORDS="~amd64 ~arm ~x86"
63 IUSE="debug examples gnutls ssl static-libs test"
64
65 RDEPEND=">=dev-libs/eina-1.7.0
66 virtual/jpeg
67 sys-libs/zlib
68 gnutls? ( net-libs/gnutls )
69 !gnutls? ( ssl? ( dev-libs/openssl ) )"
70 DEPEND="${RDEPEND}
71 test? ( dev-libs/check
72 dev-util/lcov )"
73
74 src_configure() {
75 local SSL_FLAGS=""
76
77 if use gnutls; then
78 if use ssl; then
79 ewarn "You have enabled both 'ssl' and 'gnutls', so we will use"
80 ewarn "gnutls and not openssl for cipher and signature support"
81 fi
82 SSL_FLAGS="
83 --enable-cipher
84 --enable-signature
85 --disable-openssl
86 --enable-gnutls"
87 elif use ssl; then
88 SSL_FLAGS="
89 --enable-cipher
90 --enable-signature
91 --enable-openssl
92 --disable-gnutls"
93 else
94 SSL_FLAGS="
95 --disable-cipher
96 --disable-signature
97 --disable-openssl
98 --disable-gnutls"
99 fi
100
101 export MY_ECONF="
102 $(use_enable debug assert)
103 $(use_enable doc)
104 $(use_enable test tests)
105 ${SSL_FLAGS}
106 ${MY_ECONF}"
107
108 enlightenment_src_configure
109 }
110
111 src_install() {
112 enlightenment_src_install
113 rm -r src/examples/Makefile* || die
114 docinto examples
115 dodoc src/examples/* || die
116 }