diff options
author | 2015-03-17 01:58:29 +0000 | |
---|---|---|
committer | 2015-03-17 01:58:29 +0000 | |
commit | b9ca9fbf7d097d3d23a1cf46f160da64c25fc644 (patch) | |
tree | 0c81c70690a37ed0f020b27abb4a45c49e0e1683 /media-libs/edje | |
parent | Version bump #537916 by José Romildo Malaquias. Import live git ebuild from ... (diff) | |
download | gentoo-2-b9ca9fbf7d097d3d23a1cf46f160da64c25fc644.tar.gz gentoo-2-b9ca9fbf7d097d3d23a1cf46f160da64c25fc644.tar.bz2 gentoo-2-b9ca9fbf7d097d3d23a1cf46f160da64c25fc644.zip |
Version bump. Import live git ebuild from overlay.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'media-libs/edje')
-rw-r--r-- | media-libs/edje/ChangeLog | 11 | ||||
-rw-r--r-- | media-libs/edje/edje-1.7.10.ebuild | 50 | ||||
-rw-r--r-- | media-libs/edje/edje-9999.ebuild | 50 |
3 files changed, 109 insertions, 2 deletions
diff --git a/media-libs/edje/ChangeLog b/media-libs/edje/ChangeLog index b7f6be6dbab9..022e2ce569ae 100644 --- a/media-libs/edje/ChangeLog +++ b/media-libs/edje/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-libs/edje -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/edje/ChangeLog,v 1.26 2013/11/12 18:21:21 tommy Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/edje/ChangeLog,v 1.27 2015/03/17 01:58:29 vapier Exp $ + +*edje-1.7.10 (17 Mar 2015) +*edje-9999 (17 Mar 2015) + + 17 Mar 2015; Mike Frysinger <vapier@gentoo.org> +edje-1.7.10.ebuild, + +edje-9999.ebuild: + Version bump. Import live git ebuild from overlay. *edje-1.7.9 (12 Nov 2013) diff --git a/media-libs/edje/edje-1.7.10.ebuild b/media-libs/edje/edje-1.7.10.ebuild new file mode 100644 index 000000000000..1873632e03f9 --- /dev/null +++ b/media-libs/edje/edje-1.7.10.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/edje/edje-1.7.10.ebuild,v 1.1 2015/03/17 01:58:29 vapier Exp $ + +EAPI="5" + +if [[ ${PV} == "9999" ]] ; then + EGIT_SUB_PROJECT="legacy" + EGIT_URI_APPEND=${PN} + EGIT_BRANCH=${PN}-1.7 +else + SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2" + EKEY_STATE="snap" +fi + +inherit enlightenment + +DESCRIPTION="graphical layout and animation library" +HOMEPAGE="http://www.enlightenment.org/pages/edje.html" + +LICENSE="BSD-2 GPL-2" +IUSE="debug +cache static-libs vim-syntax" + +DEPEND="dev-lang/lua + >=dev-libs/eet-${PV} + >=dev-libs/eina-${PV} + >=dev-libs/embryo-${PV} + >=media-libs/evas-${PV} + >=dev-libs/ecore-${PV}" +RDEPEND=${DEPEND} + +src_configure() { + E_ECONF=( + $(use_enable cache edje-program-cache) + $(use_enable cache edje-calc-cache) + $(use_enable !debug amalgamation) + $(use_enable doc) + $(use_with vim-syntax vim /usr/share/vim) + ) + enlightenment_src_configure +} + +src_install() { + if use vim-syntax ; then + insinto /usr/share/vim/vimfiles/syntax + doins data/edc.vim + fi + dodoc utils/{gimp-edje-export.py,inkscape2edc} + enlightenment_src_install +} diff --git a/media-libs/edje/edje-9999.ebuild b/media-libs/edje/edje-9999.ebuild new file mode 100644 index 000000000000..260a7e56f4b7 --- /dev/null +++ b/media-libs/edje/edje-9999.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/edje/edje-9999.ebuild,v 1.8 2015/03/17 01:58:29 vapier Exp $ + +EAPI="5" + +if [[ ${PV} == "9999" ]] ; then + EGIT_SUB_PROJECT="legacy" + EGIT_URI_APPEND=${PN} + EGIT_BRANCH=${PN}-1.7 +else + SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2" + EKEY_STATE="snap" +fi + +inherit enlightenment + +DESCRIPTION="graphical layout and animation library" +HOMEPAGE="http://www.enlightenment.org/pages/edje.html" + +LICENSE="BSD-2 GPL-2" +IUSE="debug +cache static-libs vim-syntax" + +DEPEND="dev-lang/lua + >=dev-libs/eet-${PV} + >=dev-libs/eina-${PV} + >=dev-libs/embryo-${PV} + >=media-libs/evas-${PV} + >=dev-libs/ecore-${PV}" +RDEPEND=${DEPEND} + +src_configure() { + E_ECONF=( + $(use_enable cache edje-program-cache) + $(use_enable cache edje-calc-cache) + $(use_enable !debug amalgamation) + $(use_enable doc) + $(use_with vim-syntax vim /usr/share/vim) + ) + enlightenment_src_configure +} + +src_install() { + if use vim-syntax ; then + insinto /usr/share/vim/vimfiles/syntax + doins data/edc.vim + fi + dodoc utils/{gimp-edje-export.py,inkscape2edc} + enlightenment_src_install +} |