96e3b242f0
overall: - Allow a regular expression or glob pattern against origins as pkgname glob pattern. For example, the following commands work as expected now: pkg_glob 'lang/*' portupgrade lang/ruby pkg_info ':(japanese|chinese|korean)/' - Use install(1) instead of cp(1) and chmod(1) to install modified data files such as +CONTENTS. pkgdb(1): - Add a new option --autofix, which is a shorthand of --auto --fix (-aF). portupgrade(1): - Allow specifying a directory after -L. - Auto-fix dependencies before creating a package. PR: ports/41383 Submitted by: Vivek Khera <khera@kciLink.com> pkgtools.conf(5): - Add a new configuration variable ALT_PKGDEP, which defines alternative dependencies, used by pkgdb -F/-aF. This makes yet another step forward to eliminate the need for manual pkgdb -F's.
74 lines
1.8 KiB
Makefile
74 lines
1.8 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= 20021109
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://ftp.iDaemons.org/pub/distfiles/ \
|
|
${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= knu
|
|
DISTNAME= pkgtools-${DISTVERSION}
|
|
|
|
DISTVERSION= 20021101
|
|
|
|
.if ${DISTVERSION} != ${PORTVERSION}
|
|
PATCH_SITES= ${MASTER_SITES}
|
|
PATCH_SITE_SUBDIR= ${MASTER_SITE_SUBDIR}
|
|
PATCHFILES= ${DISTNAME}-20021103.diff.bz2 \
|
|
pkgtools-20021103-20021106.diff.bz2 \
|
|
pkgtools-20021106-${PORTVERSION}.diff.bz2
|
|
PATCH_DIST_STRIP= -p1
|
|
.endif
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
|
|
RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/bdb1.so:${PORTSDIR}/databases/ruby-bdb1
|
|
# For PKG_DBDRIVER={bdb_btree,bdb_hash,bdb}
|
|
# ${RUBY_SITEARCHLIBDIR}/bdb.so:${PORTSDIR}/databases/ruby-bdb
|
|
|
|
USE_BZIP2= yes
|
|
USE_RUBY= yes
|
|
USE_RUBY_FEATURES= optparse ruby18
|
|
|
|
MAKE_ARGS= PREFIX="${PREFIX}" RUBY="${RUBY}"
|
|
|
|
MAN1= pkg_deinstall.1 \
|
|
pkg_fetch.1 \
|
|
pkg_glob.1 \
|
|
pkg_sort.1 \
|
|
pkgdb.1 \
|
|
portcvsweb.1 \
|
|
portsclean.1 \
|
|
portsdb.1 \
|
|
portupgrade.1 \
|
|
portversion.1
|
|
MAN5= pkgtools.conf.5
|
|
MLINKS= pkgdb.1 pkg_which.1 \
|
|
portupgrade.1 portinstall.1 \
|
|
portsdb.1 ports_glob.1
|
|
MANCOMPRESSED= maybe
|
|
|
|
INSTALL_TARGET= install
|
|
.if !defined(NOPORTDOCS)
|
|
INSTALL_TARGET+= install-doc
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# pkg_create(1) must support -b. (4.5-RELEASE or later)
|
|
# XXX: PKG_CMD is not defined yet..
|
|
PKG_CREATE_OK!= /usr/sbin/pkg_create 2>&1 | ${GREP} ' -b ' || ${TRUE}
|
|
.if empty(PKG_CREATE_OK)
|
|
IGNORE= pkg_create does not support -b. Please update /usr/sbin/pkg_* to those of the latest RELENG_4
|
|
.endif
|
|
|
|
post-install:
|
|
if [ ! -f ${PREFIX}/etc/pkgtools.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/pkgtools.conf.sample ${PREFIX}/etc/pkgtools.conf; \
|
|
fi
|
|
|
|
.include <bsd.port.post.mk>
|