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