39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= bugzilla
|
|
PORTVERSION= 4.4.1
|
|
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= bugzilla44>=${PORTVERSION}:${PORTSDIR}/devel/bugzilla44
|
|
|
|
NO_WRKSUBDIR= yes
|
|
|
|
.include "${.CURDIR}/../../devel/bugzilla44/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} ${STAGEDIR}${LANGDIR}
|
|
@(cd ${WRKSRC}/de && ${COPYTREE_SHARE} . ${STAGEDIR}${LANGDIR})
|
|
|
|
# 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>
|