1 | # $Id: Portfile,v 1.11 2005/06/11 02:40:08 toby Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name aterm |
---|
5 | version 1.0.0 |
---|
6 | categories x11 |
---|
7 | maintainers yves@opendarwin.org |
---|
8 | description Color vt102 terminal emu w/transparency support |
---|
9 | long_description \ |
---|
10 | aterm is a color vt102 terminal emulator, based on rxvt 2.4.8 with \ |
---|
11 | additions for fast transparency. \ |
---|
12 | \ |
---|
13 | It was created with AfterStep users in mind, but is not tied to any \ |
---|
14 | libraries, and can be used anywhere. |
---|
15 | homepage http://aterm.sourceforge.net/ |
---|
16 | platforms darwin |
---|
17 | master_sites sourceforge |
---|
18 | use_bzip2 yes |
---|
19 | checksums md5 ceb64c62ae243a7fc3ddb0d6f9a19faa |
---|
20 | depends_lib lib:libX11.6:XFree86 lib:libXpm.4:xpm \ |
---|
21 | port:freetype port:jpeg port:libpng |
---|
22 | |
---|
23 | configure.env LDFLAGS="-L${prefix}/lib" \ |
---|
24 | CPPFLAGS="-I${prefix}/include" |
---|
25 | configure.args --enable-background-image --disable-backspace-key \ |
---|
26 | --disable-delete-key --enable-fading \ |
---|
27 | --enable-graphics --enable-half-shadow \ |
---|
28 | --enable-menubar --enable-transparency \ |
---|
29 | --enable-utmp --enable-wtmp |
---|
30 | |
---|
31 | variant afterstep { |
---|
32 | depends_lib-append port:AfterStep |
---|
33 | pre-build { |
---|
34 | system "ranlib ${prefix}/lib/libAfterImage.a && |
---|
35 | ranlib ${prefix}/lib/libAfterStep.a && |
---|
36 | ranlib ${prefix}/lib/libAfterBase.a" |
---|
37 | } |
---|
38 | } |
---|
39 | |
---|
40 | variant international { |
---|
41 | configure.args-append --enable-big5 --enable-greek \ |
---|
42 | --enable-kanji |
---|
43 | } |
---|
44 | |
---|
45 | platform darwin 8 { |
---|
46 | configure.args-delete --enable-utmp |
---|
47 | } |
---|