1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/sysutils/freesbie/Makefile
Andrej Zverev 966fdc856d - Update freesbie to version 2.0.20060202
---------
After several weeks of testing, the FreeSBIE team considers the new
release 2.0 mature enough to completely replace the legacy releases 1.1.x.
The new freesbie2 set is a complete rewrite, not an incremential
update.
It features a fully modular concept and a significantly lighter framework.
Despite the smaller size of the distfile, everything is included to create
a custom bootable iso in a comfortable, quick manner.
---------

PR:		ports/92775
Submitted by:	Thomas E. Zander <riggs@rrr.de> (maintainer)
2006-02-03 20:19:58 +00:00

41 lines
1.1 KiB
Makefile

# New ports collection makefile for: FreeSBIE
# Date created: 27 March 2003
# Whom: Thomas E. Zander <riggs@rrr.de>
#
# $FreeBSD$
#
PORTNAME= freesbie
PORTVERSION= 2.0.20060202
CATEGORIES= sysutils
MASTER_SITES= http://www.rrr.de/~riggs/freesbie/
DISTNAME= ${PORTNAME}-${PORTVERSION:S/2.0.//}
MAINTAINER= riggs@rrr.de
COMMENT= Yet another cool answer to the system-on-cd question
RUN_DEPENDS= mkisofs:${PORTSDIR}/sysutils/cdrtools
USE_BZIP2= yes
NO_BUILD= yes
WRKSRC= ${WRKDIR}/${PORTNAME}2
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 504000
IGNORE= earlier FreeBSD versions then 5.4-RELEASE are not supported
.endif
do-install:
@${MKDIR} ${DATADIR}
@ cd ${WRKSRC} && ${FIND} . -type f -print | \
${CPIO} --quiet -pdum -R ${BINOWN}:${BINGRP} ${DATADIR}
@ cd ${DATADIR} && ${FIND} . -type d -print | ${XARGS} ${CHMOD} 0755
@ cd ${PREFIX} && ${FIND} share/${PORTNAME} -type f -print | \
${SORT} -r > ${TMPPLIST}
@ cd ${PREFIX} && ${FIND} share/${PORTNAME} -type d -print | \
${SORT} -r | ${SED} -e 's#^#@dirrm #' >> ${TMPPLIST}
.include <bsd.port.post.mk>