blob: 288d32174b56d181f31b7e13e4c4dc7da078b24d (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit enlightenment_svn
DESCRIPTION="The Enlightenment edje library."
HOMEPAGE="http://enlightenment.org"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~arm ~x86 ~amd64"
IUSE=""
RDEPEND="=x11-libs/evas-${PVR}
=x11-libs/ecore-${PVR}
=dev-libs/eet-${PVR}
=dev-libs/embryo-${PVR}"
DEPEND=">=dev-util/pkgconfig-0.9.0"
src_unpack() {
subversion_src_unpack
cd "${S}"
# I hate hardcoded paths
epatch "${FILESDIR}/no_hardcoded_tmp.diff"
eautoreconf || die "eautoreconf failed"
}
|