41 lines
1,006 B
Bash
41 lines
1,006 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
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
|
|
bzip2? ( >=app-arch/bzip2-1.0.2 )
|
|
jpeg? ( virtual/jpeg:= )
|
|
opengl? ( virtual/glu virtual/opengl )
|
|
png? ( >=media-libs/libpng-1.2.5:0= )
|
|
tiff? ( >=media-libs/tiff-3.5.7:0= )
|
|
truetype? ( =media-libs/freetype-2*
|
|
x11-libs/libXft )
|
|
zlib? ( >=sys-libs/zlib-1.1.4 )"
|
|
DEPEND="${RDEPEND}
|
|
x11-proto/xextproto
|
|
x11-libs/libXt"
|
|
|
|
src_prepare() {
|
|
sed -i -e 's/-lXft/-lXft -lfontconfig/' "${S}/configure.ac"
|
|
fox_src_prepare
|
|
}
|
|
|
|
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
|
|
}
|