diff options
author | clement <clement@FreeBSD.org> | 2004-01-08 19:09:21 +0800 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2004-01-08 19:09:21 +0800 |
commit | 3f78e1fd26a9905279ea065e7cedc0f27780604c (patch) | |
tree | 212d8cc2ceecef5663cc616ff97f890fc08b157e /net | |
parent | b475a2869fb6b6df2069b976f7f85d2f532060bb (diff) | |
download | freebsd-ports-gnome-3f78e1fd26a9905279ea065e7cedc0f27780604c.tar.gz freebsd-ports-gnome-3f78e1fd26a9905279ea065e7cedc0f27780604c.tar.zst freebsd-ports-gnome-3f78e1fd26a9905279ea065e7cedc0f27780604c.zip |
- 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)
Diffstat (limited to 'net')
-rw-r--r-- | net/gnu-radius/Makefile | 2 | ||||
-rw-r--r-- | net/gnu-radius/distinfo | 2 | ||||
-rw-r--r-- | net/gnu-radius/scripts/configure | 6 |
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/" ;; |