- new option USE_GNUSTEP_MAKE=yes

for custom build and install targets
This commit is contained in:
Dirk Meyer 2006-09-28 19:15:53 +00:00
parent 5c0a5f2a2c
commit e2a471616b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=174051

View File

@ -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