blob: 1ce435e4319854734221ab74d58151aa6bf6693b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# New ports collection makefile for: dmake
# Date created: 31 July 1995
# Whom: nils@guru.ims.uni-stuttgart.de
#
# $FreeBSD$
#
PORTNAME= dmake
PORTVERSION= 4.1
CATEGORIES= devel
MASTER_SITES= ftp://plg.uwaterloo.ca/pub/dmake/ \
http://dmake.wticorp.com/SourceDistribution/ \
ftp://ftp.isc.org/FreeBSD/ports/distfiles/ \
ftp://ftp.internat.freebsd.org/pub/FreeBSD/distfiles/
DISTNAME= ${PORTNAME}-v${PORTVERSION}-src-export.all-unknown-all
MAINTAINER= ports@FreeBSD.org
COMMENT= Another hyper make utility
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_REINPLACE= yes
USE_GMAKE= yes
MAKE_ENV= CC=${CC}
MAKEFILE= makefile
ALL_TARGET= bsd43
MAN1= dmake.1
post-extract:
.for f in limits.h string.h dirent.h
@${RM} -f ${WRKSRC}/unix/bsd43/${f}
.endfor
post-patch:
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' ${WRKSRC}/unix/startup.h
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/dmake ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/man/dmake.tf ${PREFIX}/man/man1/dmake.1
@${MKDIR} ${PREFIX}/share/dmake/startup
${CP} -R ${WRKSRC}/startup/* ${PREFIX}/share/dmake/startup
.include <bsd.port.mk>
|