2724e90b45
- ${MKDIR} -> mkdir - rearrange PLIST a bit
25 lines
806 B
Makefile
25 lines
806 B
Makefile
# $OpenBSD: Makefile,v 1.7 1999/12/12 20:51:15 brad Exp $
|
|
# $FreeBSD: Makefile,v 1.7 1997/06/16 08:22:35 max Exp $
|
|
|
|
DISTNAME= m4-1.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= m4
|
|
|
|
MAINTAINER= niklas@openbsd.org
|
|
|
|
# This port does use gnu configure, but uses old autoconf files.
|
|
# We can't say USE_AUTOCONF because then we'd get a circular dependency:
|
|
# autoconf also requires this version of m4. So we fake up what
|
|
# GNU_CONFIGURE would do less the parts that its outdated configure
|
|
# doesn't like.
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX} --program-prefix=g
|
|
|
|
post-install:
|
|
@mkdir -p ${PREFIX}/share/examples/gm4
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.m4 ${PREFIX}/share/examples/gm4
|
|
@install-info ${PREFIX}/info/m4.info ${PREFIX}/info/dir
|
|
|
|
.include <bsd.port.mk>
|