blob: 4f6173afae7b9084ed15523ee0b755a6fe75ad84 (
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
|
# 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"
}
|