mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
27 lines
613 B
Makefile
27 lines
613 B
Makefile
# New ports collection makefile for: ruby-postgres
|
|
# Date created: 19 April 1999
|
|
# Whom: Yasuhiro Fukuma <yasuf@big.or.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= postgres
|
|
PORTVERSION= 0.7.9.2008.01.28
|
|
PORTREVISION= 1
|
|
CATEGORIES= databases rubygems
|
|
MASTER_SITES= ${MASTER_SITE_RUBYFORGE}
|
|
MASTER_SITE_SUBDIR= ruby-pg
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= Ruby interface to PostgreSQL library
|
|
|
|
USE_PGSQL= yes
|
|
USE_RUBY= yes
|
|
USE_RUBYGEMS= yes
|
|
|
|
PG_CONFIG= ${LOCALBASE}/bin/pg_config
|
|
CONFIGURE_ARGS= --with-pgsql-include-dir=`${PG_CONFIG} --includedir` \
|
|
--with-pgsql-lib-dir=`${PG_CONFIG} --libdir`
|
|
|
|
.include <bsd.port.mk>
|