diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2006-09-29 03:15:53 +0800 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2006-09-29 03:15:53 +0800 |
commit | e2a471616b03bb5da6607af7d59b1850286aaae0 (patch) | |
tree | 368aa0cda76a9c53d1708d802da0784364ff478f /Mk | |
parent | 5c0a5f2a2c01b66ccf4983e22366b69fb7565bb7 (diff) | |
download | freebsd-ports-gnome-e2a471616b03bb5da6607af7d59b1850286aaae0.tar.gz freebsd-ports-gnome-e2a471616b03bb5da6607af7d59b1850286aaae0.tar.zst freebsd-ports-gnome-e2a471616b03bb5da6607af7d59b1850286aaae0.zip |
- new option USE_GNUSTEP_MAKE=yes
for custom build and install targets
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.gnustep.mk | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Mk/bsd.gnustep.mk b/Mk/bsd.gnustep.mk index 955305260931..cefa9cd8e27a 100644 --- a/Mk/bsd.gnustep.mk +++ b/Mk/bsd.gnustep.mk @@ -63,6 +63,9 @@ # USE_GNUSTEP_INSTALL=yes # call install target with GNUstep.sh sourced in the current shell # +# USE_GNUSTEP_MAKE=yes +# require GNUstep.sh for build and install +# # USE_GNUSTEP_SYSTEM_LIBS= Renaissance:x11-toolkits/renaissance # depends on a shared lib in System directrory # @@ -86,10 +89,10 @@ RUN_DEPENDS+= ${COMBOLIBDIR}/libobjc.so:${PORTSDIR}/${GNUSTEP_OBJC_PORT} .endif .endif -.if defined(USE_GNUSTEP_BUILD) +.if defined(USE_GNUSTEP_BUILD) || defined(USE_GNUSTEP_MAKE) BUILD_DEPENDS+= ${SYSMAKEDIR}/GNUstep.sh:${PORTSDIR}/${GNUSTEP_MAKE_PORT} .endif -.if defined(USE_GNUSTEP_INSTALL) +.if defined(USE_GNUSTEP_INSTALL) || defined(USE_GNUSTEP_MAKE) RUN_DEPENDS+= ${SYSMAKEDIR}/GNUstep.sh:${PORTSDIR}/${GNUSTEP_MAKE_PORT} .endif |