mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
7daddde8e8
- Update to my new maintainer address - Update mirror URL - Update to 20120801 snapshot Changelog: * Fixes crash with duplicated origins Approved by: eadler (mentor)
83 lines
2.0 KiB
Makefile
83 lines
2.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= 20120801
|
|
PORTEPOCH= 3
|
|
CATEGORIES= ports-mgmt
|
|
MASTER_SITES= http://github.com/pkgtools/pkgtools/tarball/${GITVERSION}/ \
|
|
http://mirror.shatow.net/freebsd/pkgtools/
|
|
PKGNAMESUFFIX= -devel
|
|
DISTNAME= pkgtools-pkgtools-${GITVERSION}
|
|
|
|
MAINTAINER= bdrewery@FreeBSD.org
|
|
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= b381859
|
|
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
USE_RUBY= yes
|
|
USE_LDCONFIG= ${PREFIX}/lib/compat/pkg
|
|
USE_STAGE= yes
|
|
MAKE_ARGS= PREFIX="${PREFIX}" RUBY="${RUBY}" RUBY_SITELIBDIR="${RUBY_SITELIBDIR}" MKDIR="${MKDIR}"
|
|
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
|
|
|
|
regression-test: patch
|
|
cd ${WRKSRC} && ${MAKE} test
|
|
|
|
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>
|