mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
- Added support to plataform amd64
PR: ports/145382 Submitted by: Vitaly Magerya <vmagerya@gmail.com> (maintainer) Approved by: itetcu (mentor, implicit)
This commit is contained in:
parent
301f823e18
commit
ad8b471882
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=252295
@ -15,7 +15,7 @@ DISTNAME= pcsv${PORTVERSION}-${CHEZ_MACHTYPE}
|
||||
MAINTAINER= vmagerya@gmail.com
|
||||
COMMENT= Free interpreter for Chez Scheme system
|
||||
|
||||
ONLY_FOR_ARCHS= i386
|
||||
ONLY_FOR_ARCHS= i386 amd64
|
||||
|
||||
NO_PACKAGE= user must accept license terms before installation
|
||||
|
||||
@ -27,11 +27,14 @@ OPTIONS= THREADS "Install threaded version" off
|
||||
|
||||
WRKSRC= ${WRKDIR}/csv${PORTVERSION}/custom
|
||||
HAS_CONFIGURE= yes
|
||||
USE_ICONV= yes
|
||||
CONFIGURE_ARGS= --installprefix=${PREFIX} \
|
||||
--installman=${MANPREFIX}/man \
|
||||
--force-relink \
|
||||
--nogzip-man-pages \
|
||||
-m=${CHEZ_MACHTYPE}
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LIBS="-L${LOCALBASE}/lib -liconv"
|
||||
|
||||
ALL_TARGET= build
|
||||
|
||||
@ -42,10 +45,14 @@ PLIST_SUB= CHEZ_VERSION="${PORTVERSION}" \
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if defined(WITH_THREADS)
|
||||
CHEZ_MACHTYPE= ti3fb
|
||||
.else
|
||||
.if ${ARCH} == "i386"
|
||||
CHEZ_MACHTYPE= i3fb
|
||||
.elif ${ARCH} == "amd64"
|
||||
CHEZ_MACHTYPE= a6fb
|
||||
.endif
|
||||
|
||||
.if defined(WITH_THREADS)
|
||||
CHEZ_MACHTYPE:= t${CHEZ_MACHTYPE}
|
||||
.endif
|
||||
|
||||
post-extract:
|
||||
|
@ -4,3 +4,9 @@ SIZE (pcsv8.0-i3fb.tar.gz) = 1267605
|
||||
MD5 (pcsv8.0-ti3fb.tar.gz) = 95c8d008fb6cab2b818fc0b5430eb56f
|
||||
SHA256 (pcsv8.0-ti3fb.tar.gz) = 70d980ce342ba0738f83717996d3f9666fed9c6da8c54264b80359ddaa64c73c
|
||||
SIZE (pcsv8.0-ti3fb.tar.gz) = 1293716
|
||||
MD5 (pcsv8.0-a6fb.tar.gz) = f032344517a7028eae6bf8dbf2b31522
|
||||
SHA256 (pcsv8.0-a6fb.tar.gz) = 33a03d9eae7d91738aebdb53e0d4f31aac610b11fef153e7e0eef607fa837989
|
||||
SIZE (pcsv8.0-a6fb.tar.gz) = 1269145
|
||||
MD5 (pcsv8.0-ta6fb.tar.gz) = c3f8831acea4212c04e504f57266e0b9
|
||||
SHA256 (pcsv8.0-ta6fb.tar.gz) = 7b1346ea4d9390729e5db53ce16c19a86dc899b475b69e90527f33d6b7be90bb
|
||||
SIZE (pcsv8.0-ta6fb.tar.gz) = 1296150
|
||||
|
@ -1,4 +1,5 @@
|
||||
bin/petite
|
||||
bin/scheme-script
|
||||
lib/csv%%CHEZ_VERSION%%/%%CHEZ_MACHTYPE%%/petite.boot
|
||||
lib/csv%%CHEZ_VERSION%%/%%CHEZ_MACHTYPE%%/scheme-script.boot
|
||||
lib/csv%%CHEZ_VERSION%%/%%CHEZ_MACHTYPE%%/scheme.h
|
||||
|
Loading…
Reference in New Issue
Block a user