blob: a4ef6d93c6b44060069d5d9de46e09a98f158e6b (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
inherit enlightenment
DESCRIPTION="Enlightenment thumbnailing library (meant to replace epsilon)"
HOMEPAGE="http://trac.enlightenment.org/e/wiki/Ethumb"
SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2"
LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~x86"
IUSE="+dbus emotion static-libs"
DEPEND=">=dev-libs/eina-1.7.8
>=dev-libs/ecore-1.7.8
>=media-libs/edje-1.7.8
>=media-libs/evas-1.7.8
media-libs/libexif
dbus? ( >=dev-libs/e_dbus-1.7.8 )
emotion? ( >=media-libs/emotion-1.7.8 )"
RDEPEND="${DEPEND}"
src_configure() {
E_ECONF+=(
$(use_enable dbus ethumbd)
$(use_enable emotion)
--disable-epdf
)
enlightenment_src_configure
}
|