mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-15 07:56:36 +00:00
1b01573f84
PR: 225560 Submitted by: Yasuhiro KIMURA <yasu@utahime@org> Reviewed by: cpm Approved by: portmgr (antoine)
62 lines
1.4 KiB
Makefile
62 lines
1.4 KiB
Makefile
# Created by: Muhammad Moinur Rahman <5u623l20@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= guile
|
|
PORTVERSION= 2.0.14
|
|
PORTREVISION= 3
|
|
CATEGORIES= lang scheme
|
|
MASTER_SITES= GNU
|
|
PKGNAMESUFFIX= 2
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= GNU Ubiquitous Intelligent Language for Extension
|
|
|
|
LICENSE= LGPL21
|
|
|
|
LIB_DEPENDS= libgmp.so:math/gmp \
|
|
libltdl.so:devel/libltdl \
|
|
libunistring.so:devel/libunistring \
|
|
libffi.so:devel/libffi
|
|
|
|
CONFLICTS_INSTALL= guile-[0-9]*
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
USES= charsetfix gmake libtool makeinfo ncurses pathfix pkgconfig \
|
|
readline
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
|
|
INFO= guile r5rs
|
|
|
|
PLIST_SUB= GUILE_VER=${PORTVERSION:R}
|
|
|
|
OPTIONS_DEFINE= NLS THREADS
|
|
OPTIONS_DEFAULT=THREADS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
NLS_USES= gettext
|
|
|
|
THREADS_CONFIGURE_WITH= threads
|
|
THREADS_LIB_DEPENDS= libgc-threaded.so:devel/boehm-gc-threaded
|
|
THREADS_LIB_DEPENDS_OFF= libgc.so:devel/boehm-gc
|
|
|
|
REINPLACE_FILES= libguile/smob.c libguile/filesys.c libguile/gc.c \
|
|
libguile/mallocs.c libguile/eval.c \
|
|
libguile/gc-malloc.c libguile/ports.c
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC} ; \
|
|
${REINPLACE_CMD} -e 's|<malloc\.h>|<stdlib.h>|g' ${REINPLACE_FILES}
|
|
@${REINPLACE_CMD} -e 's|sys/time.h sys/timeb.h|sys/time.h |g' \
|
|
${WRKSRC}/configure
|
|
|
|
post-patch-THREADS-on:
|
|
@${REINPLACE_CMD} -e 's|bdw-gc|bdw-gc-threaded|g' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|