f220848f98
PR: ports/122159 Submitted by: Martin Tournoij <carpetsmoker@xs4all.nl> (maintainer) Approved by: thierry (mentor)
32 lines
843 B
Makefile
32 lines
843 B
Makefile
# New ports collection makefile for: sysutils/uif2iso
|
|
# Date created: 27 Jan 2008
|
|
# Whom: Martin Tournoij <carpetsmoker@xs4all.nl>
|
|
#
|
|
# $Carpetsmoker: ports/sysutils/uif2iso/Makefile,v 1.3 2008/03/27 14:43:04 carpetsmoker Exp $
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= uif2iso
|
|
PORTVERSION= 0.1.3
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.carpetsmoker.net/distfiles/ \
|
|
http://www.xs4all.nl/distfiles/ \
|
|
http://www.rwxrwxrwx.net/distfiles/
|
|
|
|
MAINTAINER= carpetsmoker@xs4all.nl
|
|
COMMENT= Convert MagicISO UIF files to ISO9660
|
|
|
|
PLIST_FILES= bin/uif2iso
|
|
PORTDOCS= uif2iso.txt
|
|
|
|
do-build:
|
|
${CC} -o ${WRKSRC}/${PORTNAME} ${CFLAGS} -lz -lssl ${WRKSRC}/uif2iso.c
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/uif2iso ${PREFIX}/bin/
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/uif2iso.txt ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|