792529759b
* List the info files directly in the PLIST.
38 lines
1 KiB
Makefile
38 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2006/03/30 03:44:43 jlam Exp $
|
|
|
|
DISTNAME= guile-lib-0.1.2
|
|
PKGREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://download.gna.org/guile-lib/
|
|
|
|
MAINTAINER= gdt@NetBSD.org
|
|
HOMEPAGE= http://home.gna.org/guile-lib/
|
|
COMMENT= Library functions for Guile, implemented in Scheme
|
|
|
|
# This package may not be built from the src directory (arch configure
|
|
# rules). The build directory must be created by hand; see the
|
|
# pre-configure target.
|
|
#
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_DIRS= ${WRKSRC}/build
|
|
BUILD_DIRS= ${WRKSRC}/build
|
|
CONFIGURE_SCRIPT= ../src/configure
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX:Q}
|
|
CONFIGURE_ARGS+= --with-pkginfodir=${PKGINFODIR:Q}
|
|
|
|
USE_TOOLS+= gmake makeinfo
|
|
TEXINFO_REQD= 4.2
|
|
INFO_FILES= # PLIST
|
|
TEST_TARGET= test
|
|
|
|
.include "../../lang/guile/buildlink3.mk"
|
|
|
|
pre-configure:
|
|
${MKDIR} ${WRKSRC}/build
|
|
.for FILE in config.guess config.sub
|
|
${RM} ${WRKSRC}/src/build-tools/gnu/${FILE}
|
|
${LN} -s ${PKGSRCDIR}/mk/gnu-config/${FILE} \
|
|
${WRKSRC}/src/build-tools/gnu/${FILE}
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|