diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2012-05-13 08:52:49 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2012-05-13 08:52:49 +0800 |
commit | f1f3929a6520c777f38cf49b3b61993c51ca864d (patch) | |
tree | 5a218e40cf329d3cf31f04a24c60b157419aaf36 /x11/fireflies | |
parent | 233985daa440e04eec4db280d58d73a353a17c9b (diff) | |
download | freebsd-ports-gnome-f1f3929a6520c777f38cf49b3b61993c51ca864d.tar.gz freebsd-ports-gnome-f1f3929a6520c777f38cf49b3b61993c51ca864d.tar.zst freebsd-ports-gnome-f1f3929a6520c777f38cf49b3b61993c51ca864d.zip |
- Fix build in presence of FLTK (ignore FLTK, as it seems to be used in bundled libgfx functionality which is not used by fireflies itself)
- While here, make extract phase silent
PR: 166055
Submitted by: Edward Sanford Sutton III <mirror176@cox.net>
Approved by: maintainer timeout
Diffstat (limited to 'x11/fireflies')
-rw-r--r-- | x11/fireflies/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/x11/fireflies/Makefile b/x11/fireflies/Makefile index e9c9fb376993..79d1a7615266 100644 --- a/x11/fireflies/Makefile +++ b/x11/fireflies/Makefile @@ -29,6 +29,9 @@ MAKE_ARGS= CONFIGURE_ENV=${CONFIGURE_ENV:Q} \ CONFIGURE_ARGS=${CONFIGURE_ARGS:Q} post-extract: - (cd ${WRKSRC}; ${TAR} zxvpf libgfx-1.0.1.tar.gz) + @(cd ${WRKSRC}; ${TAR} zxpf libgfx-1.0.1.tar.gz) + +post-patch: + @${REINPLACE_CMD} -e 's|fltk|ignored-&|' ${WRKSRC}/libgfx/configure .include <bsd.port.mk> |