forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
edje-1.7.9.ebuild
43 lines (36 loc) · 1023 Bytes
/
edje-1.7.9.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=3
inherit enlightenment
DESCRIPTION="graphical layout and animation library"
HOMEPAGE="https://www.enlightenment.org/pages/edje.html"
SRC_URI="https://download.enlightenment.org/releases/${P}.tar.bz2"
LICENSE="BSD-2 GPL-2"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="debug +cache static-libs vim-syntax"
DEPEND="dev-lang/lua
>=dev-libs/eet-1.7.9
>=dev-libs/eina-1.7.9
>=dev-libs/embryo-1.7.9
>=media-libs/evas-1.7.9
>=dev-libs/ecore-1.7.9"
RDEPEND=${DEPEND}
src_configure() {
MY_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 || die
fi
dodoc utils/{gimp-edje-export.py,inkscape2edc} || die
enlightenment_src_install
}