Ticket #3228: Portfile

File Portfile, 1.2 KB (added by marius173@…, 19 years ago)

updated Portfile

Line 
1# $Id $
2
3PortSystem 1.0
4name            gd2
5version         2.0.33
6categories      graphics
7maintainers     michaelm@opendarwin.org
8description     GD creates PNG and JPEG images, among other formats
9long_description        gd is a graphics library. It allows your code to \
10                        quickly draw images complete with lines, arcs, text, \
11                        multiple colors, cut and paste from other images, and \
12                        flood fills, and write out the result as a .PNG file. \
13                        This is particularly useful in World Wide Web applications, \
14                        where .PNG is the format used for inline images. \
15                        gd is not a paint program. If you are looking for a paint \
16                        program, you are looking in the wrong place. \
17                        If you are not a programmer, you are looking in the wrong \
18                        place.
19homepage        http://www.boutell.com/gd/
20platforms       darwin
21
22master_sites    ${homepage}http/
23distname        gd-${version}
24checksums       md5 be0a6d326cd8567e736fbc75df0a5c45
25
26depends_lib     lib:libpng.3:libpng  \
27                lib:libjpeg.62:jpeg \
28                lib:XXXX:freetype \
29                lib:libX11.6:XFree86
30
31configure.env   CPPFLAGS=-I${prefix}/include LDFLAGS=-L${prefix}/lib
32
33platform darwin 6 {
34        depends_lib lib:libdl:dlcompat
35}