9637f7852e
pkglint -r --network --only "migrate" As a side-effect of migrating the homepages, pkglint also fixed a few indentations in unrelated lines. These and the new homepages have been checked manually.
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.74 2020/01/26 17:31:27 rillig Exp $
|
|
#
|
|
|
|
DISTNAME= Gauche-0.9.6
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gauche/}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= enami@NetBSD.org
|
|
HOMEPAGE= https://practical-scheme.net/gauche/
|
|
COMMENT= R7RS Scheme implementation aimed to be a handy tool for daily works
|
|
LICENSE= modified-bsd # see work/${DISTNAME}/COPYING
|
|
|
|
DEPENDS+= slib-[0-9]*:../../devel/slib
|
|
|
|
.include "options.mk"
|
|
|
|
MAKE_JOBS_SAFE= no
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-slib=${LOCALBASE}/share/slib
|
|
CONFIGURE_ARGS+= --enable-threads=pthreads
|
|
CONFIGURE_ARGS+= --with-iconv=${BUILDLINK_PREFIX.iconv}
|
|
CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib}
|
|
|
|
USE_LANGUAGES= c c99
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= gmake gzip makeinfo
|
|
TEST_TARGET= check
|
|
INFO_FILES= yes
|
|
|
|
# refer %install in ${WRKSRC}/Gauche.spec
|
|
INSTALL_TARGET= install-pkg install-doc
|
|
|
|
# Does relink internally
|
|
BUILDLINK_PASSTHRU_RPATHDIRS+= ${WRKSRC}
|
|
|
|
.include "../../mk/dlopen.buildlink3.mk"
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
|
|
post-install:
|
|
gzip -d ${DESTDIR}${PREFIX}/${PKGINFODIR}/gauche-ref*gz
|
|
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|