mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
627208d7bb
Change log: 0.5 - 24.Sep.07 * default to csup and fall back to cvsup if not found. * Return error messages if the profile path is wrong or missing * Using 'cp -RPpf' instead of 'cp -Rpf' for the backups now (no links copied now) * Added SMP kernel support to the menu system * The viewing of UPDATING is now done before CVSup of other files * Added the option for mergemaster -p, so questions can be grouped * Added RELENG_6_3 (for future use) * Removed RELENG_4 tags from the update options * Added a 'make clean' step before 'make buildworld' and removed the rm one * Updated the custom port selection * Updated the custom src selection * Updated the cvsup server list PR: ports/117179 Submitted by: maintainer
39 lines
822 B
Makefile
39 lines
822 B
Makefile
# New ports collection makefile for: sysupdate
|
|
# Date created: 17 Jan 2006
|
|
# Whom: Tig <tigger@lvlworld.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sysupdate
|
|
PORTVERSION= 0.5
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= lvl
|
|
DISTNAME= ${PORTNAME}.sh-${PORTVERSION}
|
|
|
|
MAINTAINER= tigger@lvlworld.com
|
|
COMMENT= System and ports update script
|
|
|
|
MAN1= sysupdate.sh.1
|
|
MANCOMPRESSED= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
NO_BUILD= yes
|
|
PLIST_FILES= bin/sysupdate.sh
|
|
|
|
OPTIONS= FASTEST_CVSUP "Support fastest_cvsup" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_FASTEST_CVSUP)
|
|
RUN_DEPENDS= fastest_cvsup:${PORTSDIR}/sysutils/fastest_cvsup
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|g' \
|
|
${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.post.mk>
|