pkgsrc/lang/guile22/Makefile
maya 1cdccf2765 guile22: restore logic for different PLIST for Darwin.
(Dropping FreeBSD version rather than blindly guessing which number it is,
if it's different we might hear a report of it.)

Fixes report by Louis Guillaume on tech-pkg.
2019-11-10 17:49:21 +00:00

88 lines
2.7 KiB
Makefile

# $NetBSD: Makefile,v 1.15 2019/11/10 17:49:21 maya Exp $
DISTNAME= guile-2.2.6
PKGNAME= ${DISTNAME:S/guile/guile22/}
PKGREVISION= 2
CATEGORIES= lang
MASTER_SITES= ftp://ftp.gnu.org/gnu/guile/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://www.gnu.org/software/guile/
COMMENT= Official extension language for the GNU operating system
LICENSE= gnu-lgpl-v3
# Currently, 2.0 is primary.
GUILE_SUBDIR= guile/2.2
#GUILE_SUBDIR= # empty
# guile does not like the --build and --host triplets on NetBSD
HAS_CONFIGURE= yes
CONFIGURE_ARGS+= --disable-shared
# not until boehm-gc is threaded
CONFIGURE_ARGS+= --without-threads
CONFIGURE_ARGS+= SHELL=${CONFIG_SHELL}
.if !empty(GUILE_SUBDIR)
# Installation prefix is non-default.
GUILE_PREFIX= ${PREFIX}/${GUILE_SUBDIR}
CONFIGURE_ARGS+= --prefix=${GUILE_PREFIX:Q}
CONFIGURE_ARGS+= --infodir=${GUILE_PREFIX:Q}/info
CONFIGURE_ARGS+= --mandir=${GUILE_PREFIX:Q}/man
BUILDLINK_PASSTHRU_DIRS+= ${GUILE_PREFIX}
LDFLAGS+= ${COMPILER_RPATH_FLAG}${GUILE_PREFIX}/lib
.else
CONFIGURE_ARGS+= --prefix=${PREFIX}
CONFIGURE_ARGS+= --infodir=${PREFIX}/${PKGINFODIR}
CONFIGURE_ARGS+= --mandir=${PREFIX}/${PKGMANDIR}
.endif
INFO_FILES= yes
USE_LIBTOOL= yes
USE_TOOLS+= gmake pkg-config
USE_TOOLS.Darwin+= gsed
PKGCONFIG_OVERRIDE+= meta/guile-2.2.pc.in
# known broken: test-loose-ends on NetBSD/current
# https://debbugs.gnu.org/cgi/bugreport.cgi?bug=24003
TEST_TARGET= check
SUBST_CLASSES+= tools
SUBST_SED.tools+= -e "s,\\((define %pkg-config-program .\\).*\\(.)\\),\\1${PREFIX}/bin/pkg-config\\2,"
SUBST_STAGE.tools= post-build
SUBST_FILES.tools+= meta/guile-config
SUBST_MESSAGE.tools= Fixing path to pkg-config in installed file.
# XXX: less tests would fail if we made libunistring use GNU iconv too
#USE_GNU_ICONV= yes
OPSYSVARS+= GUILE_LIBNAME
GUILE_LIBNAME.Darwin= a
GUILE_LIBNAME.*= so.1.4.1
PLIST_SUBST+= GUILE_LIBNAME=${GUILE_LIBNAME}
PRINT_PLIST_AWK+= {gsub(/${GUILE_LIBNAME}/, "$${GUILE_LIBNAME}");}
.include "../../mk/bsd.prefs.mk"
# If not Darwin, an extra charset.alias file is installed
PLIST_VARS+= charset
.if ${OPSYS} != "Darwin"
PLIST.charset= yes
.endif
# https://debbugs.gnu.org/cgi/bugreport.cgi?bug=24002
post-configure:
${ECHO} '#define FLEXIBLE_ARRAY_MEMBER /**/' >> ${WRKSRC}/config.h
.include "../../devel/gmp/buildlink3.mk"
.include "../../converters/libiconv/buildlink3.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../devel/libltdl/buildlink3.mk"
.include "../../textproc/libunistring/buildlink3.mk"
# needs a particular bug fix on NetBSD
BUILDLINK_API_DEPENDS.boehm-gc+= boehm-gc>=7.4.2nb1
.include "../../devel/boehm-gc/buildlink3.mk"
.include "../../devel/libffi/buildlink3.mk"
.include "../../devel/readline/buildlink3.mk"
#.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"