1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-13 03:03:15 +00:00
freebsd-ports/lang/forth/Makefile
Ade Lovett 3f651573ad Whoa there, boy, that's a mighty big commit y'all have there...
Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".

For ports-in-waiting:

	USE_LIBTOOL=YES		->	USE_LIBTOOL_VER=13
	USE_AUTOCONF=YES	->	USE_AUTOCONF_VER=213
	USE_AUTOMAKE=YES	->	USE_AUTOMAKE_VER=14

Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
2004-03-14 06:17:56 +00:00

41 lines
838 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= patrick@FreeBSD.org
COMMENT= Implementation of ANSI Forth
WRKSRC= ${WRKDIR}/${DISTNAME}/src
USE_BZIP2= yes
USE_GMAKE= yes
USE_LIBTOOL_VER=13
CONFIGURE_ARGS= --disable-float
MAN1= pfe.1
.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>