mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
74fd89ef1e
- maketemp now creates an empty file with the given name, instead of merely returning the name of a nonexistent file. This closes a security hole. - minor fixes, port passes all checks - use INFO-macro - strip cruft from pkg-descr; add WWW: - pet portlint
34 lines
626 B
Makefile
34 lines
626 B
Makefile
# New ports collection makefile for: m4
|
|
# Date created: 25 October 1994
|
|
# Whom: mr
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= m4
|
|
PORTVERSION= 1.4.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= m4
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GNU m4
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --program-prefix=g
|
|
|
|
.if defined(WITH_CHANGEWORD)
|
|
CONFIGURE_ARGS+= --enable-changeword
|
|
.endif
|
|
|
|
INFO= m4
|
|
|
|
EXAMPLESDIR= share/examples/gm4
|
|
|
|
post-install:
|
|
@${MKDIR} ${PREFIX}/${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.m4 ${PREFIX}/${EXAMPLESDIR}
|
|
@install-info ${PREFIX}/info/m4.info ${PREFIX}/info/dir
|
|
|
|
.include <bsd.port.mk>
|