1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-20 08:27:15 +00:00
freebsd-ports/devel/makeplus/Makefile
Alan Eldridge d8f32ee7cb The final version of the makeplus patch, which should be integrated into the
upstream on the next version. (I've been helping the author with make issues).
Bump portrev on that one.

c2lib: just autogen'd the plist and manpage list because the make+ patch
let me do it and test it. Nothing materially different. Just cosmetic, really.
2003-02-10 23:46:13 +00:00

39 lines
714 B
Makefile

# ex:ts=8 -*-mode: makefile-*-
#
# New ports collection makefile for: makeplus
# Date created: 2002-12-22
# Whom: Alan Eldridge <alane@geeksrus.net>
#
# $FreeBSD$
#
PORTNAME= makeplus
PORTVERSION= 0.1.2
PORTREVISION= 1
PORTEPOCH= 0
CATEGORIES= devel
MASTER_SITES= http://www.annexia.org/freeware/${PORTNAME}/
MAINTAINER= alane@FreeBSD.org
USE_GMAKE= yes
PREFIX?= ${LOCALBASE}
MAKE_ENV+= MAKEPLUS_HOME=${WRKSRC}
NO_MTREE= yes
MAN1= make+.1
.include <bsd.port.pre.mk>
do-build:
cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ./make+ \
prefix=${PREFIX} manprefix=${PREFIX}
do-install:
cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} \
./make+ install prefix=${PREFIX} manprefix=${PREFIX}
.include <bsd.port.post.mk>
#EOF