blob: 5dc45ff129f495755bcf854b95c5221b6a95d760 [file] [log] [blame]
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/giflib/giflib-4.1.6-r1.ebuild,v 1.7 2008/12/07 11:49:54 vapier Exp $
inherit eutils libtool
DESCRIPTION="Library to handle, display and manipulate GIF images"
HOMEPAGE="http://sourceforge.net/projects/giflib/"
SRC_URI="mirror://sourceforge/giflib/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="*"
IUSE="rle X"
DEPEND="!media-libs/libungif
X? (
x11-libs/libXt
x11-libs/libX11
x11-libs/libICE
x11-libs/libSM
)
rle? ( media-libs/urt )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gif2rle.patch
epatch "${FILESDIR}"/${P}-giffix-null-Extension-fix.patch
elibtoolize
epunt_cxx
}
src_compile() {
local myconf="--disable-gl $(use_enable X x11)"
# prevent circular depend #111455
if has_version media-libs/urt ; then
myconf="${myconf} $(use_enable rle)"
else
myconf="${myconf} --disable-rle"
fi
econf ${myconf}
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS BUGS ChangeLog NEWS ONEWS README TODO doc/*.txt
dohtml -r doc
}