diff options
author | edwin <edwin@FreeBSD.org> | 2003-01-19 00:51:22 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-01-19 00:51:22 +0000 |
commit | 98535e1e770daa57e126ecb71d25bbb889b1a787 (patch) | |
tree | 89000ee90f22b144ec80d5847f969c111df1fd15 /sysutils/dump9660/Makefile | |
parent | e1cd6b5bc77d503c8fb926a9d36287ba91b013ba (diff) | |
download | FreeBSD-ports-98535e1e770daa57e126ecb71d25bbb889b1a787.zip FreeBSD-ports-98535e1e770daa57e126ecb71d25bbb889b1a787.tar.gz |
New port: sysutils/dump9660
Dump9660 is a tool for creating ISO 9660 compliant CD images
suitable for use with tools such as FreeBSD's burncd.
Dump9660 supports the El Torrito bootable CD and Microsoft
Joliet extensions as well as the Rock Ridge and Plan 9
system use extensions.
PR: ports/39847
Submitted by: William Josephson <wkj-freebsd@honk.eecs.harvard.edu>
Diffstat (limited to 'sysutils/dump9660/Makefile')
-rw-r--r-- | sysutils/dump9660/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sysutils/dump9660/Makefile b/sysutils/dump9660/Makefile new file mode 100644 index 0000000..943cdbe --- /dev/null +++ b/sysutils/dump9660/Makefile @@ -0,0 +1,32 @@ +# 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 + +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> |