blob: bc23423055c414f67239f62a2ccbe116bb2081e5 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-libs/libungif/libungif-4.1.0-r1.ebuild,v 1.4 2002/07/11 06:30:39 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A library for reading and writing gif images without LZW compression"
SRC_URI="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
use gif && rm -rf ${D}/usr/bin
dodoc AUTHORS BUGS COPYING ChangeLog NEWS ONEWS
dodoc UNCOMPRESSED_GIF README TODO
dodoc doc/*.txt
dohtml -r doc
}
pkg_postinst() {
use gif 2>/dev/null && (
einfo "You had the gif USE flag set, so it is assumed that you want"
einfo "the binary from giflib instead. Please make sure you have"
einfo "giflib emerged. Otherwise, unset the gif flag and remerge this"
) || (
einfo "You did not have the gif USE flag, so your gif binary is being"
einfo "provided by this package. If you would rather use the binary"
einfo "from giflib, please set the gif USE flag, and re-emerge both"
einfo "this and giflib"
)
}
|