mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
45 lines
947 B
Makefile
45 lines
947 B
Makefile
# New ports collection makefile for: pfe
|
|
# Date created: 23 November 1994
|
|
# Whom: mr
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pfe
|
|
PORTVERSION= 0.29.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= andrew.nau.ua@gmail.com
|
|
COMMENT= Implementation of ANSI Forth
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
MAKE_ARGS= OPTIM="${CFLAGS}"
|
|
USE_AUTOTOOLS= libtool:13
|
|
CONFIGURE_ARGS= --disable-float
|
|
|
|
MAN1= pfe.1
|
|
PLIST_FILES= bin/pfe lib/pfe/p4ed.so
|
|
PLIST_DIRS= lib/pfe
|
|
PORTDOCS= *
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} != "i386" && ${ARCH} != "sparc64"
|
|
BROKEN= "Does not compile on !i386 and !sparc64"
|
|
.endif
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/../doc/pfe.1 ${PREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/pfe
|
|
${INSTALL_DATA} ${WRKSRC}/../doc/*.html ${PREFIX}/share/doc/pfe
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|