root/trunk/alpine/alpine.port

Revision 4865, 1.1 kB (checked in by mariuss, 2 years ago)

Updated licence path

Line 
1#       2.2.0
2#       20091101
3URL="ftp://ftp.cac.washington.edu/alpine/alpine.tar.gz"
4HOMEURL="http://www.washington.edu/alpine/"
5PORTURL="$PORTBASE/BSD/Applications/Internet/alpine/"
6
7
8CONFIGUREARGS="--disable-dependency-tracking --disable-nls --without-krb5"
9CONFIGUREENV="F77=$F95"
10DOWNLOADRENAME="TRUE"
11DOWNLOADRENAMESTR="$1$URLEXT $1-$2$URLEXT"
12
13foo=$4
14if [ $foo ]; then
15        if [ $foo == 'ssl' ]; then
16                case "$OS" in
17                        osx6)
18                                DEPS="aspell db g95 gawk gdbm gettext grep libiconv ncurses perl sed tcl texinfo"
19                                PATCH="TRUE"
20                                PATCHFILES="alpine-osx-10.6.patch"
21                                ;;
22                               
23                        *)
24                                CONFIGUREARGS="$CONFIGUREARGS SSLDIR=/usr/local/ssl"
25                                MAKEARGS="C_CLIENT_SPECIALS=SSLDIR=/usr/local/ssl"
26                                DEPS="aspell db expat g95 gawk gdbm gettext grep libiconv ncurses openssl perl sed tcl texinfo"
27                                ;;
28                               
29                esac
30
31                LICENSE="etc2/export.txt"
32        fi
33else
34        CONFIGUREARGS="$CONFIGUREARGS --without-ssl"
35       
36        case "$OS" in
37                osx6)
38                        DEPS="aspell db g95 gawk gdbm gettext grep libiconv ncurses perl sed tcl texinfo"
39                        ;;
40                       
41                *)
42                        DEPS="aspell db expat g95 gawk gdbm gettext grep libiconv ncurses perl sed tcl texinfo"
43                        ;;
44                       
45        esac
46
47fi
Note: See TracBrowser for help on using the browser.