mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-20 08:27:15 +00:00
d8f32ee7cb
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.
39 lines
714 B
Makefile
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
|