diff options
author | bland <bland@FreeBSD.org> | 2004-07-08 22:42:03 +0800 |
---|---|---|
committer | bland <bland@FreeBSD.org> | 2004-07-08 22:42:03 +0800 |
commit | fa7458864b338ce19dbfc9cc7eeec1abe55a1f23 (patch) | |
tree | db32a9fbf7bbcb4de567213200b68a5988860868 /x11-toolkits | |
parent | 83a074f99b1630d0894dceb8301bebfbb2a8599c (diff) | |
download | freebsd-ports-gnome-fa7458864b338ce19dbfc9cc7eeec1abe55a1f23.tar.gz freebsd-ports-gnome-fa7458864b338ce19dbfc9cc7eeec1abe55a1f23.tar.zst freebsd-ports-gnome-fa7458864b338ce19dbfc9cc7eeec1abe55a1f23.zip |
- Fix examples build trigger.
- Axe yet more build but not install stuff.
Diffstat (limited to 'x11-toolkits')
-rw-r--r-- | x11-toolkits/gtkmm24/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/x11-toolkits/gtkmm24/Makefile b/x11-toolkits/gtkmm24/Makefile index 8152579b98e0..71002b7abf60 100644 --- a/x11-toolkits/gtkmm24/Makefile +++ b/x11-toolkits/gtkmm24/Makefile @@ -36,20 +36,20 @@ CONFIGURE_ARGS= --enable-static=yes \ PLIST_SUB= VERSION="2.4" API_VERSION="2.4" .if defined(WITH_EXAMPLES) +CONFIGURE_ARGS+=--enable-examples PLIST_SUB+= EXAMPLES="" .else +CONFIGURE_ARGS+=--disable-examples PLIST_SUB+= EXAMPLES="@comment " .endif post-patch: @${REINPLACE_CMD} -e '/^SUBDIRS =/s/tests//' \ + -e '/^SUBDIRS =/s/demos//' \ ${WRKSRC}/Makefile.in -.if !defined(WITH_EXAMPLES) - @${REINPLACE_CMD} -e '/^SUBDIRS =/s/examples//' \ - ${WRKSRC}/Makefile.in -.endif .if defined(NOPORTDOCS) - @${REINPLACE_CMD} -e 's/^SUBDIRS = /docs//' ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e '/^SUBDIRS =/s/docs//' \ + ${WRKSRC}/Makefile.in .endif .include <bsd.port.mk> |