62f0245b8c
2001-07-14 17:05 knu * misc/zsh/: _pkgdepfix, _portupgrade, _portversion: Improve zsh compdefs. 2001-07-14 16:40 knu * portupgrade.1: Fix manpage. [Submitted by: Sean Chittenden <sean@chittenden.org>] 2001-07-03 14:26 knu * pkgdepfix.1, portsdb, portsdb.1, portsdb.rb, portupgrade.1: Introduce a new environment variable PORTS_DBDIR, which specifies an alternative ports database directory. This is useful when /usr/ports is on a readonly filesystem. [Requested by: Makoto MATSUSHITA <matusita@jp.freebsd.org>] Warn and abort the update if PORTS_DBDIR is not writable, instead of just failing in error.
43 lines
1.0 KiB
Makefile
43 lines
1.0 KiB
Makefile
# New ports collection makefile for: portupgrade
|
|
# Date created: 18 March 2001
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= portupgrade
|
|
PORTVERSION= 20010714
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL} \
|
|
http://www.iDaemons.org/distfiles/
|
|
MASTER_SITE_SUBDIR= knu
|
|
DISTNAME= pkgtools-${PORTVERSION}
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
|
|
RUN_DEPENDS= ${RUBY_SITELIBDIR}/optparse.rb:${PORTSDIR}/devel/ruby-optparse \
|
|
${RUBY_SITEARCHLIBDIR}/fnmatch.so:${PORTSDIR}/devel/ruby-fnmatch \
|
|
${LOCALBASE}/sbin/pkg_tarup:${PORTSDIR}/misc/pkg_tarup
|
|
|
|
USE_RUBY= yes
|
|
|
|
NO_BUILD= yes
|
|
|
|
MAN1= pkgdepfix.1 \
|
|
portsdb.1 \
|
|
portupgrade.1 \
|
|
portversion.1
|
|
MLINKS= portupgrade.1 portinstall.1
|
|
MANCOMPRESSED= yes
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${RUBY} install.rb
|
|
${MKDIR} ${PREFIX}/share/zsh/site-functions
|
|
${INSTALL_DATA} ${WRKSRC}/misc/zsh/* ${PREFIX}/share/zsh/site-functions/
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/${PORTNAME}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/${PORTNAME}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|