mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +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
30 lines
688 B
Makefile
30 lines
688 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= appwrapper
|
|
PORTVERSION= 0.1
|
|
PORTREVISION= 5
|
|
CATEGORIES= deskutils gnustep
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/AppWrapper%20${PORTVERSION}
|
|
DISTNAME= AppWrapper.${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GNUstep application wrapper
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= gnustep
|
|
USE_GNUSTEP= back build
|
|
|
|
WRKSRC= ${WRKDIR}/AppWrapper
|
|
|
|
post-patch:
|
|
${RMDIR} ${WRKSRC}/AppWrapper.app/ix86/linux-gnu
|
|
${RMDIR} ${WRKSRC}/AppWrapper.app/ix86
|
|
${REINPLACE_CMD} 's|^GNUSTEP_INSTALLATION_DIR|#GNUSTEP_INSTALLATION_DIR|' \
|
|
${WRKSRC}/GNUmakefile
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/Local/Applications/AppWrapper.app/AppWrapper
|
|
|
|
.include <bsd.port.mk>
|