32 lines
843 B
Makefile
32 lines
843 B
Makefile
# New ports collection makefile for: m4
|
|
# Version required: 1.4
|
|
# Date created: 25 October 1994
|
|
# Whom: mr
|
|
#
|
|
# $NetBSD: Makefile,v 1.6 1998/01/24 04:20:19 hubertf Exp $
|
|
# FreeBSD Id: Makefile,v 1.7 1997/06/16 08:22:35 max Exp
|
|
#
|
|
|
|
DISTNAME= m4-1.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
|
|
MAINTAINER= packages@netbsd.org
|
|
|
|
OPSYS!= uname -s
|
|
.if (${OPSYS} == "NetBSD")
|
|
BUILD_DEPENDS= ${PREFIX}/bin/install-info:${PORTSDIR}/devel/gtexinfo
|
|
.endif
|
|
|
|
GNU_CONFIGURE=yes
|
|
CONFIGURE_ARGS= --program-prefix=g
|
|
|
|
post-install:
|
|
@${MKDIR} ${PREFIX}/share/examples/gm4
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.m4 ${PREFIX}/share/examples/gm4
|
|
@if [ ! -f ${PREFIX}/info/dir ]; then \
|
|
${SED} -ne '1,/Menu:/p' /usr/share/info/dir > ${PREFIX}/info/dir; \
|
|
fi
|
|
@install-info ${PREFIX}/info/m4.info ${PREFIX}/info/dir
|
|
|
|
.include <bsd.port.mk>
|