422bce3414
my ports in the past 3 weeks while ports were broken on any 10.x machines, which means I'm unable to maintain them. So let people know that there's no available support for them until things are back to normal (which also means that anyone with spare time will be able to fix them without getting approval).
49 lines
1.3 KiB
Makefile
49 lines
1.3 KiB
Makefile
# New ports collection makefile for: rscheme
|
|
# Date created: 31 July 2001
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rscheme
|
|
PORTVERSION= 0.7.3.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang scheme
|
|
MASTER_SITES= http://www.rscheme.org/rs/b/${PORTVERSION}/32/
|
|
DISTNAME= rs-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= An object-oriented, extended version of the Scheme dialect of Lisp
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${WRKDIR}/build ${CONFIGURE_TARGET}
|
|
MAKE_ENV= REAL_PREFIX=${PREFIX}
|
|
|
|
BOOTSTRAP_DIR= ${WRKDIR}/${DISTNAME}
|
|
BOOTSTRAP_TARGET= stage1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} != "i386"
|
|
BROKEN= fails to install on ${ARCH}
|
|
.endif
|
|
|
|
post-extract:
|
|
@${MKDIR} ${WRKSRC} ${WRKDIR}/build
|
|
|
|
pre-configure:
|
|
@${RM} -rf ${WRKSRC}
|
|
@(cd ${BOOTSTRAP_DIR}; ${SETENV} ${MAKE_ENV} ${CONFIGURE_ENV} ${MAKE} \
|
|
${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${BOOTSTRAP_TARGET})
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/build/bin/rs ${PREFIX}/bin/rs
|
|
(cd ${WRKDIR}/build && ${TAR} -c -f - include/rscheme* lib/librs.a) \
|
|
| (cd ${PREFIX} && ${TAR} --unlink -x -f -)
|
|
${MKDIR} ${DATADIR}
|
|
(cd ${WRKDIR}/build && ${TAR} -c -f - resource) \
|
|
| (cd ${DATADIR} && ${TAR} --unlink -x -f -)
|
|
|
|
.include <bsd.port.post.mk>
|