diff options
author | John Baldwin <jhb@FreeBSD.org> | 2005-10-18 16:50:20 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2005-10-18 16:50:20 +0000 |
commit | 03444cdbf77bb67bf01ef93b69b5e4d3849fa865 (patch) | |
tree | 3573acadac6af2314b60dd2c0ad88d972494343c /devel/libcapsinetwork | |
parent | 14bcdc8bf7e89526a1328a99708b11c3228f024a (diff) |
- Update to the latest version (0.3.0).
- Update MASTER_SITES since it has moved.
Reviewed by: petef
Notes
Notes:
svn path=/head/; revision=145771
Diffstat (limited to 'devel/libcapsinetwork')
-rw-r--r-- | devel/libcapsinetwork/Makefile | 4 | ||||
-rw-r--r-- | devel/libcapsinetwork/distinfo | 4 | ||||
-rw-r--r-- | devel/libcapsinetwork/files/patch-configure | 20 |
3 files changed, 24 insertions, 4 deletions
diff --git a/devel/libcapsinetwork/Makefile b/devel/libcapsinetwork/Makefile index 612d086705db..0a79e6506096 100644 --- a/devel/libcapsinetwork/Makefile +++ b/devel/libcapsinetwork/Makefile @@ -6,9 +6,9 @@ # PORTNAME= libcapsinetwork -PORTVERSION= 0.2.5 +PORTVERSION= 0.3.0 CATEGORIES= devel net -MASTER_SITES= http://unixcode.org/downloads/libcapsinetwork/ +MASTER_SITES= http://www.robertjohnkaper.com/downloads/atlantik/ MAINTAINER= petef@FreeBSD.org COMMENT= Network library aimed at easy development of C++ server daemons diff --git a/devel/libcapsinetwork/distinfo b/devel/libcapsinetwork/distinfo index 0c24e55fbe3e..b1a1530eda31 100644 --- a/devel/libcapsinetwork/distinfo +++ b/devel/libcapsinetwork/distinfo @@ -1,2 +1,2 @@ -MD5 (libcapsinetwork-0.2.5.tar.gz) = f5bad47a148ed9280699883b1e23a016 -SIZE (libcapsinetwork-0.2.5.tar.gz) = 195023 +MD5 (libcapsinetwork-0.3.0.tar.gz) = 9e6e221fdd1ec53c518b2ca61830e8cf +SIZE (libcapsinetwork-0.3.0.tar.gz) = 282682 diff --git a/devel/libcapsinetwork/files/patch-configure b/devel/libcapsinetwork/files/patch-configure new file mode 100644 index 000000000000..449e6050561f --- /dev/null +++ b/devel/libcapsinetwork/files/patch-configure @@ -0,0 +1,20 @@ +$FreeBSD$ + +--- configure.orig Thu Oct 13 14:31:41 2005 ++++ configure Thu Oct 13 14:32:39 2005 +@@ -157,9 +157,13 @@ + + + +-tagnames=`echo "$tagnames,CXX" | sed 's/^,//'` ++if ! echo "$tagnames" | grep -q CXX; then ++ tagnames=`echo "$tagnames,CXX" | sed 's/^,//'` ++fi + +-tagnames=`echo "$tagnames,F77" | sed 's/^,//'` ++if ! echo "$tagnames" | grep -q F77; then ++ tagnames=`echo "$tagnames,F77" | sed 's/^,//'` ++fi + + if expr a : '\(a\)' >/dev/null 2>&1; then + as_expr=expr |