From fa136c3a25b30e91b21afc84c5eac8bf4fac00cf Mon Sep 17 00:00:00 2001 From: David Brownlee Date: Tue, 9 Jan 2007 16:02:25 +0000 Subject: [PATCH] postgresql74 is no longer in pkgsrc --- Makefile | 4 +- postgis74/DESCR | 16 ------- postgis74/Makefile | 70 ------------------------------ postgis74/PLIST | 26 ----------- postgis74/buildlink3.mk | 34 --------------- postgis74/distinfo | 15 ------- postgresql74-postgis/DESCR | 16 ------- postgresql74-postgis/Makefile | 61 -------------------------- postgresql74-postgis/PLIST | 50 --------------------- postgresql74-postgis/buildlink3.mk | 18 -------- postgresql74-postgis/distinfo | 19 -------- 11 files changed, 1 insertion(+), 328 deletions(-) delete mode 100644 postgis74/DESCR delete mode 100644 postgis74/Makefile delete mode 100644 postgis74/PLIST delete mode 100644 postgis74/buildlink3.mk delete mode 100644 postgis74/distinfo delete mode 100644 postgresql74-postgis/DESCR delete mode 100644 postgresql74-postgis/Makefile delete mode 100644 postgresql74-postgis/PLIST delete mode 100644 postgresql74-postgis/buildlink3.mk delete mode 100644 postgresql74-postgis/distinfo diff --git a/Makefile b/Makefile index 7406eb0a3c..1f14919397 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2472 2007/01/08 19:05:39 shattered Exp $ +# $Id: Makefile,v 1.2473 2007/01/09 16:02:25 absd Exp $ # COMMENT= WIP pkgsrc packages @@ -1176,9 +1176,7 @@ SUBDIR+= pop-before-smtp SUBDIR+= pop3.proxy SUBDIR+= portmap SUBDIR+= postal2-mpdemo-bin -SUBDIR+= postgis74 SUBDIR+= postgresql-uniqueidentifier -SUBDIR+= postgresql74-postgis SUBDIR+= postgresql80-postgis SUBDIR+= postoffice SUBDIR+= powerdns-recursor diff --git a/postgis74/DESCR b/postgis74/DESCR deleted file mode 100644 index 7737c50bee..0000000000 --- a/postgis74/DESCR +++ /dev/null @@ -1,16 +0,0 @@ -PostGIS adds support for geographic objects to the -PostgreSQL object-relational database. In effect, -PostGIS "spatially enables" the PostgreSQL server, -allowing it to be used as a backend for GIS. - -PostGIS/PostgreSQL includes the following functionality: - -* Simple Features as defined by the OpenGIS Consortium (OGC) -* Support for Well-Known Text and Well-Known Binary - representations of GIS objects -* Fast spatial indexing using GiST -* Geospatial analysis functions -* PostgreSQL JDBC extension objects corresponding to the - geometries -* Support for OGC access functions as defined by the Simple - Features Specification diff --git a/postgis74/Makefile b/postgis74/Makefile deleted file mode 100644 index fb2d0f1c55..0000000000 --- a/postgis74/Makefile +++ /dev/null @@ -1,70 +0,0 @@ -# $NetBSD: Makefile,v 1.6 2006/10/29 08:32:53 shattered Exp $ -# - -VERSION= 0.8.2 -PKGNAME= postgis-${VERSION} -CATEGORIES= databases geography -MASTER_SITES+= ${PGSQL_SITES:=source/v${DIST_VERS}/} -MASTER_SITES+= http://postgis.refractions.net/ - -MAINTAINER= hdp@cs.nmsu.edu -HOMEPAGE= http://postgis.refractions.net/ -COMMENT= Spatial database capabilities for PostgreSQL - -# XXX - Override these so they work correctly with Makefile.common. -# The last two don't really need changing, except that Makefile.common -# uses .. rather than ../../databases; the former will not work from -# arbitrary directories. -DISTINFO_FILE= ${.CURDIR}/distinfo -COMMON_FILESDIR= ${.CURDIR}/../../databases/postgresql74/files -PATCHDIR= ${.CURDIR}/../../databases/postgresql74/patches - -.include "../../databases/postgresql74/Makefile.common" - -USE_TOOLS+= perl:run - -# Add postgis to the postgresql distfile -DISTFILES+= postgis-${VERSION}.tar.gz ${DISTNAME}${EXTRACT_SUFX} - -# Only build the postgis contribted source -BUILD_DIRS= ${WRKSRC}/contrib/postgis-${VERSION} - -BINDIR= ${PREFIX}/bin -LIBDIR= ${PREFIX}/lib/postgresql -DOCDIR= ${PREFIX}/share//doc/postgis -EXAMPLEDIR= ${PREFIX}/share/examples/postgis -HTMLDIR= ${PREFIX}/share/doc/html/postgis -SQLDIR= ${PREFIX}/share/postgresql - -MAKE_ENV+= PROJ_DIR=${PREFIX:Q} -MAKE_ENV+= GEOS_DIR=${PREFIX:Q} - -# install postgis source within contrib directory -pre-build: - ${MV} ${WRKDIR}/${PKGNAME} ${WRKSRC}/contrib - -do-install: - ${INSTALL_DATA_DIR} ${DOCDIR} ${EXAMPLEDIR} ${HTMLDIR} ${SQLDIR} -.for f in libpostgis.a libpostgis.so.0.8 - ${INSTALL_DATA} ${BUILD_DIRS}/${f} ${LIBDIR}/${f} -.endfor - ${RM} -f ${LIBDIR}/libpostgis.so.0 - ${RM} -f ${LIBDIR}/libpostgis.so - ${LN} -s libpostgis.so.0.8 ${LIBDIR}/libpostgis.so.0 - ${LN} -s libpostgis.so.0.8 ${LIBDIR}/libpostgis.so -.for f in postgis.sql postgis_undef.sql spatial_ref_sys.sql - ${INSTALL_DATA} ${BUILD_DIRS}/${f} ${SQLDIR}/${f} -.endfor -.for f in pgsql2shp shp2pgsql - ${INSTALL_PROGRAM} ${BUILD_DIRS}/loader/${f} ${PREFIX}/bin/${f} -.endfor - ${CP} -r ${BUILD_DIRS}/examples/* ${EXAMPLEDIR} - ${INSTALL_DATA} ${BUILD_DIRS}/README.postgis ${DOCDIR} - ${INSTALL_DATA} ${BUILD_DIRS}/doc/postgis.xml ${DOCDIR} - ${CP} -r ${BUILD_DIRS}/doc/html/* ${HTMLDIR} - -.include "../../geography/geos/buildlink3.mk" -.include "../../misc/proj/buildlink3.mk" -.include "../../databases/postgresql74-lib/buildlink3.mk" -.include "../../mk/pthread.buildlink3.mk" -.include "../../mk/bsd.pkg.mk" diff --git a/postgis74/PLIST b/postgis74/PLIST deleted file mode 100644 index 438a863c68..0000000000 --- a/postgis74/PLIST +++ /dev/null @@ -1,26 +0,0 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2005/03/18 23:08:40 daprice Exp $ -bin/pgsql2shp -bin/shp2pgsql -lib/postgresql/libpostgis.a -lib/postgresql/libpostgis.so -lib/postgresql/libpostgis.so.0 -lib/postgresql/libpostgis.so.0.8 -share/doc/html/postgis/style.css -share/doc/postgis/README.postgis -share/doc/postgis/postgis.xml -share/examples/postgis/ogc_test_suite/1_schema.sql -share/examples/postgis/ogc_test_suite/2_queries.sql -share/examples/postgis/ogc_test_suite/3_cleanup.sql -share/examples/postgis/ogc_test_suite/README -share/examples/postgis/wkb_reader/Makefile -share/examples/postgis/wkb_reader/README -share/examples/postgis/wkb_reader/printwkb.inc -share/examples/postgis/wkb_reader/readwkb.c -share/postgresql/postgis.sql -share/postgresql/postgis_undef.sql -share/postgresql/spatial_ref_sys.sql -@dirrm share/examples/postgis/wkb_reader -@dirrm share/examples/postgis/ogc_test_suite -@dirrm share/examples/postgis -@dirrm share/doc/postgis -@dirrm share/doc/html/postgis diff --git a/postgis74/buildlink3.mk b/postgis74/buildlink3.mk deleted file mode 100644 index df4b71ff06..0000000000 --- a/postgis74/buildlink3.mk +++ /dev/null @@ -1,34 +0,0 @@ -# $NetBSD: buildlink3.mk,v 1.3 2006/04/06 07:18:18 jeremy-c-reed Exp $ -# XXX -# XXX This file was created automatically using createbuildlink-3.4. -# XXX After this file as been verified as correct, the comment lines -# XXX beginning with "XXX" should be removed. Please do not commit -# XXX unverified buildlink[23].mk files. -# XXX -# XXX Packages that only install static libraries or headers should -# XXX include the following line: -# XXX -# XXX BUILDLINK_DEPMETHOD.postgis?= build - -BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+ -POSTGIS_BUILDLINK3_MK:= ${POSTGIS_BUILDLINK3_MK}+ - -.if !empty(BUILDLINK_DEPTH:M+) -BUILDLINK_DEPENDS+= postgis -.endif - -BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Npostgis} -BUILDLINK_PACKAGES+= postgis - -.if !empty(POSTGIS_BUILDLINK3_MK:M+) -BUILDLINK_API_DEPENDS.postgis+= postgis>=0.8.2 -BUILDLINK_PKGSRCDIR.postgis?= ../../wip/postgis74 -.endif # POSTGIS_BUILDLINK3_MK - -.include "../../geography/geos/buildlink3.mk" -.include "../../misc/proj/buildlink3.mk" -.include "../../databases/postgresql74-lib/buildlink3.mk" -.include "../../devel/gettext-lib/buildlink3.mk" -.include "../../devel/zlib/buildlink3.mk" - -BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//} diff --git a/postgis74/distinfo b/postgis74/distinfo deleted file mode 100644 index 1f4ffed423..0000000000 --- a/postgis74/distinfo +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: distinfo,v 1.1.1.1 2005/03/18 23:08:40 daprice Exp $ - -SHA1 (postgis-0.8.2.tar.gz) = bfccfddca9f304337bd035421c54dcaaa6971eaa -RMD160 (postgis-0.8.2.tar.gz) = 7f23c5603f99c6460e8b972dc0f197a3e7839ba6 -Size (postgis-0.8.2.tar.gz) = 1875280 bytes -SHA1 (postgresql-7.4.7.tar.bz2) = 48fe9187ae1776265756b807254552b4f6bcfcb8 -RMD160 (postgresql-7.4.7.tar.bz2) = 1bbb64c8a9b95cafe0254a0994752b8bbb624346 -Size (postgresql-7.4.7.tar.bz2) = 10235394 bytes -SHA1 (patch-aa) = 626b4b4bf0d47913072399535c55d413b90675a4 -SHA1 (patch-ab) = f44a544c56452bad197a88cb827e88624c54656c -SHA1 (patch-ac) = 81ef677cc5d196762b6cc3c3e38dee4a37e75ac2 -SHA1 (patch-ad) = fae5e82e0943ea982c9d3aace290b56c6a7629f9 -SHA1 (patch-ae) = f0e0ad98ebdc972e7c40afd805fbb0d909d5ef3b -SHA1 (patch-af) = 7373db75fda125b980f2ead990719798c0d22a48 -SHA1 (patch-ag) = a983f23b5e47a4c2f31ba284ff3db51b53cf8414 diff --git a/postgresql74-postgis/DESCR b/postgresql74-postgis/DESCR deleted file mode 100644 index 0bf8b17d06..0000000000 --- a/postgresql74-postgis/DESCR +++ /dev/null @@ -1,16 +0,0 @@ -PostGIS adds support for geographic objects to the -PostgreSQL object-relational database. In effect, -PostGIS "spatially enables" the PostgreSQL server, -allowing it to be used as a backend for GIS. - -PostGIS/PostgreSQL includes the following functionality: -* Simple Features as defined by the OpenGIS Consortium (OGC) -* Support for Well-Known Text and Well-Known Binary - representations of GIS objects -* Fast spatial indexing using GiST -* Geospatial analysis functions -* PostgreSQL JDBC extension objects corresponding to the - geometries -* Support for OGC access functions as defined by the Simple - Features Specification - and few more..... diff --git a/postgresql74-postgis/Makefile b/postgresql74-postgis/Makefile deleted file mode 100644 index 9128213859..0000000000 --- a/postgresql74-postgis/Makefile +++ /dev/null @@ -1,61 +0,0 @@ -# $NetBSD: Makefile,v 1.10 2006/10/29 08:32:53 shattered Exp $ -# -VERSION= 1.1.1 -PKGNAME= postgresql74-postgis-${VERSION} -CATEGORIES= databases geography - -MAINTAINER= mchittur@cs.nmsu.edu -HOMEPAGE= http://postgis.refractions.net/ -COMMENT= Spatial database capabilities for PostgreSQL - -CONFLICTS= postgis-[0-9]* - -# XXX - Override these so they work correctly with Makefile.common. -# The last two don't really need changing, except that Makefile.common -# uses .. rather than ../../databases; the former will not work from -# arbitrary directories. -DISTINFO_FILE= ${.CURDIR}/distinfo -COMMON_FILESDIR= ${.CURDIR}/../../databases/postgresql74/files -PATCHDIR= ${.CURDIR}/../../databases/postgresql74/patches - -.include "../../databases/postgresql74/Makefile.common" - -MASTER_SITES+= ${PGSQL_SITES:=source/v${DIST_VERS}/} -MASTER_SITES+= http://postgis.refractions.net/download/ - -PGSQL_VERSION_REQD= 74 - -# Add postgis to the postgresql distfile -DISTFILES+= postgis-${VERSION}.tar.gz ${DISTNAME}${EXTRACT_SUFX} - -USE_TOOLS+= perl -USE_TOOLS+= gmake - -# Only build the postgis contribted source -BUILD_DIRS= ${WRKSRC}/contrib/postgis-${VERSION} - -EXAMPLEDIR= ${PREFIX}/share/examples/postgis -SCRIPTDIR= ${PREFIX}/share/postgis - -MAKE_ENV+= PROJ_DIR=${PREFIX:Q} -MAKE_ENV+= GEOS_DIR=${PREFIX:Q} - -MAKE_FILE= GNUmakefile - -# configures postgis source within contrib directory -post-configure: - ${MV} ${WRKDIR}/postgis-${VERSION} ${WRKSRC}/contrib - cd ${WRKSRC}/contrib/postgis-${VERSION}/ && ${CONFIGURE_SCRIPT} --enable-autoconf --with-geos=${PREFIX:Q}/bin/geos-config - -pre-install: - ${INSTALL_DATA_DIR} ${EXAMPLEDIR} ${SCRIPTDIR} - -post-install: - ${CP} -r ${BUILD_DIRS}/regress/* ${EXAMPLEDIR} - ${CP} -r ${BUILD_DIRS}/utils/* ${SCRIPTDIR} - -.include "../../geography/geos/buildlink3.mk" -.include "../../misc/proj/buildlink3.mk" -.include "../../mk/pgsql.buildlink3.mk" -.include "../../mk/pthread.buildlink3.mk" -.include "../../mk/bsd.pkg.mk" diff --git a/postgresql74-postgis/PLIST b/postgresql74-postgis/PLIST deleted file mode 100644 index 5486723f6e..0000000000 --- a/postgresql74-postgis/PLIST +++ /dev/null @@ -1,50 +0,0 @@ -@comment $NetBSD: PLIST,v 1.2 2006/03/23 04:12:22 mchittur Exp $ -bin/pgsql2shp -bin/shp2pgsql -lib/postgresql/liblwgeom.so -lib/postgresql/liblwgeom.so.1 -lib/postgresql/liblwgeom.so.1.1 -share/examples/postgis/Makefile -share/examples/postgis/README -share/examples/postgis/isvalid_test -share/examples/postgis/lwgeom_regress.sql -share/examples/postgis/lwgeom_regress_expected -share/examples/postgis/regress.sql -share/examples/postgis/regress_bdpoly.sql -share/examples/postgis/regress_bdpoly_expected -share/examples/postgis/regress_biginsert.sql -share/examples/postgis/regress_expected -share/examples/postgis/regress_index.sql -share/examples/postgis/regress_index_expected -share/examples/postgis/regress_lots_of_points.sql -share/examples/postgis/regress_lrs.sql -share/examples/postgis/regress_lrs_expected -share/examples/postgis/regress_ogc.sql -share/examples/postgis/regress_ogc_expected -share/examples/postgis/regress_proj.sql -share/examples/postgis/regress_proj_expected -share/examples/postgis/relate_test -share/examples/postgis/removepoint.sql -share/examples/postgis/removepoint_expected -share/examples/postgis/run_test -share/examples/postgis/setpoint.sql -share/examples/postgis/setpoint_expected -share/examples/postgis/simplify.sql -share/examples/postgis/simplify_expected -share/examples/postgis/test_index_concurrency -share/postgis/Makefile -share/postgis/README -share/postgis/create_undef.pl -share/postgis/postgis_proc_upgrade.pl -share/postgis/postgis_restore.pl -share/postgis/profile_intersects.pl -share/postgis/test_estimation.pl -share/postgis/test_joinestimation.pl -share/postgresql/contrib/lwpostgis.sql -share/postgresql/contrib/lwpostgis_upgrade.sql -share/postgresql/contrib/spatial_ref_sys.sql -@dirrm share/postgresql/contrib -@dirrm share/postgresql -@dirrm share/postgis -@dirrm share/examples/postgis -@dirrm lib/postgresql diff --git a/postgresql74-postgis/buildlink3.mk b/postgresql74-postgis/buildlink3.mk deleted file mode 100644 index 8f38e8d4b9..0000000000 --- a/postgresql74-postgis/buildlink3.mk +++ /dev/null @@ -1,18 +0,0 @@ -# $NetBSD: buildlink3.mk,v 1.5 2006/04/06 07:18:19 jeremy-c-reed Exp $ - -BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+ -POSTGRESQL74_POSTGIS_BUILDLINK3_MK:= ${POSTGRESQL74_POSTGIS_BUILDLINK3_MK}+ - -.if !empty(BUILDLINK_DEPTH:M+) -BUILDLINK_DEPENDS+= postgresql74-postgis -.endif - -BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Npostgresql74-postgis} -BUILDLINK_PACKAGES+= postgresql74-postgis - -.if !empty(POSTGRESQL74_POSTGIS_BUILDLINK3_MK:M+) -BUILDLINK_API_DEPENDS.postgresql74-postgis+= postgresql74-postgis>=1.1.1 -BUILDLINK_PKGSRCDIR.postgresql74-postgis?= ../../wip/postgresql74-postgis -.endif # POSTGRESQL74_POSTGIS_BUILDLINK3_MK - -BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//} diff --git a/postgresql74-postgis/distinfo b/postgresql74-postgis/distinfo deleted file mode 100644 index 235fe182d3..0000000000 --- a/postgresql74-postgis/distinfo +++ /dev/null @@ -1,19 +0,0 @@ -$NetBSD: distinfo,v 1.3 2006/03/23 04:12:22 mchittur Exp $ - -SHA1 (postgis-1.1.1.tar.gz) = e0f5ac05166035ad9685e4e6e06406699bcb38dc -RMD160 (postgis-1.1.1.tar.gz) = 4881f6b1047f7dab91782832d60e2252ab4536b1 -Size (postgis-1.1.1.tar.gz) = 1546065 bytes -SHA1 (postgresql-7.4.12.tar.bz2) = fd4e1db4fa3bf1a22d0596337cb1456389ca03e0 -RMD160 (postgresql-7.4.12.tar.bz2) = 9a156c571383d666551439b49fd09ca3a96bed6e -Size (postgresql-7.4.12.tar.bz2) = 10246537 bytes -SHA1 (patch-aa) = 830a0789195aacd10094e35e7d0d79c5e201491f -SHA1 (patch-ab) = f44a544c56452bad197a88cb827e88624c54656c -SHA1 (patch-ac) = 8104ac7631dd8566eb455e479dd59da058b68c8f -SHA1 (patch-ad) = fae5e82e0943ea982c9d3aace290b56c6a7629f9 -SHA1 (patch-ae) = f0e0ad98ebdc972e7c40afd805fbb0d909d5ef3b -SHA1 (patch-af) = 7373db75fda125b980f2ead990719798c0d22a48 -SHA1 (patch-ag) = a983f23b5e47a4c2f31ba284ff3db51b53cf8414 -SHA1 (patch-ah) = 1a9b565bf3a004da5fa33081bc3675cb938e7e5f -SHA1 (patch-ai) = 158382638ee3380930d6c9fd9b6381e973ccedc2 -SHA1 (patch-aj) = 629e38a0ca475834fb0bf1e03cc4efdfca4fb6ce -SHA1 (patch-ak) = 12b4227149ebe4a3516b342c0931de78e3498b2e