mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-30 01:15:52 +00:00
568bba2e9d
PR: 220905 Submitted by: Jov <amutu@amutu.com> (maintainer) Reviewed by: matthew (mentor) Approved by: matthew (mentor) Differential Revision: https://reviews.freebsd.org/D11763
42 lines
826 B
Makefile
42 lines
826 B
Makefile
# Created by: erik@smluc.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qscheme
|
|
PORTVERSION= 0.5.1
|
|
PORTREVISION= 10
|
|
CATEGORIES= lang scheme
|
|
MASTER_SITES= http://www.sof.ch/dan/qscheme/files/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Small and fast Scheme interpreter
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libavcall.so:devel/libffcall \
|
|
libgmp.so:math/gmp \
|
|
libpcre.so:devel/pcre
|
|
|
|
USES= gmake localbase perl5 shebangfix
|
|
USE_PERL5= build
|
|
SHEBANG_FILES= mkoptable
|
|
GNU_CONFIGURE= yes
|
|
|
|
CFLAGS+= -fPIC
|
|
MAKE_ARGS= PCRE_LIB="-L${LOCALBASE}/lib -lpcre"
|
|
|
|
PLIST_SUB= VERSION="${PORTVERSION}"
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|-lpthread|-pthread| ; \
|
|
/SCM_DEFAULT_LIB_PATH/s|$$datadir|$$prefix/lib|' \
|
|
${WRKSRC}/configure
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/qscheme/*/*.so
|
|
|
|
.include <bsd.port.mk>
|