diff options
author | jdolecek <jdolecek@pkgsrc.org> | 2006-04-08 19:14:06 +0000 |
---|---|---|
committer | jdolecek <jdolecek@pkgsrc.org> | 2006-04-08 19:14:06 +0000 |
commit | 4dfae05441013d69ce477328e0d782df1d391ebf (patch) | |
tree | c084cdaca89eca58bac5249158e3fd11f9eef99c /databases/postgresql74 | |
parent | 8d6b9ebf42b2bc1fd31a0f96e2de659144248f8c (diff) | |
download | pkgsrc-4dfae05441013d69ce477328e0d782df1d391ebf.tar.gz |
use MASTER_SITE_PGSQL
Diffstat (limited to 'databases/postgresql74')
-rw-r--r-- | databases/postgresql74/Makefile.common | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/databases/postgresql74/Makefile.common b/databases/postgresql74/Makefile.common index 3cc55b334f0..908674e7e02 100644 --- a/databases/postgresql74/Makefile.common +++ b/databases/postgresql74/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.33 2006/04/06 06:21:42 reed Exp $ +# $NetBSD: Makefile.common,v 1.34 2006/04/08 19:14:06 jdolecek Exp $ # # This Makefile fragment is included by all PostgreSQL packages built from # the main sources of the PostgreSQL distribution except jdbc-postgresql. @@ -11,12 +11,12 @@ DISTNAME?= postgresql-${DIST_VERS} CATEGORIES+= databases -MASTER_SITES?= \ - ftp://ftp.de.postgresql.org/mirror/postgresql/source/v${DIST_VERS}/ \ - ftp://gd.tuwien.ac.at/db/www.postgresql.org/pub/source/v${DIST_VERS}/ \ - ftp://ftp.sunsite.auc.dk/mirrors/postgresql/source/v${DIST_VERS}/ \ - ftp://ftp.jaist.ac.jp/pub/dbms/postgres95/source/v${DIST_VERS}/ \ - ftp://ftp.postgresql.org/pub/source/v${DIST_VERS}/ +MASTER_SITES?= ${MASTER_SITE_PGSQL:=source/v${DIST_VERS}/} + +# Craft a MASTER_SORT_REGEX that understands the location of the country +# code in the FTP server name for the PostgreSQL mirror sites. +# +MASTER_SORT_REGEX+= ${MASTER_SORT:S/./\\./g:C/.*/:\/\/[^[\/]*&\/ :\/\/[^\/]*&\\./} EXTRACT_SUFX= .tar.bz2 |