2013-09-20 21:53:09 +02:00
|
|
|
# Created by: Vitaly Magerya <vmagerya@gmail.com>
|
2008-08-05 17:19:14 +02:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= ypsilon
|
2008-12-28 12:47:50 +01:00
|
|
|
PORTVERSION= 0.9.6.3
|
Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.
PR: 231590
2018-12-12 02:35:33 +01:00
|
|
|
PORTREVISION= 10
|
2008-08-05 17:19:14 +02:00
|
|
|
CATEGORIES= lang scheme
|
|
|
|
|
|
|
|
MAINTAINER= vmagerya@gmail.com
|
|
|
|
COMMENT= Scheme implementation for real-time applications
|
|
|
|
|
2016-09-15 13:36:56 +02:00
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
LICENSE_FILE= ${WRKSRC}/license.txt
|
|
|
|
|
|
|
|
USE_GITHUB= yes
|
|
|
|
GH_TUPLE= fujita-y:ypsilon:0.9.6-update3
|
2016-09-14 17:59:34 +02:00
|
|
|
|
2014-02-27 16:29:35 +01:00
|
|
|
USES= gmake
|
2016-09-15 13:36:56 +02:00
|
|
|
USE_GCC= yes
|
2018-05-29 10:34:21 +02:00
|
|
|
TEST_TARGET= check # XXX: tests fail
|
2014-02-27 16:29:35 +01:00
|
|
|
|
2015-03-25 13:58:33 +01:00
|
|
|
MAKE_ARGS= DATADIR="${DATADIR}"
|
2008-08-05 17:19:14 +02:00
|
|
|
|
2008-12-28 12:47:50 +01:00
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
2008-08-05 17:19:14 +02:00
|
|
|
|
2014-02-27 16:29:35 +01:00
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
2008-08-05 17:19:14 +02:00
|
|
|
|
2014-06-10 23:48:33 +02:00
|
|
|
post-patch:
|
2018-05-29 10:34:21 +02:00
|
|
|
@${REINPLACE_CMD} 's/-fno-[a-z-]*//g' ${WRKSRC}/Makefile
|
2014-06-10 23:48:33 +02:00
|
|
|
|
2008-08-05 17:19:14 +02:00
|
|
|
do-install:
|
2014-02-27 16:29:35 +01:00
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
|
|
(cd ${WRKSRC}/ && ${COPYTREE_SHARE} "sitelib stdlib" ${STAGEDIR}${DATADIR})
|
2018-05-29 10:34:21 +02:00
|
|
|
|
|
|
|
do-install-EXAMPLES-on:
|
2014-02-27 16:29:35 +01:00
|
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/example/*.scm ${STAGEDIR}${EXAMPLESDIR}
|
2008-08-05 17:19:14 +02:00
|
|
|
|
2014-02-27 16:29:35 +01:00
|
|
|
.include <bsd.port.mk>
|