diff options
author | Sean Chittenden <seanc@FreeBSD.org> | 2003-01-18 22:50:06 +0000 |
---|---|---|
committer | Sean Chittenden <seanc@FreeBSD.org> | 2003-01-18 22:50:06 +0000 |
commit | d9927d40f83d5f4988fb51190f879c5205572b19 (patch) | |
tree | f0699f193b418b41028148ec70931498ab8b7db8 /www/udmsearch | |
parent | 839643ce995fc6505c66e518079b1de303a6892e (diff) | |
download | ports-d9927d40f83d5f4988fb51190f879c5205572b19.tar.gz ports-d9927d40f83d5f4988fb51190f879c5205572b19.zip |
Bump libpq version[1] and PORTREVISION. Add POSTGRESQL_PORT tunable.
This should be the last of the PostgreSQL updates and everything should
support the POSTGRESQL_PORT tunable.
Submitted by: kris/bento[1]
Notes
Notes:
svn path=/head/; revision=73443
Diffstat (limited to 'www/udmsearch')
-rw-r--r-- | www/udmsearch/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/udmsearch/Makefile b/www/udmsearch/Makefile index 0434c90e78c3..b76d31cdf681 100644 --- a/www/udmsearch/Makefile +++ b/www/udmsearch/Makefile @@ -7,6 +7,7 @@ PORTNAME= udmsearch PORTVERSION= 3.0.23 +PORTREVISION= 1 CATEGORIES= www databases MASTER_SITES= http://mysearch.udm.net/Download/ \ ftp://ftp.izhcom.ru/pub/unix/UdmSearch/ \ @@ -25,7 +26,8 @@ CONFIGURE_ARGS= --enable-charset-guesser \ --localstatedir=/var/udmsearch .if defined(WITH_PGSQL) -LIB_DEPENDS= pq.2:${PORTSDIR}/databases/postgresql7 +POSTGRESQL_PORT?= databases/postgresql7 +LIB_DEPENDS= pq.3:${PORTSDIR}/${POSTGRESQL_PORT} CONFIGURE_ARGS+= --with-pgsql=${LOCALBASE}/pgsql .elif defined(WITH_MSQL) |