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