blob: f4a47ab3d464dea0692d35efd2266aedf614bf16 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-libs/libgd/libgd-1.8.3-r1.ebuild,v 1.3 2000/09/15 20:09:02 drobbins Exp $
P=libgd-1.8.3
A=gd-1.8.3.tar.gz
S=${WORKDIR}/gd-1.8.3
DESCRIPTION="A graphics library for fast image creation"
SRC_URI="http://www.boutell.com/gd/http/"${A}
HOMEPAGE="http://www.boutell.com/gd/"
src_unpack() {
unpack ${A}
cd ${S}
cp Makefile Makefile.orig
sed -e "s/^CFLAGS=.*/CFLAGS=$CFLAGS -DHAVE_XPM -DHAVE_JPEG -DHAVE_LIBTTF -DHAVE_PNG /" \
-e "s/^LIBS=.*/LIBS=-lm -lgd -lpng -lz -ljpeg -lttf -lXpm -lX11/" \
-e "s/^INCLUDEDIRS=/INCLUDEDIRS=-I\/usr\/include\/freetype /" \
Makefile.orig > Makefile
}
src_compile() {
cd ${S}
try make
}
src_install() {
cd ${S}
dodir /usr/bin
dodir /usr/lib
dodir /usr/include
try make INSTALL_LIB=${D}/usr/lib INSTALL_BIN=${D}/usr/bin \
INSTALL_INCLUDE=${D}/usr/include install
dodoc readme.txt
docinto html
dodoc index.html
}
|