Lines 1-44
Link Here
|
1 |
# New ports collection makefile for: pfe |
|
|
2 |
# Date created: 23 November 1994 |
3 |
# Whom: mr |
4 |
# |
5 |
# $FreeBSD: ports/lang/forth/Makefile,v 1.26 2006/02/23 10:37:39 ade Exp $ |
6 |
# |
7 |
|
8 |
PORTNAME= pfe |
9 |
PORTVERSION= 0.29.1 |
10 |
PORTREVISION= 1 |
11 |
CATEGORIES= lang |
12 |
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} |
13 |
MASTER_SITE_SUBDIR= ${PORTNAME} |
14 |
|
15 |
MAINTAINER= andrew.nau.ua@gmail.com |
16 |
COMMENT= Implementation of ANSI Forth |
17 |
|
18 |
WRKSRC= ${WRKDIR}/${DISTNAME}/src |
19 |
|
20 |
USE_BZIP2= yes |
21 |
USE_GMAKE= yes |
22 |
MAKE_ARGS= OPTIM="${CFLAGS}" |
23 |
GNU_CONFIGURE= yes |
24 |
CONFIGURE_ARGS= --disable-float |
25 |
|
26 |
MAN1= pfe.1 |
27 |
PLIST_FILES= bin/pfe lib/pfe/p4ed.so |
28 |
PLIST_DIRS= lib/pfe |
29 |
PORTDOCS= * |
30 |
|
31 |
.include <bsd.port.pre.mk> |
32 |
|
33 |
.if ${ARCH} != "i386" && ${ARCH} != "sparc64" |
34 |
BROKEN= "Does not compile on !i386 and !sparc64" |
35 |
.endif |
36 |
|
37 |
post-install: |
38 |
${INSTALL_MAN} ${WRKSRC}/../doc/pfe.1 ${PREFIX}/man/man1 |
39 |
.if !defined(NOPORTDOCS) |
40 |
@${MKDIR} ${PREFIX}/share/doc/pfe |
41 |
${INSTALL_DATA} ${WRKSRC}/../doc/*.html ${PREFIX}/share/doc/pfe |
42 |
.endif |
43 |
|
44 |
.include <bsd.port.post.mk> |