You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/devil/devil-1.7.8.ebuild

73 lines
1.8 KiB

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/devil/devil-1.7.8.ebuild,v 1.9 2011/03/26 17:23:26 ssuominen Exp $
EAPI=2
inherit eutils
MY_P=DevIL-${PV}
DESCRIPTION="DevIL image library"
HOMEPAGE="http://openil.sourceforge.net/"
SRC_URI="mirror://sourceforge/openil/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="openexr gif jpeg lcms mng png tiff xpm allegro opengl sdl static-libs X"
RDEPEND="gif? ( media-libs/giflib )
openexr? ( media-libs/openexr )
jpeg? ( virtual/jpeg )
lcms? ( =media-libs/lcms-1* )
mng? ( media-libs/libmng )
png? ( media-libs/libpng )
tiff? ( media-libs/tiff )
xpm? ( x11-libs/libXpm )
allegro? ( <media-libs/allegro-5 )
opengl? ( virtual/opengl )
sdl? ( media-libs/libsdl )
X? ( x11-libs/libXext
x11-libs/libX11
x11-libs/libXrender )"
DEPEND="${RDEPEND}
X? ( x11-proto/xextproto )"
src_prepare() {
epatch "${FILESDIR}"/${P}-{CVE-2009-3994,libpng14}.patch
}
src_configure() {
econf \
--disable-dependency-tracking \
--enable-ILU \
--enable-ILUT \
$(use_enable gif) \
$(use_enable jpeg) \
$(use_enable lcms) \
$(use_enable mng) \
$(use_enable openexr exr) \
$(use_enable png) \
$(use_enable tiff) \
$(use_enable xpm) \
$(use_enable allegro) \
$(use_enable opengl) \
$(use_enable sdl) \
$(use_with X x) \
$(use_enable X x11) \
$(use_enable X shm) \
$(use_enable X render) \
$(use_enable static-libs static) \
--disable-directx8 \
--disable-directx9
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS CREDITS ChangeLog NEWS README* TODO || die
if ! use static-libs ; then
find "${D}" -type f -name '*.la' -exec rm {} + \
|| die "la removal failed"
fi
}