blob: a8a0fb237f57ba1a35792f5e59f97588c595a728 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
## Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Updated by AJ Lewis <aj@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-libs/giflib/giflib-4.1.0-r3.ebuild,v 1.5 2002/07/11 06:30:38 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="giflib"
SRC_URI="ftp://metalab.unc.edu/pub/Linux/libs/giflib/${P}.tar.gz
ftp://prtr-13.ucsc.edu/pub/libungif/${P}.tar.gz"
HOMEPAGE="http://prtr-13.ucsc.edu/~badger/software/libungif/index.shtml"
DEPEND="X? ( virtual/x11 )"
src_compile() {
local myconf
use X \
&& myconf="--with-x" \
|| myconf="--without-x"
./configure \
--host=${CHOST} \
--prefix=/usr \
${myconf} || die
emake || die
}
src_install() {
make \
prefix=${D}/usr \
install || die
# if gif is not in USE, then ungif is preferred
use gif || rm -rf ${D}/usr/bin
dodoc AUTHORS BUGS COPYING ChangeLog INSTALL NEWS ONEWS
dodoc PATENT_PROBLEMS README TODO
dodoc doc/*.txt
dohtml -r doc
}
pkg_postinst() {
use gif 2>/dev/null && (
einfo "You had the gif USE flag set, so the binary from this library"
einfo "is your gif binary. If you would prefer to use the binary from"
einfo "the ungif library, please unset the gif USE toggle, and remerge"
einfo "both this and libungif"
) || (
einfo "You did not have the gif USE toggle set, so the binary from"
einfo "the libungif package is assumed to be your gif binary. Please"
einfo "make sure that you have libungif emerged."
)
}
|