Gentoo Archives: gentoo-commits

From: "Thomas Sachau (tommy)" <tommy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/elementary: elementary-1.9.5.ebuild ChangeLog elementary-1.9.3.ebuild
Date: Mon, 09 Jun 2014 10:18:45
Message-Id: 20140609101841.60C222004E@flycatcher.gentoo.org
1 tommy 14/06/09 10:18:41
2
3 Modified: ChangeLog
4 Added: elementary-1.9.5.ebuild
5 Removed: elementary-1.9.3.ebuild
6 Log:
7 Version bump, drop old
8
9 (Portage version: 2.2.10-r1/cvs/Linux x86_64, signed Manifest commit with key 0x35899067)
10
11 Revision Changes Path
12 1.19 media-libs/elementary/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/elementary/ChangeLog?rev=1.19&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/elementary/ChangeLog?rev=1.19&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/elementary/ChangeLog?r1=1.18&r2=1.19
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/elementary/ChangeLog,v
21 retrieving revision 1.18
22 retrieving revision 1.19
23 diff -u -r1.18 -r1.19
24 --- ChangeLog 1 Jun 2014 14:46:46 -0000 1.18
25 +++ ChangeLog 9 Jun 2014 10:18:41 -0000 1.19
26 @@ -1,6 +1,12 @@
27 # ChangeLog for media-libs/elementary
28 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/elementary/ChangeLog,v 1.18 2014/06/01 14:46:46 tommy Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/elementary/ChangeLog,v 1.19 2014/06/09 10:18:41 tommy Exp $
31 +
32 +*elementary-1.9.5 (09 Jun 2014)
33 +
34 + 09 Jun 2014; Thomas Sachau (Tommy[D]) <tommy@g.o>
35 + +elementary-1.9.5.ebuild, -elementary-1.9.3.ebuild:
36 + Version bump, drop old
37
38 *elementary-1.9.4 (01 Jun 2014)
39
40
41
42
43 1.1 media-libs/elementary/elementary-1.9.5.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/elementary/elementary-1.9.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/elementary/elementary-1.9.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: elementary-1.9.5.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/elementary/elementary-1.9.5.ebuild,v 1.1 2014/06/09 10:18:41 tommy Exp $
53
54 EAPI=5
55
56 MY_P=${P/_/-}
57
58 if [[ "${PV}" == "9999" ]] ; then
59 EGIT_SUB_PROJECT="core"
60 EGIT_URI_APPEND="${PN}"
61 else
62 SRC_URI="http://download.enlightenment.org/rel/libs/${PN}/${MY_P}.tar.bz2"
63 EKEY_STATE="snap"
64 fi
65
66 inherit enlightenment
67
68 DESCRIPTION="Basic widget set, based on EFL for mobile touch-screen devices."
69 HOMEPAGE="http://trac.enlightenment.org/e/wiki/Elementary"
70
71 LICENSE="LGPL-2.1"
72 KEYWORDS="~amd64 ~arm ~x86"
73 IUSE="debug examples fbcon quicklaunch sdl wayland X static-libs"
74
75 DEPEND="
76 >=dev-libs/efl-1.9.2[sdl?,png,wayland?,X?]
77 "
78 RDEPEND="${DEPEND}"
79
80 S=${WORKDIR}/${MY_P}
81
82 src_configure() {
83 MY_ECONF="
84 $(use_enable debug)
85 $(use_enable doc)
86 --disable-ecore-cocoa
87 --disable-ecore-psl1ght
88 --disable-ecore-win32
89 --disable-ecore-wince
90 --disable-elocation
91 --disable-emap
92 --disable-eweather
93 $(use_enable examples install-examples)
94 $(use_enable fbcon ecore-fb)
95 $(use_enable sdl ecore-sdl)
96 $(use_enable wayland ecore-wayland)
97 $(use_enable X ecore-x)
98 $(use_enable quicklaunch quick-launch)
99 "
100 #broken: make[4]: *** No rule to make target 'prefs_example_01.epb', needed by 'all-am'. Stop
101 # $(use_enable examples build-examples)
102
103 enlightenment_src_configure
104 }