summaryrefslogtreecommitdiff
path: root/net/gnu-radius
diff options
context:
space:
mode:
authorClement Laforet <clement@FreeBSD.org>2004-01-08 11:09:21 +0000
committerClement Laforet <clement@FreeBSD.org>2004-01-08 11:09:21 +0000
commitf326b15cd2528e946aa66c652c365b322997ebf2 (patch)
tree096c9469b73e2e5f697319e9598a1fe4c340236f /net/gnu-radius
parent- Fix build on 5.x (diff)
- Update to 1.2
While I'm here: - use USE_MYSQL - switch postgresql7 dependency to postgresql-client Note to -CURRENT users: All options which depend on guile are broken. PR: 60496 Submitted by: Andrey Pavlenko <lance@merlin.net.ua> (maintainer) Approved by: erwin (mentor) (implicitly)
Notes
Notes: svn path=/head/; revision=97669
Diffstat (limited to 'net/gnu-radius')
-rw-r--r--net/gnu-radius/Makefile2
-rw-r--r--net/gnu-radius/distinfo2
-rw-r--r--net/gnu-radius/scripts/configure6
3 files changed, 5 insertions, 5 deletions
diff --git a/net/gnu-radius/Makefile b/net/gnu-radius/Makefile
index ef994b9b884c..9309056dbb5f 100644
--- a/net/gnu-radius/Makefile
+++ b/net/gnu-radius/Makefile
@@ -5,7 +5,7 @@
# $FreeBSD$
PORTNAME= gnu-radius
-PORTVERSION= 1.1
+PORTVERSION= 1.2
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= radius
diff --git a/net/gnu-radius/distinfo b/net/gnu-radius/distinfo
index 9f0c1b90579f..27539b40091b 100644
--- a/net/gnu-radius/distinfo
+++ b/net/gnu-radius/distinfo
@@ -1 +1 @@
-MD5 (radius-1.1.tar.gz) = 78ac1582afaee5ca438841eb28c1e7ce
+MD5 (radius-1.2.tar.gz) = 41efba1332ff563e1f88f2aba04d9d24
diff --git a/net/gnu-radius/scripts/configure b/net/gnu-radius/scripts/configure
index 3051a69ae626..e9339a80cb53 100644
--- a/net/gnu-radius/scripts/configure
+++ b/net/gnu-radius/scripts/configure
@@ -54,13 +54,13 @@ while [ "$1" ]; do
echo "CONFIGURE_ARGS+= --enable-dbm=ndbm"
;;
\"MySQL\")
- echo "LIB_DEPENDS+= mysqlclient.10:\${PORTSDIR}/databases/mysql323-client:install"
+ echo "USE_MYSQL= YES"
echo "CONFIGURE_ARGS+= --with-mysql"
LIB_PATH="$LIB_PATH:${LOCALBASE}/lib/mysql/"
;;
\"PostgreSQL\")
- echo "POSTGRESQL_PORT?= databases/postgresql7"
- echo "LIB_DEPENDS+= pq.3:\${PORTSDIR}/\${POSTGRESQL_PORT}:install"
+ echo "POSTGRESQL_PORT?= databases/postgresql-client"
+ echo "LIB_DEPENDS+= pq.3:\${PORTSDIR}/\${POSTGRESQL_PORT}"
echo "CONFIGURE_ARGS+= --with-postgres"
INCLUDE_PATH="$INCLUDE_PATH:${LOCALBASE}/include/pgsql/"
;;