090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
31 lines
870 B
Makefile
31 lines
870 B
Makefile
# New ports collection makefile for: SLIB for Guile
|
|
# Date created: 3 November 2003
|
|
# Whom: Kimura Fuyuki <fuyuki@nigredo.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/lang/slib-guile/Makefile,v 1.3 2006/10/13 02:32:48 marcus Exp $
|
|
|
|
PORTNAME= slib
|
|
PORTVERSION= 3a4 # Keep this in sync with lang/slib
|
|
PORTREVISION= 2
|
|
CATEGORIES= lang scheme
|
|
MASTER_SITES= # empty
|
|
PKGNAMESUFFIX= -guile
|
|
DISTFILES= # empty
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= SLIB installation for Guile
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/share/slib/require.scm:${PORTSDIR}/lang/slib \
|
|
guile:${PORTSDIR}/lang/guile
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
${LN} -shf ${PREFIX}/share/slib ${LOCALBASE}/share/guile/1.8/slib
|
|
cd ${PREFIX}/share/guile/1.8/slib && \
|
|
${LOCALBASE}/bin/guile -q -l guile.init -c \
|
|
"(require 'new-catalog)"
|
|
|
|
.include <bsd.port.mk>
|