Index: head/databases/p5-DBD-PgSPI/Makefile =================================================================== --- head/databases/p5-DBD-PgSPI/Makefile (revision 179172) +++ head/databases/p5-DBD-PgSPI/Makefile (revision 179173) @@ -1,73 +1,73 @@ # New ports collection makefile for: p5-DBD-PgSPI # Date created: 17 April 2003 # Whom: mat # # $FreeBSD$ # PORTNAME= DBD-PgSPI PORTVERSION= 0.02 PORTREVISION= 2 CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= DBD PKGNAMEPREFIX= p5- MAINTAINER= mat@FreeBSD.org COMMENT= Provides access to PostgreSQL db through DBI within pl/perl functions BUILD_DEPENDS= ${RUN_DEPENDS} \ ${NONEXISTENT}:${PORTSDIR}/${POSTGRESQL_PORT}:configure RUN_DEPENDS= ${LOCALBASE}/lib/postgresql/plperl.so:${PORTSDIR}/databases/p5-postgresql-plperl USE_GMAKE= yes USE_PGSQL= yes PERL_CONFIGURE= yes MAN3= DBD::PgSPI.3 .if !defined(NOPORTDOCS) PORTDOCS= Changes README .endif POSTGRESQL_PORT?= databases/postgresql${PGSQL_VER}-server PGSQL_PORTDIR?= ${PORTSDIR}/${POSTGRESQL_PORT} PGSQL_WRKSRC_CMD= cd ${PGSQL_PORTDIR} && ${MAKE} -V WRKSRC .include # Setting/finding PostgreSQL version we want. .if exists(${LOCALBASE}/bin/postmaster) PGSQL_VER!= ${LOCALBASE}/bin/postmaster -V | \ - ${SED} -n 's/postmaster.*PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\..*/\1\2/p' + ${SED} -n 's/.*PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\..*/\1\2/p' .elif exists(${LOCALBASE}/bin/pg_config) PGSQL_VER!= ${LOCALBASE}/bin/pg_config --version | ${SED} -n 's/PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\..*/\1\2/p' .else PGSQL_VER= ${DEFAULT_PGSQL_VER} .endif .if ${PERL_LEVEL} < 500600 RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI-137 \ ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg-13 .else RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI \ ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg .endif CONFIGURE_ENV= POSTGRES_HOME="`${PGSQL_WRKSRC_CMD}`/src" \ LOCALBASE="${LOCALBASE}" post-patch: @${PERL} -i -pe '$$_ = "" if /ppport.h/' \ ${WRKSRC}/PgSPI.h post-clean: @cd ${PGSQL_PORTDIR} && ${MAKE} clean .if !defined(NOPORTDOCS) post-install: @${MKDIR} ${DOCSDIR} @${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif .include Property changes on: head/databases/p5-DBD-PgSPI/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.11 \ No newline at end of property +1.12 \ No newline at end of property Index: head/databases/postgresql-plruby/Makefile =================================================================== --- head/databases/postgresql-plruby/Makefile (revision 179172) +++ head/databases/postgresql-plruby/Makefile (revision 179173) @@ -1,83 +1,83 @@ # New ports collection makefile for: PL/Ruby # Date created: 28 June 2001 # Whom: Akinori MUSHA aka knu # # $FreeBSD$ # PORTNAME= plruby PORTVERSION= 0.4.6 CATEGORIES= databases ruby MASTER_SITES= ftp://moulon.inra.fr/pub/ruby/ PKGNAMEPREFIX= postgresql- DIST_SUBDIR= ruby MAINTAINER= ports@FreeBSD.org COMMENT= PL/Ruby procedural language for the PostgreSQL database system BUILD_DEPENDS= postgres:${PORTSDIR}/${POSTGRESQL_PORT} RUN_DEPENDS= postgres:${PORTSDIR}/${POSTGRESQL_PORT} USE_PGSQL= yes USE_RUBY= yes USE_RUBY_EXTCONF= yes USE_RUBY_RDOC= yes POSTGRESQL_PORT?= databases/postgresql${PGSQL_VER}-server PGSQL_PORTDIR?= ${PORTSDIR}/${POSTGRESQL_PORT} PGSQL_WRKSRC_CMD= cd ${PGSQL_PORTDIR} && ${MAKE} -V WRKSRC CONFIGURE_ARGS= --with-pgsql-version="${PGSQL_VER}" \ --with-pgsql-srcinc="`${PGSQL_WRKSRC_CMD}`/src/include" \ --with-pgsql-include="${LOCALBASE}/include" \ --with-pgsql-lib="${LOCALBASE}/lib" #CONFIGURE_ARGS+= --with-safe-level=0 #CONFIGURE_ARGS+= --with-main-safe-level=0 #CONFIGURE_ARGS+= --with-timeout=30 INSTALL_TARGET= site-install DOCS= Changes README.en plruby.html plruby.rd docs/doc PKGMESSAGE= ${WRKDIR}/createlang.sql post-extract: ${FIND} ${WRKSRC} -name '*~' -delete post-patch: ${RUBY} -i -pe 'gsub /test_mklang\.sql/, "../createlang.sql"' \ ${WRKSRC}/test/*/runtest pre-configure: cd ${PGSQL_PORTDIR} && ${MAKE} -DBATCH patch post-build: ${SED} 's,!!PLRUBY_SO!!,${RUBY_SITEARCHLIBDIR}/plruby.so,' \ ${FILESDIR}/createlang.sql > ${WRKDIR}/createlang.sql .if !defined(NOPORTDOCS) cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} rdoc .endif .include # Setting/finding PostgreSQL version we want. .if exists(${LOCALBASE}/bin/postmaster) PGSQL_VER!= ${LOCALBASE}/bin/postmaster -V | \ - ${SED} -n 's/postmaster.*PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\..*/\1\2/p' + ${SED} -n 's/.*PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\..*/\1\2/p' .elif exists(${LOCALBASE}/bin/pg_config) PGSQL_VER!= ${LOCALBASE}/bin/pg_config --version | ${SED} -n 's/PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\..*/\1\2/p' .else PGSQL_VER= ${DEFAULT_PGSQL_VER} .endif post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${RUBY_MODEXAMPLESDIR}/ ${CP} -R ${WRKSRC}/test/* ${RUBY_MODEXAMPLESDIR}/ ${INSTALL_DATA} ${WRKDIR}/createlang.sql ${RUBY_MODEXAMPLESDIR}/ ${MKDIR} ${RUBY_MODDOCDIR} .for f in ${DOCS} ${CP} -R ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ .endfor .endif @${CAT} ${PKGMESSAGE} .include Property changes on: head/databases/postgresql-plruby/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.29 \ No newline at end of property +1.30 \ No newline at end of property Index: head/databases/slony1/Makefile =================================================================== --- head/databases/slony1/Makefile (revision 179172) +++ head/databases/slony1/Makefile (revision 179173) @@ -1,84 +1,84 @@ # New ports collection makefile for: slony1 # Date created: 20 Jun 2004 # Whom: Radim Kolar # # $FreeBSD$ # PORTNAME= slony1 PORTVERSION= 1.2.0 PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://developer.postgresql.org/~wieck/slony1/download/ \ http://freebsd.unixfreunde.de/sources/ DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \ ${PORTNAME}-${PORTVERSION}-docs${EXTRACT_SUFX} MAINTAINER= vivek@khera.org COMMENT= PostgreSQL master to multiple replicas replication system PGSQL_PORT= ${PORTSDIR}/databases/postgresql${PGSQL_VER}-server RUN_DEPENDS= ${LOCALBASE}/bin/postmaster:${PGSQL_PORT} BUILD_DEPENDS= ${LOCALBASE}/bin/postmaster:${PGSQL_PORT} GNU_CONFIGURE= yes USE_GMAKE= yes USE_BZIP2= yes USE_RC_SUBR= slon.sh SUB_FILES= pkg-message slon-mkservice.sh SUB_LIST+= NAME=slon OPTIONS= PERLTOOLS "Install perl configuration tools" Off .include .if defined(WITH_PERLTOOLS) USE_PERL5= yes CONFIGURE_ARGS+= --with-perltools=${LOCALBASE}/sbin RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg PLIST_SUB+= PERLTOOLS="" SUB_LIST+= PERLTOOLS="" .else PLIST_SUB+= PERLTOOLS="@comment " SUB_LIST+= PERLTOOLS="@comment " .endif # let configure find postgres stuff in non-standard places CONFIGURE_ARGS+=--with-pgconfigdir=${LOCALBASE}/bin \ --with-pgbindir=${LOCALBASE}/bin \ --with-pgincludedir=${LOCALBASE}/include \ --with-pgincludeserverdir=${LOCALBASE}/include/postgresql/server \ --with-pglibdir=${LOCALBASE}/lib \ --with-pgpkglibdir=${LOCALBASE}/lib/postgresql \ --with-pgsharedir=${LOCALBASE}/share/postgresql DEFAULT_PGSQL_VER?=80 # Setting/finding PostgreSQL version we want. .if exists(${LOCALBASE}/bin/postmaster) PGSQL_VER!= ${LOCALBASE}/bin/postmaster -V | \ - ${SED} -En 's/postmaster.*PostgreSQL[^0-9]*([0-9]+)\.([0-9]+)\..*/\1\2/p' + ${SED} -En 's/.*PostgreSQL[^0-9]*([0-9]+)\.([0-9]+)\..*/\1\2/p' .elif exists(${LOCALBASE}/bin/pg_config) PGSQL_VER!= ${LOCALBASE}/bin/pg_config --version | \ ${SED} -En 's/PostgreSQL[^0-9]*([0-9]*)\.([0-9]+)\..*/\1\2/p' .else PGSQL_VER= ${DEFAULT_PGSQL_VER} .endif post-install: .if ! defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} ${MKDIR} ${DOCSDIR}/adminguide ${MKDIR} ${DOCSDIR}/howto ${INSTALL_DATA} ${WRKSRC}/COPYRIGHT ${WRKSRC}/INSTALL ${WRKSRC}/SAMPLE ${WRKSRC}/README ${WRKSRC}/HISTORY-1.1 ${WRKSRC}/UPGRADING ${DOCSDIR} # ${INSTALL_DATA} ${WRKSRC}/doc/*/*.pdf ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/howto/*.txt ${WRKSRC}/doc/howto/*.html ${DOCSDIR}/howto/ ${INSTALL_DATA} ${WRKSRC}/doc/adminguide/*.html ${WRKSRC}/doc/adminguide/*.png ${DOCSDIR}/adminguide/ .endif @${INSTALL_SCRIPT} ${WRKDIR}/slon-mkservice.sh ${PREFIX}/sbin/slon-mkservice @${INSTALL_DATA} ${FILESDIR}/slon.conf-sample ${PREFIX}/etc/ @${CAT} ${PKGMESSAGE} .include Property changes on: head/databases/slony1/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property Index: head/databases/slony1v2/Makefile =================================================================== --- head/databases/slony1v2/Makefile (revision 179172) +++ head/databases/slony1v2/Makefile (revision 179173) @@ -1,84 +1,84 @@ # New ports collection makefile for: slony1 # Date created: 20 Jun 2004 # Whom: Radim Kolar # # $FreeBSD$ # PORTNAME= slony1 PORTVERSION= 1.2.0 PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= http://developer.postgresql.org/~wieck/slony1/download/ \ http://freebsd.unixfreunde.de/sources/ DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \ ${PORTNAME}-${PORTVERSION}-docs${EXTRACT_SUFX} MAINTAINER= vivek@khera.org COMMENT= PostgreSQL master to multiple replicas replication system PGSQL_PORT= ${PORTSDIR}/databases/postgresql${PGSQL_VER}-server RUN_DEPENDS= ${LOCALBASE}/bin/postmaster:${PGSQL_PORT} BUILD_DEPENDS= ${LOCALBASE}/bin/postmaster:${PGSQL_PORT} GNU_CONFIGURE= yes USE_GMAKE= yes USE_BZIP2= yes USE_RC_SUBR= slon.sh SUB_FILES= pkg-message slon-mkservice.sh SUB_LIST+= NAME=slon OPTIONS= PERLTOOLS "Install perl configuration tools" Off .include .if defined(WITH_PERLTOOLS) USE_PERL5= yes CONFIGURE_ARGS+= --with-perltools=${LOCALBASE}/sbin RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg PLIST_SUB+= PERLTOOLS="" SUB_LIST+= PERLTOOLS="" .else PLIST_SUB+= PERLTOOLS="@comment " SUB_LIST+= PERLTOOLS="@comment " .endif # let configure find postgres stuff in non-standard places CONFIGURE_ARGS+=--with-pgconfigdir=${LOCALBASE}/bin \ --with-pgbindir=${LOCALBASE}/bin \ --with-pgincludedir=${LOCALBASE}/include \ --with-pgincludeserverdir=${LOCALBASE}/include/postgresql/server \ --with-pglibdir=${LOCALBASE}/lib \ --with-pgpkglibdir=${LOCALBASE}/lib/postgresql \ --with-pgsharedir=${LOCALBASE}/share/postgresql DEFAULT_PGSQL_VER?=80 # Setting/finding PostgreSQL version we want. .if exists(${LOCALBASE}/bin/postmaster) PGSQL_VER!= ${LOCALBASE}/bin/postmaster -V | \ - ${SED} -En 's/postmaster.*PostgreSQL[^0-9]*([0-9]+)\.([0-9]+)\..*/\1\2/p' + ${SED} -En 's/.*PostgreSQL[^0-9]*([0-9]+)\.([0-9]+)\..*/\1\2/p' .elif exists(${LOCALBASE}/bin/pg_config) PGSQL_VER!= ${LOCALBASE}/bin/pg_config --version | \ ${SED} -En 's/PostgreSQL[^0-9]*([0-9]*)\.([0-9]+)\..*/\1\2/p' .else PGSQL_VER= ${DEFAULT_PGSQL_VER} .endif post-install: .if ! defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} ${MKDIR} ${DOCSDIR}/adminguide ${MKDIR} ${DOCSDIR}/howto ${INSTALL_DATA} ${WRKSRC}/COPYRIGHT ${WRKSRC}/INSTALL ${WRKSRC}/SAMPLE ${WRKSRC}/README ${WRKSRC}/HISTORY-1.1 ${WRKSRC}/UPGRADING ${DOCSDIR} # ${INSTALL_DATA} ${WRKSRC}/doc/*/*.pdf ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/howto/*.txt ${WRKSRC}/doc/howto/*.html ${DOCSDIR}/howto/ ${INSTALL_DATA} ${WRKSRC}/doc/adminguide/*.html ${WRKSRC}/doc/adminguide/*.png ${DOCSDIR}/adminguide/ .endif @${INSTALL_SCRIPT} ${WRKDIR}/slon-mkservice.sh ${PREFIX}/sbin/slon-mkservice @${INSTALL_DATA} ${FILESDIR}/slon.conf-sample ${PREFIX}/etc/ @${CAT} ${PKGMESSAGE} .include Property changes on: head/databases/slony1v2/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.24 \ No newline at end of property +1.25 \ No newline at end of property