blob: 3905fd55217bdc0e28632f96d26597552d0bdd6c (
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
42
43
44
45
|
# New ports collection makefile for: frantk
# Date created: 25 May 2002
# Whom: Oliver Braun <obraun@informatik.unibw-muenchen.de>
#
# $FreeBSD$
#
PORTNAME= frantk
PORTVERSION= 1.1
PORTREVISION= 4
CATEGORIES= x11-toolkits haskell
MASTER_SITES= http://www.dcs.gla.ac.uk/~meurig/FranTk/
PKGNAMEPREFIX= hs-
DISTNAME= FranTk${PORTVERSION:S/./_/}
MAINTAINER= haskell@FreeBSD.org
COMMENT= A GUI library for Haskell on top of Tcl-Tk
LIB_DEPENDS= tk84.1:${PORTSDIR}/x11-toolkits/tk84
.include <bsd.port.pre.mk>
.if ${ARCH} == "amd64"
CFLAGS+= -fPIC
.endif
USE_GMAKE= yes
WRKSRC= ${WRKDIR}/FranTk1.1/src
ALL_TARGET= hugs
INSTALL_TARGET= install_hugs
PLIST_SUB+= HUGS=""
PLIST_SUB+= GHC="@comment "
post-patch:
@${REINPLACE_CMD} "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/frantk.conf
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${CP} ${WRKDIR}/FranTk1.1/doc/frantk.pdf ${DOCSDIR}
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|