9156bf1b9e
Some ports were already installing in the System domain, for these just remove the Makefile lines explicitly specifying the install domain. The rest are installed in the Local domain, remove any overrides, update their pkg-plists and any explicit paths in the Makefiles and then bump port revision. Approved by: bapt (mentor) Differential Revision: https://reviews.freebsd.org/D2977
32 lines
731 B
Makefile
32 lines
731 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= gscheme
|
|
PORTVERSION= 0.6
|
|
PORTREVISION= 4
|
|
CATEGORIES= lang gnustep
|
|
MASTER_SITES= http://www.gnustep.it/marko/GScheme/ \
|
|
LOCAL/dinoex
|
|
DISTNAME= GScheme
|
|
EXTRACT_SUFX= .tgz
|
|
DIST_SUBDIR= repacked
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GNUstep-aware scheme interpreter
|
|
|
|
LICENSE= GPLv2 # or later
|
|
|
|
USES= gnustep
|
|
USE_GNUSTEP= back build
|
|
|
|
post-extract:
|
|
@${CHMOD} -R u+w ${WRKSRC}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|setMark:|setMarkScheme:|' \
|
|
${WRKSRC}/SchemeTypes.h ${WRKSRC}/SchemeTypes.m
|
|
|
|
post-install:
|
|
${RM} -f ${STAGEDIR}${GNUSTEP_PREFIX}/System/Applications/GScheme.app/Resources/library.scm~
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/GScheme.app/GScheme
|
|
|
|
.include <bsd.port.mk>
|