mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
06f79b66f2
Simplify gnustep ports Hook into the regular ports framework: - LIB_DEPENDS for library dependencies - Use regular USE_LDCONFIG Reuse USES=objc (automatic) USE_GNUSTEP is now a macro to set the dependencies and build feature needed. Accepted arguments: back base build gui Merge deskutils/preferencepanes into deskutils/systempreferences
29 lines
613 B
Makefile
29 lines
613 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= nextgo
|
|
PORTVERSION= 3.0
|
|
PORTREVISION= 4
|
|
CATEGORIES= games gnustep
|
|
MASTER_SITES= SAVANNAH/gap
|
|
DISTNAME= NeXTGo-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Classic Go game for OPENSTEP/GNUstep
|
|
|
|
LICENSE= GPLv1
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= gnustep
|
|
USE_GNUSTEP= back build
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \
|
|
${WRKSRC}/GNUmakefile
|
|
${REINPLACE_CMD} -e 's|PSWait|myPSWait|' \
|
|
${WRKSRC}/Board.m
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/Local/Applications/NeXTGo.app/NeXTGo
|
|
|
|
.include <bsd.port.mk>
|