summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElisamuel Resto2007-10-30 18:59:34 -0400
committerElisamuel Resto2007-10-30 18:59:34 -0400
commit38b3058a620031938766b66ce29c8342a6fb2ba8 (patch)
treead17735079de92325354292f095bac1ccbd09260
parent48eea2a2f4d75c86dd23b72fdaa26f2f10216de5 (diff)
mail/alpine: new spell, lightweight terminal mail reader like pine
-rw-r--r--ChangeLog3
-rwxr-xr-xmail/alpine/BUILD13
-rwxr-xr-xmail/alpine/CONFIGURE8
-rwxr-xr-xmail/alpine/DEPENDS14
-rwxr-xr-xmail/alpine/DETAILS29
-rw-r--r--mail/alpine/HISTORY2
6 files changed, 69 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9bdc4e3bf3..22bfecbd09 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2007-10-30 Elisamuel Resto <ryuji@mages.ath.cx>
+ * mail/alpine: new spell, lightweight terminal mail reader like pine
+
2007-10-30 Treeve Jelbert <treeve@sourcemage.org>
* kde4/kdebase4-runtime: new spell
diff --git a/mail/alpine/BUILD b/mail/alpine/BUILD
new file mode 100755
index 0000000000..9447ed2231
--- /dev/null
+++ b/mail/alpine/BUILD
@@ -0,0 +1,13 @@
+if echo $OPTS | grep -q with-ssl; then
+ message "${MESSAGE_COLOR}Building with OpenSSL...${DEFAULT_COLOR}" &&
+ ALPINE_OPTS="${ALPINE_OPTS} \
+ --with-ssl-dir=$INSTALL_ROOT/usr \
+ --with-ssl-certs-dir=$INSTALL_ROOT/etc/ssl/certs \
+ --with-ssl-include-dir=$INSTALL_ROOT/usr/include/openssl \
+ --with-ssl-lib-dir=$INSTALL_ROOT/usr/lib"
+else
+ message "${MESSAGE_COLOR}Building without OpenSSL...${DEFAULT_COLOR}"
+fi &&
+
+OPTS="${OPTS} --with-system-pinerc=/etc/pinerc --with-c-client-target=slx ${ALPINE_OPTS}" &&
+default_build
diff --git a/mail/alpine/CONFIGURE b/mail/alpine/CONFIGURE
new file mode 100755
index 0000000000..373c2277c6
--- /dev/null
+++ b/mail/alpine/CONFIGURE
@@ -0,0 +1,8 @@
+config_query_option ALPINE_OPTS "Do you want NLS support?" y \
+ "--enable-nls" "--disable-nls" &&
+
+config_query_option ALPINE_OPTS "Do you want IPv6 support?" n \
+ "--with-ipv6" "--without-ipv6" &&
+
+config_query_option ALPINE_OPTS "Do you want iconv support?" n \
+ "--with-libiconv-prefix" "--without-libiconv-prefix"
diff --git a/mail/alpine/DEPENDS b/mail/alpine/DEPENDS
new file mode 100755
index 0000000000..7c15b663c8
--- /dev/null
+++ b/mail/alpine/DEPENDS
@@ -0,0 +1,14 @@
+depends MAIL-TRANSPORT-AGENT &&
+
+optional_depends openssl '--with-ssl-dir' '--without-ssl' \
+ 'for SSL/TLS support' &&
+
+# it doesn't detect TCL as much as i have tried
+#optional_depends tcl '--with-tcl-lib' '--without-tcl' \
+# 'for Web Alpine support' &&
+
+optional_depends openldap '--with-ldap-dir' '--without-ldap' \
+ 'for LDAP support' &&
+
+optional_depends krb5 '--with-krb5-dir' '--without-krb5' \
+ 'for Kerberos support'
diff --git a/mail/alpine/DETAILS b/mail/alpine/DETAILS
new file mode 100755
index 0000000000..bf71e462c9
--- /dev/null
+++ b/mail/alpine/DETAILS
@@ -0,0 +1,29 @@
+ SPELL=alpine
+ VERSION=0.9999
+ SOURCE_HASH=sha512:a04e4557d2b3481ab19aa24da0e2210a599ada8f54a1725695e6e4aaee50b98132705d96a94177514957f2c1353fc512bc0ad555d60434bb44de96590ca6b108
+ SOURCE=${SPELL}-${VERSION}.tar.bz2
+SOURCE_DIRECTORY=${BUILD_DIRECTORY}/${SPELL}-${VERSION}
+ SOURCE_URL[0]=ftp://ftp.cac.washington.edu/alpine/${SOURCE}
+ SOURCE_URL[1]=ftp://ftp.cac.washington.edu/alpine/old/${SOURCE}
+ WEB_SITE=http://www.washington.edu/alpine/
+ ENTERED=20071028
+ LICENSE[0]=APACHE
+ SHORT="Alpine consists of a UNIX command-line program, a PC version, and a Web version."
+cat << EOF
+In late 2005, Computing & Communications at the University of Washington
+began a project to create a new family of email tools built upon the Pine
+Message System. This family of tools is called Alpine. Alpine consists of
+a UNIX command-line program, a PC version, and a Web version.
+
+Why Alpine? The Pine Team wanted to reorganize the very mature Pine source
+code, distribute the Web version that has been very popular here at the
+Univerity of Washington, and relax our trademark obligation for source
+code quality control to a world-wide customer base.
+
+The trademark obligation represents an ongoing administrative effort.
+Coincidentally, the UW is standardizing its license for the several other
+products we offer to the Apache License, Version 2.0.
+
+The cleanest way to do all this was to stop developing Pine (a registered
+trademark) and start a new product - thus Alpine was born.
+EOF
diff --git a/mail/alpine/HISTORY b/mail/alpine/HISTORY
new file mode 100644
index 0000000000..147ac10495
--- /dev/null
+++ b/mail/alpine/HISTORY
@@ -0,0 +1,2 @@
+2007-10-30 Elisamuel Resto <ryuji@mages.ath.cx>
+ * BUILD, CONFIGURE, DEPENDS, DETAILS: spell created from current c-client spell.