diff options
author | jhb <jhb@FreeBSD.org> | 2005-10-19 00:50:20 +0800 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2005-10-19 00:50:20 +0800 |
commit | a8bb4f14c7e6abaf3d0b68914d799d2a4f858161 (patch) | |
tree | 101a7693835b8cf79499f330a5e49325e87cc1af | |
parent | 1fd55b2ba6afdf13ef916dfc2cc5d168776be840 (diff) | |
download | freebsd-ports-gnome-a8bb4f14c7e6abaf3d0b68914d799d2a4f858161.tar.gz freebsd-ports-gnome-a8bb4f14c7e6abaf3d0b68914d799d2a4f858161.tar.zst freebsd-ports-gnome-a8bb4f14c7e6abaf3d0b68914d799d2a4f858161.zip |
- Update to the latest version (0.3.0).
- Update MASTER_SITES since it has moved.
Reviewed by: petef
-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 |