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