9f3df9cead
Upstream changes: This is a maintenance release, source code is unchanged compare to the previous release. This release introduces a guile-lib-1.0.pc, so libs and apps that needs guile-lib may now use pkgconfig to check if it's available, what version. Note that starting with this release, the installation location for modules and compiled files has changed: make sure you uninstall any previous version. - Modules installation location changed: from $(prefix)/share/guile/site to $(GUILE_GLOBAL_SITE) You will need write privileges to this directory to install guile-lib. You may check its location using the folowing command: guile -c "(display (%global-site-dir)) (newline)" - Compiled files installation location changed: from $(prefix)/share/guile/site to $(GUILE_SITE_CCACHE) You will need write privileges to this directory to install guile-lib. You may check its location using the folowing command: guile -c "(display (%site-ccache-dir)) (newline)"
42 lines
1.5 KiB
Makefile
42 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.26 2016/09/20 00:37:37 gdt Exp $
|
|
|
|
DISTNAME= guile-lib-0.2.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://download.savannah.gnu.org/releases/guile-lib/
|
|
# http://download.gna.org/guile-lib/
|
|
|
|
MAINTAINER= gdt@NetBSD.org
|
|
HOMEPAGE= http://www.nongnu.org/guile-lib/
|
|
COMMENT= Library functions for Guile, implemented in Scheme
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_TOOLS+= gmake makeinfo pkg-config
|
|
TEXINFO_REQD= 4.2
|
|
INFO_FILES= yes
|
|
TEST_TARGET= check
|
|
|
|
# guile-lib uses the install(1) feature that missing intermediate
|
|
# directories are created automatically, which e.g. NetBSD's doesn't
|
|
# support, so we have to precreate the directories
|
|
INSTALLATION_DIRS+= share/guile/site/config
|
|
INSTALLATION_DIRS+= share/guile/site/container
|
|
INSTALLATION_DIRS+= share/guile/site/debugging
|
|
INSTALLATION_DIRS+= share/guile/site/graph
|
|
INSTALLATION_DIRS+= share/guile/site/io
|
|
INSTALLATION_DIRS+= share/guile/site/logging
|
|
INSTALLATION_DIRS+= share/guile/site/math
|
|
INSTALLATION_DIRS+= share/guile/site/os
|
|
INSTALLATION_DIRS+= share/guile/site/scheme
|
|
INSTALLATION_DIRS+= share/guile/site/search
|
|
INSTALLATION_DIRS+= share/guile/site/srfi
|
|
INSTALLATION_DIRS+= share/guile/site/string
|
|
INSTALLATION_DIRS+= share/guile/site/sxml
|
|
INSTALLATION_DIRS+= share/guile/site/sxml/ssax
|
|
INSTALLATION_DIRS+= share/guile/site/sxml/upstream
|
|
INSTALLATION_DIRS+= share/guile/site/term
|
|
INSTALLATION_DIRS+= share/guile/site/texinfo
|
|
INSTALLATION_DIRS+= share/guile/site/text
|
|
|
|
.include "../../lang/guile20/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|