diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2019-07-27 19:57:49 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2019-07-27 19:57:49 +0800 |
commit | 872b1d700cc9168e8c8113837b694b9cff4953fa (patch) | |
tree | c88e022919e20147f386c7f80052ea1dabe29572 /databases | |
parent | 5d8e49916b89b829a9e59592bf9ec30bc1863ea4 (diff) | |
download | freebsd-ports-gnome-872b1d700cc9168e8c8113837b694b9cff4953fa.tar.gz freebsd-ports-gnome-872b1d700cc9168e8c8113837b694b9cff4953fa.tar.zst freebsd-ports-gnome-872b1d700cc9168e8c8113837b694b9cff4953fa.zip |
Remove useless pkg-install
Differential Revision: https://reviews.freebsd.org/D20216
Submitted by: Loic Bartoletti <lbartoletti@tuxfamily.org> (maintainer)
Diffstat (limited to 'databases')
-rw-r--r-- | databases/postgis25/pkg-install | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/databases/postgis25/pkg-install b/databases/postgis25/pkg-install deleted file mode 100644 index a61b132fcc5c..000000000000 --- a/databases/postgis25/pkg-install +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh - -msg(){ - echo " - ======================= GEOS Support Notice ======================== - In order to use the GEOS support, you may need to specially compile - your version of PostgreSQL to link the C++ runtime library. - To do this, invoke the PostgreSQL Makefile script this way: - - on csh shell: - - setenv LDFLAGS -lstdc++ - make - - on sh or bash shell: - - export LDFLAGS=-lstdc++ - make - - The initial LDFLAGS variable is passed through to the Makefile and - adds the C++ library to the linking stage. - - ==================================================================== -" -if [ -n "${PACKAGE_BUILDING}" ]; then - sleep 10 -fi - - -} - -case "$2" in - PRE-INSTALL) - msg ;; - MESSAGE) - msg ;; -esac |