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
34 lines
717 B
Makefile
34 lines
717 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= gworkspace
|
|
PORTVERSION= 0.9.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= deskutils gnustep
|
|
#MASTER_SITES= http://www.gnustep.it/enrico/gworkspace/
|
|
MASTER_SITES= ${MASTER_SITE_GNUSTEP}
|
|
MASTER_SITE_SUBDIR= usr-apps
|
|
|
|
MAINTAINER= theraven@FreeBSD.org
|
|
COMMENT= GNUstep workspace manager
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= gnustep
|
|
USE_GNUSTEP= back build
|
|
USE_LDCONFIG= ${GNUSTEP_SYSTEM_LIBRARIES}
|
|
|
|
GNU_CONFIGURE= yes
|
|
ADDITIONAL_LDFLAGS+= -L${WRKSRC}/FSNode/FSNode.framework/Versions/A
|
|
MAKE_ENV+= GNUSTEP_INSTALLATION_DOMAIN=SYSTEM
|
|
|
|
.if defined(WITHOUT_GHOSTSCRIPT)
|
|
PLIST_SUB+= PDFVIEW="@comment "
|
|
.else
|
|
PLIST_SUB+= PDFVIEW=""
|
|
USE_GHOSTSCRIPT= yes
|
|
.endif
|
|
|
|
pre-configure:
|
|
${RM} -rf ${WRKSRC}/GWMetadata
|
|
|
|
.include <bsd.port.mk>
|