diff options
author | Don Lewis <truckman@FreeBSD.org> | 2022-04-13 18:22:48 +0000 |
---|---|---|
committer | Don Lewis <truckman@FreeBSD.org> | 2022-04-13 18:26:28 +0000 |
commit | db0d93edd89c424bcb722cf7851d256fedf666db (patch) | |
tree | 57c0bb5c1e2621bc3a23f8ab96f393bb17708980 | |
parent | 655a704986632b3404272af46d8389274f5c25b8 (diff) | |
download | ports-db0d93edd89c424bcb722cf7851d256fedf666db.tar.gz ports-db0d93edd89c424bcb722cf7851d256fedf666db.zip |
editors/openoffice-devel: Fix dependency issues
Fix an incorrect coinmp-related dependency that was causing spurious
rebuilds. It was also reported to break the build of openoffice-4,
though I was unable to reproduce the problem, and it did not seem to
break the official package build. Add another missing dependency.
Both issues were reported by stage-qa.
PR: 263238
-rw-r--r-- | editors/openoffice-devel/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/openoffice-devel/Makefile b/editors/openoffice-devel/Makefile index 2156f4e76f42..cd5147c818c0 100644 --- a/editors/openoffice-devel/Makefile +++ b/editors/openoffice-devel/Makefile @@ -2,7 +2,7 @@ PORTNAME= apache-openoffice PORTVERSION= ${AOOVERSION1}.${AOOVERSION2}.${TIMESTAMP} -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 4 CATEGORIES= editors java MASTER_SITES= https://dist.apache.org/repos/dist/dev/openoffice/${AOOVERSION}-${AOORC}-${TIMESTAMP}/source/ \ @@ -85,7 +85,7 @@ LIB_DEPENDS= \ libClpSolver.so:math/clp \ libCoinMP.so:math/coinmp \ libCoinUtils.so:math/coinutils \ - libcoinmumps.so:math/ipopt \ + libcoinmumps.so:math/coin-or-mumps \ libnauty.so:math/nauty \ libopenblas.so:math/openblas \ libOsi.so:math/osi \ @@ -115,7 +115,7 @@ USES= autoreconf bison compiler:c++11-lib cpe desktop-file-utils \ gettext-runtime gl gmake gnome iconv jpeg perl5 pkgconfig \ python:3.7 shared-mime-info ssl tar:${TARTYPE} xorg USE_GL= gl glu -USE_GNOME= gtk20 libxslt libidl glib20 +USE_GNOME= gdkpixbuf2 gtk20 libxslt libidl glib20 USE_JAVA= yes JAVA_BUILD= jdk JAVA_RUN= jdk |