diff options
author | stephen <stephen@FreeBSD.org> | 2018-05-23 07:22:38 +0800 |
---|---|---|
committer | stephen <stephen@FreeBSD.org> | 2018-05-23 07:22:38 +0800 |
commit | a8f6ae1ebde35e89517b949bd943fe47d1d14941 (patch) | |
tree | a59fe89971af8a5e6f57ec7efd0eff8316235e94 /math | |
parent | 21302decae38a7ced0eca8bceb705bda631860cf (diff) | |
download | freebsd-ports-gnome-a8f6ae1ebde35e89517b949bd943fe47d1d14941.tar.gz freebsd-ports-gnome-a8f6ae1ebde35e89517b949bd943fe47d1d14941.tar.zst freebsd-ports-gnome-a8f6ae1ebde35e89517b949bd943fe47d1d14941.zip |
- Put LIB_DEPENDS in the right place.
- Add USES=compiler:gcc-c++11-lib hoping to get rid of build errors on
FreeBSD-11.
Reported by: http://beefy9.nyi.freebsd.org/data/111amd64-default/470591/logs/octave-forge-octproj-1.1.5_8.log
Diffstat (limited to 'math')
-rw-r--r-- | math/octave-forge-octproj/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/math/octave-forge-octproj/Makefile b/math/octave-forge-octproj/Makefile index 0c4d6ca9912c..888e08e01751 100644 --- a/math/octave-forge-octproj/Makefile +++ b/math/octave-forge-octproj/Makefile @@ -12,13 +12,15 @@ COMMENT= Octave-forge package ${OCTAVE_PKGNAME} LICENSE= GPLv3 LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING +LIB_DEPENDS+= libproj.so:graphics/proj + # OCTSRC is the name of the directory of the package. # It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}. OCTSRC= ${DISTNAME} WRKSRC= ${WRKDIR}/${OCTSRC}/src -LIB_DEPENDS+= libproj.so:graphics/proj +USES+= compiler:gcc-c++11-lib .include "${.CURDIR}/../../Mk/bsd.octave.mk" |