blob: 89781911dc47a6d13464a86cf677d48fba24e5cb (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
# SVN_SUBDIR needs to be before we inherit eclass
SVN_SUBDIR=/TMP/st
inherit enlightenment
DESCRIPTION="Toolkit based on the EFL"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
RDEPEND="=x11-libs/e_dbus-${PVR}
=dev-libs/eet-${PVR}
=x11-libs/ecore-${PVR}
=media-libs/edje-${PVR}"
DEPEND="media-libs/edje"
src_compile() {
local myconf
myconf="${myconf} \
--with-edje-cc=/usr/bin/edje_cc"
econf $myconf || die "econf failed"
emake || die "emake failed"
}
|