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/edje: edje-1.7.7.ebuild ChangeLog edje-1.7.4.ebuild edje-1.7.6.ebuild
Date: Mon, 20 May 2013 10:25:33
Message-Id: 20130520102526.60C282171D@flycatcher.gentoo.org
1 tommy 13/05/20 10:25:26
2
3 Modified: ChangeLog
4 Added: edje-1.7.7.ebuild
5 Removed: edje-1.7.4.ebuild edje-1.7.6.ebuild
6 Log:
7 Version bump, drop old
8
9 (Portage version: 2.2.0_alpha174-r1/cvs/Linux x86_64, signed Manifest commit with key 0x35899067)
10
11 Revision Changes Path
12 1.24 media-libs/edje/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/edje/ChangeLog?rev=1.24&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/edje/ChangeLog?rev=1.24&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/edje/ChangeLog?r1=1.23&r2=1.24
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/media-libs/edje/ChangeLog,v
21 retrieving revision 1.23
22 retrieving revision 1.24
23 diff -u -r1.23 -r1.24
24 --- ChangeLog 14 Apr 2013 22:18:49 -0000 1.23
25 +++ ChangeLog 20 May 2013 10:25:26 -0000 1.24
26 @@ -1,6 +1,12 @@
27 # ChangeLog for media-libs/edje
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/media-libs/edje/ChangeLog,v 1.23 2013/04/14 22:18:49 tommy Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/edje/ChangeLog,v 1.24 2013/05/20 10:25:26 tommy Exp $
31 +
32 +*edje-1.7.7 (20 May 2013)
33 +
34 + 20 May 2013; Thomas Sachau (Tommy[D]) <tommy@g.o> +edje-1.7.7.ebuild,
35 + -edje-1.7.4.ebuild, -edje-1.7.6.ebuild:
36 + Version bump, drop old
37
38 14 Apr 2013; Thomas Sachau (Tommy[D]) <tommy@g.o> edje-1.7.6.ebuild:
39 Update dependency version requirements
40
41
42
43 1.1 media-libs/edje/edje-1.7.7.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/edje/edje-1.7.7.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/edje/edje-1.7.7.ebuild?rev=1.1&content-type=text/plain
47
48 Index: edje-1.7.7.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-libs/edje/edje-1.7.7.ebuild,v 1.1 2013/05/20 10:25:26 tommy Exp $
53
54 EAPI=2
55
56 inherit autotools enlightenment
57
58 DESCRIPTION="graphical layout and animation library"
59 HOMEPAGE="http://www.enlightenment.org/pages/edje.html"
60 SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2"
61
62 LICENSE="BSD-2 GPL-2"
63 KEYWORDS="~amd64 ~arm ~x86"
64 IUSE="debug +cache static-libs vim-syntax"
65
66 DEPEND="dev-lang/lua
67 >=dev-libs/eet-1.7.6
68 >=dev-libs/eina-1.7.6
69 >=dev-libs/embryo-1.7.4
70 >=media-libs/evas-1.7.7
71 >=dev-libs/ecore-1.7.7"
72 RDEPEND=${DEPEND}
73
74 src_prepare() {
75 sed -i "s:1.7.7:1.7.4:g" configure.ac
76 eautoreconf
77 }
78
79 src_configure() {
80 MY_ECONF+="
81 $(use_enable cache edje-program-cache)
82 $(use_enable cache edje-calc-cache)
83 $(use_enable !debug amalgamation)
84 $(use_enable doc)
85 $(use_with vim-syntax vim /usr/share/vim)
86 "
87 enlightenment_src_configure
88 }
89
90 src_install() {
91 if use vim-syntax ; then
92 insinto /usr/share/vim/vimfiles/syntax/
93 doins data/edc.vim || die
94 fi
95 dodoc utils/{gimp-edje-export.py,inkscape2edc} || die
96 enlightenment_src_install
97 }