24b247e2c7
- Convert to new options framework - Sync pkg-message with devel/portupgrade portupgrade changes - portupgrade/portinstall -v now lists recursive depends [ports/137958] - portupgrade lists new version after upgrade in results - Fixed failure being seen as success due to broken script(1) [ports/147242, ports/131111] - A fixed script(1) is now included for systems < 8.1 - Expanded pkgng support PR: ports/168548 which fixes: ports/137958 ports/147242 ports/131111 Submitted by: Bryan Drewery <bryan@shatow.net>
77 lines
1.9 KiB
Makefile
77 lines
1.9 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= 20120601
|
|
PORTEPOCH= 3
|
|
CATEGORIES= ports-mgmt
|
|
MASTER_SITES= http://github.com/pkgtools/pkgtools/tarball/${GITVERSION}/ \
|
|
http://www.shatow.net/freebsd/
|
|
PKGNAMESUFFIX= -devel
|
|
DISTNAME= pkgtools-pkgtools-${GITVERSION}
|
|
|
|
MAINTAINER= bryan@shatow.net
|
|
COMMENT= FreeBSD ports/packages management tool (devel version)
|
|
|
|
LICENSE= BSD
|
|
|
|
RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/bdb.so:${PORTSDIR}/databases/ruby-bdb
|
|
|
|
CONFLICTS_INSTALL= portupgrade-[0-9]*
|
|
|
|
FETCH_ARGS= -Fpr
|
|
GITVERSION= 0529f13
|
|
|
|
USE_RUBY= yes
|
|
USE_LDCONFIG= ${PREFIX}/lib/compat/pkg
|
|
MAKE_ARGS= PREFIX="${PREFIX}" RUBY="${RUBY}"
|
|
MAN1= pkg_deinstall.1 \
|
|
pkg_fetch.1 \
|
|
pkg_glob.1 \
|
|
pkg_sort.1 \
|
|
pkgdb.1 \
|
|
pkgdu.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
|
|
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/pkgtools
|
|
DOCSDIR= ${PREFIX}/share/doc/pkgtools
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
INSTALL_TARGET= install
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
INSTALL_TARGET+= install-doc
|
|
.endif
|
|
|
|
# Need to install working script(1)
|
|
.if ${OSVERSION} < 801000
|
|
PLIST_SUB+= SCRIPT=""
|
|
MAKE_ENV+= NEED_COMPAT_SCRIPT=yes
|
|
.else
|
|
PLIST_SUB+= SCRIPT="@comment "
|
|
.endif
|
|
|
|
post-patch: .SILENT
|
|
REVISION=`readlink "${_DISTDIR}/portupgrade/latest" | ${SED} -E -e 's,.*pkgtools-(.*).tar.gz,\1,g'` && ${SED} -E -e "s,%%DATE%%,${PORTVERSION},g;s,%%REVISION%%,$${REVISION},g" \
|
|
${WRKSRC}/lib/pkgtools/revision.rb.in > ${WRKSRC}/lib/pkgtools/revision.rb
|
|
|
|
post-install:
|
|
if [ ! -f ${PREFIX}/etc/pkgtools.conf ]; then \
|
|
${CP} -p ${PREFIX}/etc/pkgtools.conf.sample ${PREFIX}/etc/pkgtools.conf; \
|
|
fi
|
|
${MKDIR} ${PREFIX}/lib/compat/pkg
|
|
|
|
.include <bsd.port.post.mk>
|