Ticket #410: Portfile

File Portfile, 1.7 KB (added by jpm@…, 21 years ago)

darwin variant Portfile

Line 
1# $Id: Portfile,v 1.7 2003/04/05 04:27:43 jpm Exp $
2
3PortSystem 1.0
4name            aterm
5version         0.4.2
6revision        0
7categories      x11
8maintainers     jpm@opendarwin.org
9description     Color vt102 terminal emu w/transparency support
10long_description        \
11        aterm is a color vt102 terminal emulator, based on rxvt 2.4.8 with \
12        additions for fast transparency. \
13        \
14        It was created with AfterStep users in mind, but is not tied to any \
15        libraries, and can be used anywhere.
16homepage        http://aterm.sourceforge.net/
17platforms       darwin
18master_sites    \
19        http://unc.dl.sourceforge.net/sourceforge/${name}/ \
20        http://telia.dl.sourceforge.net/sourceforge/${name}/ \
21        http://easynews.dl.sourceforge.net/sourceforge/${name}/ \
22        http://umn.dl.sourceforge.net/sourceforge/${name}/ \
23        http://twtelecom.dl.sourceforge.net/sourceforge/${name}/ \
24        http://belnet.dl.sourceforge.net/sourceforge/${name}/ \
25        http://switch.dl.sourceforge.net/sourceforge/${name}/ \
26        http://cesnet.dl.sourceforge.net/sourceforge/${name}/
27checksums       md5 d046fcf7fadd661dd5efb393a43c57b1
28depends_lib     \
29        lib:libX11.6:XFree86 lib:libfreetype.6:freetype \
30        lib:libjpeg.62:jpeg lib:libpng.3:libpng lib:libxpm.4:xpm
31configure.env   \
32        LDFLAGS="-L${prefix}/lib" \
33        CPPFLAGS="-I${prefix}/include"
34configure.args  \
35        --enable-transparency --enable-background-image \
36        --disable-delete-key --disable-backspace-key \
37        --enable-fading --enable-utmp --enable-wtmp --with-x \
38        --with-xpm --with-xpm-includes="${x11prefix}/include" \
39        --with-xpm-library="${x11prefix}/lib" \
40        --with-jpeg-includes="${prefix}/include" \
41        --with-jpeg-library="${prefix}/lib" \
42        --with-png-includes="${prefix}/include" \
43        --with-png-library="${prefix}/lib"
44
45variant menubar {
46        configure.args-append   --enable-menubar
47}
48variant nextscroll {
49        configure.args-append   --enable-next-scroll
50}