diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2024-02-16 19:17:44 +0100 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2024-02-16 19:27:21 +0100 |
commit | 332f25374ef9a43df85e7fccb8ebb61b3b8208ae (patch) | |
tree | 4630f13b079d1aff359433404dced0542f142784 /lang | |
parent | f2b003b960d787a2a3add83301c8ff9efbfe9db5 (diff) | |
download | freebsd-ports-332f25374ef9a43df85e7fccb8ebb61b3b8208ae.zip |
lang/chez-scheme: enable on powerpc
Diffstat (limited to 'lang')
-rw-r--r-- | lang/chez-scheme/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/chez-scheme/Makefile b/lang/chez-scheme/Makefile index ba9d2100f274..19325b1a7edd 100644 --- a/lang/chez-scheme/Makefile +++ b/lang/chez-scheme/Makefile @@ -12,7 +12,7 @@ WWW= https://cisco.github.io/ChezScheme LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -ONLY_FOR_ARCHS= amd64 i386 aarch64 armv7 +ONLY_FOR_ARCHS= amd64 i386 aarch64 armv7 powerpc LIB_DEPENDS= libuuid.so:misc/e2fsprogs-libuuid \ libossp-uuid.so:misc/ossp-uuid @@ -52,6 +52,8 @@ CHEZ_ARCH= ti3fb CHEZ_ARCH= tarm64fb .elif (${ARCH} == "armv7") CHEZ_ARCH= tarm32fb +.elif (${ARCH} == "powerpc") +CHEZ_ARCH= tppc32fb .endif .if defined(NCURSES_RPATH) |