Ticket #3398: Portfile

File Portfile, 1.1 KB (added by yves@…, 19 years ago)

Portfile

Line 
1# $Id: Portfile,v 1.5 2004/06/03 21:30:06 mij Exp $
2
3PortSystem 1.0
4name            fltk
5version         1.1.6
6categories      x11
7maintainers     yves@gnu-darwin.org
8description     Fast Light Tool Kit
9homepage        http://www.fltk.org/
10platforms       darwin
11
12long_description FLTK (pronounced fulltick)                                                     \
13                is a cross-platform C++ GUI toolkit for UNIX/Linux (X11),                       \
14                Microsoft Windows, and MacOS X.                                                 \
15                FLTK provides modern GUI functionality without the bloat                        \
16                and supports 3D graphics via OpenGL and its built-in GLUT emulation.            \
17                                                                                                \
18                FLTK is designed to be small and modular enough to be statically linked,        \
19                but works fine as a shared library.                                             \
20                FLTK also includes an excellent UI builder called FLUID                         \
21                that can be used to create applications in minutes.
22
23master_sites    sourceforge
24
25use_bzip2       yes
26distfiles       ${name}-${version}-source${extract.suffix}
27checksums       md5 95d340977d13edea12e98d787a668b32
28
29depends_lib     lib:libX11.6:XFree86 port:jpeg port:libpng port:zlib
30
31configure.env   LDFLAGS="-L${prefix}/lib" CFLAGS="-I${prefix}/include" \
32                CPPFLAGS="-I${prefix}/include"
33
34configure.args  --mandir=${prefix}/share/man
35