1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00

- 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)
This commit is contained in:
Clement Laforet 2004-01-08 11:09:21 +00:00
parent 1d959a3fc8
commit f326b15cd2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=97669
3 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -1 +1 @@
MD5 (radius-1.1.tar.gz) = 78ac1582afaee5ca438841eb28c1e7ce
MD5 (radius-1.2.tar.gz) = 41efba1332ff563e1f88f2aba04d9d24

View File

@ -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/"
;;