mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
5a3bb3bded
- remove RUN_DEPENDS for (already expired) perl 5.10 - update german/bugzilla42 - set expiration date for bugzilla3 The following important fixes/changes have been made in this release: o MySQL 5.6 is now supported. (Bug 852560) o A regression introduced in Bugzilla 4.2.4 made Oracle crash when installing Bugzilla for the first time. (Bug 858911) o If a custom field depends on a product, component or classification, the "mandatory" bit was ignored on bug creation. (Bug 782210) o Queries involving flags were broken in several ways. These queries have been fixed. (Bug 828344) o Tabular reports involving the empty resolution did not link bug counts correctly. (Bug 212471) o The Bug.search WebService method was returning all visible bugs when called with no arguments, ignoring the max_search_results and search_allow_no_criteria parameters. (Bug 859118) Release Notes: http://www.bugzilla.org/releases/4.2.6/release-notes.html
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= bugzilla
|
|
PORTVERSION= 4.2.6
|
|
CATEGORIES= german
|
|
MASTER_SITES= SF
|
|
MASTER_SITE_SUBDIR=bugzilla-de/${PORTVERSION:R}/${PORTVERSION}
|
|
DISTNAME= germzilla-${PORTVERSION}-1.utf-8
|
|
|
|
MAINTAINER= bugzilla@FreeBSD.org
|
|
COMMENT= German localization for Bugzilla
|
|
|
|
RUN_DEPENDS= bugzilla>=${PORTVERSION}:${PORTSDIR}/devel/bugzilla42
|
|
|
|
LATEST_LINK= ${PKGNAMEPREFIX}bugzilla42
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
.include "${.CURDIR}/../../devel/bugzilla42/Makefile.common"
|
|
|
|
LANGDIR= ${WWWDIR}/template/de
|
|
|
|
#post-patch:
|
|
# @${REINPLACE_CMD} -i '' -e 's/4.2.3/4.2.4/' \
|
|
# ${WRKDIR}/de/default/global/gzversion.html.tmpl
|
|
# @${FIND} ${WRKDIR}/de/default/ -type f \( -name \*.orig -o -name \*.bak \) -delete
|
|
|
|
do-install:
|
|
@-${MKDIR} ${LANGDIR}
|
|
@(cd ${WRKSRC}/de && ${COPYTREE_SHARE} . ${LANGDIR})
|
|
.if !defined(BATCH)
|
|
@${ECHO_MSG}
|
|
@${CAT} ${PKGMESSAGE}
|
|
@${ECHO_MSG}
|
|
.endif
|
|
|
|
# Maintainer
|
|
plist: patch
|
|
@( cd ${WRKDIR}/ && ${FIND} de -type f | ${AWK} '{print "%%WWWDIR%%/template/"$$1}' | ${SORT} > ${PLIST}.new )
|
|
@( cd ${WRKDIR}/ && ${FIND} de -type d | ${AWK} '{print "@dirrmtry %%WWWDIR%%/template/"$$1}' | ${SORT} -r >> ${PLIST}.new )
|
|
@if ${DIFF} -u ${PLIST} ${PLIST}.new ; then \
|
|
${ECHO_MSG} no pkg-plist changes; \
|
|
${RM} ${PLIST}.new ; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|