diff options
author | Thomas Sachau <tommy@gentoo.org> | 2011-01-30 14:48:11 +0000 |
---|---|---|
committer | Thomas Sachau <tommy@gentoo.org> | 2011-01-30 14:48:11 +0000 |
commit | a749a4204da79ac4da9ce15b33fd83fedc842a95 (patch) | |
tree | bb00acc8f6362f60543e74411be1401ff3768b1b /media-libs/edje/edje-1.0.0.ebuild | |
parent | Version bump, drop old (diff) | |
download | historical-a749a4204da79ac4da9ce15b33fd83fedc842a95.tar.gz historical-a749a4204da79ac4da9ce15b33fd83fedc842a95.tar.bz2 historical-a749a4204da79ac4da9ce15b33fd83fedc842a95.zip |
Version bump, drop old
Package-Manager: portage-2.2.0_alpha19-r1/cvs/Linux x86_64
Diffstat (limited to 'media-libs/edje/edje-1.0.0.ebuild')
-rw-r--r-- | media-libs/edje/edje-1.0.0.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/media-libs/edje/edje-1.0.0.ebuild b/media-libs/edje/edje-1.0.0.ebuild new file mode 100644 index 000000000000..ddc3d17ff177 --- /dev/null +++ b/media-libs/edje/edje-1.0.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/edje/edje-1.0.0.ebuild,v 1.1 2011/01/30 14:48:11 tommy Exp $ + +inherit enlightenment + +DESCRIPTION="graphical layout and animation library" +HOMEPAGE="http://www.enlightenment.org/pages/edje.html" +SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2" + +KEYWORDS="~amd64 ~x86" +IUSE="debug cache static-libs vim-syntax" + +DEPEND="dev-lang/lua + >=dev-libs/eet-1.0.0_beta + >=dev-libs/eina-1.0.0_beta + >=dev-libs/embryo-1.0.0_beta + >=media-libs/evas-1.0.0_beta + >=dev-libs/ecore-1.0.0_beta" +RDEPEND=${DEPEND} + +src_compile() { + export MY_ECONF=" + $(use_enable cache edje-program-cache) + $(use_enable cache edje-calc-cache) + $(use_enable !debug amalgamation) + $(use_with vim-syntax vim /usr/share/vim) + " + enlightenment_src_compile +} + +src_install() { + if use vim-syntax ; then + insinto /usr/share/vim/vimfiles/syntax/ + doins data/edc.vim || die + fi + dodoc utils/{gimp-edje-export.py,inkscape2edc} || die + enlightenment_src_install +} |