diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-12 02:08:52 +0800 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-12 02:08:52 +0800 |
commit | b5482324dcf6b062151cc203cef1561f8923c859 (patch) | |
tree | ac2afa8997fbb76350bd6fad85df12e98e0b3da5 /databases/grass | |
parent | 667b4f4d18ac09226dc683a91597de9b41837f21 (diff) | |
download | freebsd-ports-gnome-b5482324dcf6b062151cc203cef1561f8923c859.tar.gz freebsd-ports-gnome-b5482324dcf6b062151cc203cef1561f8923c859.tar.zst freebsd-ports-gnome-b5482324dcf6b062151cc203cef1561f8923c859.zip |
In preparation for making libtool generate libraries with a sane name, fix all
LIB_DEPENDS in databases
Diffstat (limited to 'databases/grass')
-rw-r--r-- | databases/grass/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/databases/grass/Makefile b/databases/grass/Makefile index 2555ffaf0c88..e4e4ccc9ac92 100644 --- a/databases/grass/Makefile +++ b/databases/grass/Makefile @@ -24,13 +24,13 @@ LICENSE= GPLv2 BROKEN= Does not build BUILD_DEPENDS= ${LOCALBASE}/bin/swig:${PORTSDIR}/devel/swig13 -LIB_DEPENDS= gdal:${PORTSDIR}/graphics/gdal \ - jpeg:${PORTSDIR}/graphics/jpeg \ - png15:${PORTSDIR}/graphics/png \ - proj:${PORTSDIR}/graphics/proj \ - tiff:${PORTSDIR}/graphics/tiff \ - fftw3:${PORTSDIR}/math/fftw3 \ - freetype:${PORTSDIR}/print/freetype2 +LIB_DEPENDS= libgdal.so:${PORTSDIR}/graphics/gdal \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libpng15.so:${PORTSDIR}/graphics/png \ + libproj.so:${PORTSDIR}/graphics/proj \ + libtiff.so:${PORTSDIR}/graphics/tiff \ + libfftw3.so:${PORTSDIR}/math/fftw3 \ + libfreetype.so:${PORTSDIR}/print/freetype2 RUN_DEPENDS= bash:${PORTSDIR}/shells/bash USES= gettext gmake iconv readline perl5 tk @@ -92,7 +92,7 @@ PLIST_SUB+= MYSQL="@comment " .endif .if ${PORT_OPTIONS:MODBC} -LIB_DEPENDS+= odbc:${PORTSDIR}/databases/unixODBC +LIB_DEPENDS+= libodbc.so:${PORTSDIR}/databases/unixODBC CONFIGURE_ARGS+=--with-odbc PLIST_SUB+= ODBC="" .else |