blob: 608bd520e5abb48902e475051cb328b9cd9580b0 (
plain)
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
E_SNAP_DATE="2009-12-02"
inherit enlightenment
DESCRIPTION="graphical layout and animation library"
HOMEPAGE="http://www.enlightenment.org/pages/edje.html"
IUSE="vim-syntax"
RDEPEND="=x11-libs/evas-0.9.9.063
=x11-libs/ecore-0.9.9.063
>=dev-libs/eet-1.1.0
=dev-libs/embryo-0.9.9.063
dev-lang/lua"
DEPEND=">=dev-util/pkgconfig-0.9.0"
src_unpack() {
enlightenment_src_unpack
cd "${S}"
}
MY_ECONF="$(use_with vim-syntax vim /usr/share/vim)"
src_install() {
if use vim-syntax ; then
insinto /usr/share/vim/vimfiles/syntax/
doins data/edc.vim edc.vim
fi
enlightenment_src_install
}
|