|
Revision 4865, 1.1 kB
(checked in by mariuss, 2 years ago)
|
|
Updated licence path
|
| Line | |
|---|
| 1 | # 2.2.0 |
|---|
| 2 | # 20091101 |
|---|
| 3 | URL="ftp://ftp.cac.washington.edu/alpine/alpine.tar.gz" |
|---|
| 4 | HOMEURL="http://www.washington.edu/alpine/" |
|---|
| 5 | PORTURL="$PORTBASE/BSD/Applications/Internet/alpine/" |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | CONFIGUREARGS="--disable-dependency-tracking --disable-nls --without-krb5" |
|---|
| 9 | CONFIGUREENV="F77=$F95" |
|---|
| 10 | DOWNLOADRENAME="TRUE" |
|---|
| 11 | DOWNLOADRENAMESTR="$1$URLEXT $1-$2$URLEXT" |
|---|
| 12 | |
|---|
| 13 | foo=$4 |
|---|
| 14 | if [ $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 |
|---|
| 33 | else |
|---|
| 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 | |
|---|
| 47 | fi |
|---|