blob: e8203e06934ca87c2b471b3addb2c81f1e8d5dd7 (
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
35
36
37
38
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/fox/fox-1.6.45.ebuild,v 1.1 2012/07/04 19:05:03 mabi Exp $
EAPI="4"
inherit eutils fox
LICENSE="LGPL-2.1"
SLOT="1.6"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="bzip2 jpeg opengl png tiff truetype zlib"
RDEPEND="x11-libs/libXrandr
x11-libs/libXcursor
x11-libs/fox-wrapper
media-libs/mesa
bzip2? ( >=app-arch/bzip2-1.0.2 )
jpeg? ( virtual/jpeg )
opengl? ( virtual/opengl )
png? ( >=media-libs/libpng-1.2.5 )
tiff? ( >=media-libs/tiff-3.5.7 )
truetype? ( =media-libs/freetype-2*
x11-libs/libXft )
zlib? ( >=sys-libs/zlib-1.1.4 )"
DEPEND="${RDEPEND}
x11-proto/xextproto
x11-libs/libXt"
src_configure() {
FOXCONF="$(use_enable bzip2 bz2lib) \
$(use_enable jpeg) \
$(use_with opengl) \
$(use_enable png) \
$(use_enable tiff) \
$(use_with truetype xft) \
$(use_enable zlib)" fox_src_configure
}
|