# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/giflib/giflib-4.1.3-r1.ebuild,v 1.3 2005/07/23 08:14:49 vapier Exp $ inherit eutils DESCRIPTION="Library to handle, display and manipulate GIF images" HOMEPAGE="http://sourceforge.net/projects/libungif/" SRC_URI="mirror://sourceforge/libungif/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sparc ~x86" IUSE="X" DEPEND="X? ( virtual/x11 ) !media-libs/libungif" src_unpack() { unpack ${A} epunt_cxx } src_compile() { econf $(use_with X x) || die emake || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS BUGS ChangeLog NEWS ONEWS PATENT_PROBLEMS \ README TODO doc/*.txt || die "dodoc failed" dohtml -r doc || die "dohtml failed" }