blob: c5eb9573113c3af30e8ab4ae8046803babd7ad6a (
plain)
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
|
# New ports collection makefile for: dump9660
# Date Created: 14 Jun 2002
# Whom: wkj
#
# $FreeBSD$
#
PORTNAME= dump9660
PORTVERSION= 1.0
CATEGORIES= sysutils
MASTER_SITES= http://www.eecs.harvard.edu/~wkj/Software/dump9660/
DISTNAME= dump9660
EXTRACT_SUFX= .tgz
MAINTAINER= dump9660-port@eecs.harvard.edu
COMMENT= Create an ISO 9660 image, possibly incrementally
MAN8= mk9660.8
MAN5= proto.5
MLINKS= mk9660.8 dump9660.8
USE_REINPLACE= yes
.include <bsd.port.pre.mk>
# 386(=i386), alpha, sparc
# PowerPC should be OK, too
OBJTYPE!= ${UNAME} -m | ${SED} -e 's;i.86;386;'
MAKE_ENV += systype=${OPSYS} objtype=${OBJTYPE}
post-patch:
${REINPLACE_CMD} -e 's,@@LOCAL@@,${PREFIX},g' ${WRKSRC}/Makefile
.include <bsd.port.post.mk>
|