blob: 0796a243388e6b2715ed25059d24da2eb167d190 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# New ports collection makefile for: Skribe
# Date created: 19 December 2003
# Whom: Kimura Fuyuki <fuyuki@nigredo.org>
#
# $FreeBSD$
#
PORTNAME= skribe
PORTVERSION= 1.0a
PORTREVISION= 2
CATEGORIES= textproc
MASTER_SITES= ftp://ftp-sop.inria.fr/mimosa/fp/Skribe/
DISTNAME= ${PORTNAME}${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= A highly programmable document processing system
BUILD_DEPENDS= bigloo:${PORTSDIR}/lang/bigloo
RUN_DEPENDS= ${BUILD_DEPENDS}
HAS_CONFIGURE= yes
CONFIGURE_ARGS= --with-bigloo --prefix=${PREFIX} --docdir=${DOCSDIR}
USE_GMAKE= yes
PLIST_SUB= VERSION="${PORTVERSION}"
post-patch:
${REINPLACE_CMD} -e 's|^function ||' ${WRKSRC}/etc/skribe-config.in
${REINPLACE_CMD} -e 's|$$prefix/doc/skribe-$$release|${DOCSDIR}|' \
${WRKSRC}/configure
${REINPLACE_CMD} -e 's|.*prcs.*|beta=|' ${WRKSRC}/etc/bigloo/configure
.if defined(NOPORTDOCS)
${REINPLACE_CMD} -e 's/= doc/=/' ${WRKSRC}/Makefile
.endif
post-build:
${CHMOD} a+r ${WRKSRC}/doc/html/img/*.gif
post-install:
${TOUCH} ${DATADIR}/extensions/.keep_me
.include <bsd.port.mk>
|