diff options
Diffstat (limited to 'ports-mgmt/portupgrade/Makefile')
-rw-r--r-- | ports-mgmt/portupgrade/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/ports-mgmt/portupgrade/Makefile b/ports-mgmt/portupgrade/Makefile new file mode 100644 index 000000000000..4ffbae362aff --- /dev/null +++ b/ports-mgmt/portupgrade/Makefile @@ -0,0 +1,32 @@ +# New ports collection makefile for: portupgrade +# Date created: 18 March 2001 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= portupgrade +PORTVERSION= 1.14 +CATEGORIES= sysutils +MASTER_SITES= ${MASTER_SITE_LOCAL} +MASTER_SITE_SUBDIR= knu +DISTNAME= pkgtools-20010318 + +MAINTAINER= knu@FreeBSD.org + +RUN_DEPENDS= ${RUBY_SITELIBDIR}/optparse.rb:${PORTSDIR}/devel/ruby-optparse + +USE_RUBY= yes + +NO_BUILD= 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> |