summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuentin Rameau2009-08-30 23:10:31 +0200
committerQuentin Rameau2009-08-30 23:10:31 +0200
commit0fbc70ac878e43b18d3ea8e69188841e7af4f4f4 (patch)
treefd8488f2274e0cb44af07a8af3909f5a9ea0348c
parent68b2debf7adce4a6721736a0861b1db3c59acfb0 (diff)
net/netembryo: urls updated, added optional support for SSL
-rwxr-xr-xnet/netembryo/BUILD2
-rwxr-xr-xnet/netembryo/CONFIGURE2
-rwxr-xr-xnet/netembryo/DEPENDS9
-rwxr-xr-xnet/netembryo/DETAILS7
-rw-r--r--net/netembryo/HISTORY6
5 files changed, 19 insertions, 7 deletions
diff --git a/net/netembryo/BUILD b/net/netembryo/BUILD
index 8095e138b8..7db3dcdd32 100755
--- a/net/netembryo/BUILD
+++ b/net/netembryo/BUILD
@@ -1,2 +1,2 @@
-OPTS="$OPTS $LKSCTP_IPV6"
+OPTS="$OPTS $NETEMBRYO_IPV6"
default_build
diff --git a/net/netembryo/CONFIGURE b/net/netembryo/CONFIGURE
index 62d046d76c..439701b114 100755
--- a/net/netembryo/CONFIGURE
+++ b/net/netembryo/CONFIGURE
@@ -1,4 +1,4 @@
-config_query_option LKSCTP_IPV6 \
+config_query_option NETEMBRYO_IPV6 \
'Enable IPv6 support' \
y \
"--enable-ipv6" \
diff --git a/net/netembryo/DEPENDS b/net/netembryo/DEPENDS
index 358ee04051..374ed2beb8 100755
--- a/net/netembryo/DEPENDS
+++ b/net/netembryo/DEPENDS
@@ -1 +1,8 @@
-optional_depends lksctp-tools "--enable-sctp" "--disable-sctp" "For SCTP support"
+optional_depends lksctp-tools \
+ "--enable-sctp" \
+ "--disable-sctp" \
+ "For SCTP support" &&
+optional_depends openssl \
+ "--with-openssl" \
+ "--without-openssl" \
+ "Enable SSL support through OpenSSL"
diff --git a/net/netembryo/DETAILS b/net/netembryo/DETAILS
index b3ffaeed8d..892a69f48a 100755
--- a/net/netembryo/DETAILS
+++ b/net/netembryo/DETAILS
@@ -2,14 +2,13 @@
VERSION=0.0.9
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
- SOURCE_URL[0]=http://live.polito.it/files/downloads/$SPELL/$SOURCE
- SOURCE_HASH=sha512:8dd9d8d2d8cb8ae74c25b10fa7cd0b7f5e6b9efc4853685cde821c8cfad77707845ec9bb8ecc86585423102b352ddca071997201363464e863c0e616149264dd
- WEB_SITE=http://live.polito.it/
+ SOURCE_URL[0]=http://lscube.org/files/downloads/$SPELL/$SOURCE
+ SOURCE_HASH=sha512:8dd9d8d2d8cb8ae74c25b10fa7cd0b7f5e6b9efc4853685cde821c8cfad77707845ec9bb8ecc86585423102b352ddca071997201363464e863c0e616149264dd
+ WEB_SITE=http://lscube.org/projects/netembryo
LICENSE[0]=LGPL
ENTERED=20081114
KEYWORDS="network"
SHORT="network abstraction library"
-
cat << EOF
Netembryo is a network abstraction library.
It provides an uniform access to the following protocols:
diff --git a/net/netembryo/HISTORY b/net/netembryo/HISTORY
index 9503a9ac43..99d0f37e10 100644
--- a/net/netembryo/HISTORY
+++ b/net/netembryo/HISTORY
@@ -1,5 +1,11 @@
+2009-08-30 Quentin Rameau <quinq@sourcemage.org>
+ * DETAILS: urls updated
+ * CONFIGURE, BUILD: modified config variable name
+ * DEPENDS: added optional support for SSL
+
2009-06-08 Ladislav Hagara <hgr@vabo.cz>
* DETAILS: 0.0.9
2008-11-14 Arjan Bouter <abouter@sourcemage.org>
* CONFIGURE,DETAILS,DEPENDS,HISTORY: created spell
+