375a0ec6be
- fix depends so that pootle works with Python versions other than 2.6 - replace share/pootle with %%DATADIR%% in pkg-plist PR: ports/151065 Approved by: Denis Pokataev <catone@cpan.org> (maintainer)
102 lines
2.7 KiB
Makefile
102 lines
2.7 KiB
Makefile
# New ports collection makefile for: pootle
|
|
# Date created: 14 Dec 2009
|
|
# Whom: Denis Pokataev <catone@cpan.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pootle
|
|
PORTVERSION= 2.1.1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= SF/translate/Pootle/${PORTVERSION}/
|
|
DISTNAME= Pootle-${PORTVERSION}
|
|
|
|
MAINTAINER= catone@cpan.org
|
|
COMMENT= Pootle is a user-friendly web portal for simple translation process
|
|
|
|
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django>=1.2:${PORTSDIR}/www/py-django \
|
|
translate-toolkit>=1.8:${PORTSDIR}/textproc/translate-toolkit \
|
|
${PYTHON_PKGNAMEPREFIX}south>=0.7:${PORTSDIR}/databases/py-south
|
|
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
USE_BZIP2= yes
|
|
USE_GETTEXT= yes
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
PYDISTUTILS_PKGNAME= Pootle
|
|
|
|
POOTLEUSER?= nobody
|
|
POOTLEGROUP?= nobody
|
|
|
|
POOTLEDBDIR?= /var/db/pootle
|
|
POOTLELOGDIR?= /var/log/pootle
|
|
POOTLERUNDIR?= /var/run/pootle
|
|
|
|
USE_RC_SUBR= pootle.sh
|
|
SUB_LIST+= PYTHON_CMD="${PYTHON_CMD}" \
|
|
POOTLEDBDIR="${POOTLEDBDIR}" \
|
|
POOTLELOGDIR="${POOTLELOGDIR}" \
|
|
POOTLERUNDIR="${POOTLERUNDIR}" \
|
|
POOTLEUSER="${POOTLEUSER}" \
|
|
POOTLEGROUP="${POOTLEGROUP}" \
|
|
CHOWN="${CHOWN}" \
|
|
CHMOD="${CHMOD}" \
|
|
MKDIR="${MKDIR}"
|
|
|
|
PLIST_SUB+= POOTLEDBDIR="${POOTLEDBDIR}" \
|
|
POOTLELOGDIR="${POOTLELOGDIR}"
|
|
|
|
SUB_FILES+= pkg-install
|
|
PKGINSTALL= ${WRKDIR}/pkg-install
|
|
|
|
PORTDOCS= ChangeLog COPYING INSTALL README wsgi.py
|
|
|
|
OPTIONS= MYSQL "MYSQL support" on \
|
|
SUBVERSION "SVN support" on \
|
|
LUCENE "py-lucene for faster searching" on \
|
|
MEMCACHED "Enable memcached support" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_MYSQL)
|
|
USE_MYSQL= yes
|
|
.endif
|
|
|
|
.if defined(WITH_SUBVERSION)
|
|
RUN_DEPENDS+= svn:${PORTSDIR}/devel/subversion
|
|
.endif
|
|
|
|
.if defined(WITH_LUCENE)
|
|
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}lucene>0:${PORTSDIR}/textproc/py-lucene
|
|
.endif
|
|
|
|
.if defined(WITH_MEMCACHED)
|
|
LIB_DEPENDS+= memcached:${PORTSDIR}/databases/libmemcached
|
|
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}memcached>=1.45:${PORTSDIR}/databases/py-memcached
|
|
.endif
|
|
|
|
post-patch:
|
|
@${MV} ${WRKSRC}/localsettings.py ${WRKSRC}/localsettings.py.sample
|
|
@${REINPLACE_CMD} -e "s|^CONFIG_DIR.*=.*|CONFIG_DIR = \'${PREFIX}/etc/pootle\'|g" \
|
|
-e "s|^DATA_DIR.*=.*|DATA_DIR = \\'${DATADIR}\\'|g" \
|
|
-e "s|^WORKING_DIR.*=.*|WORKING_DIR = \\'${POOTLEDBDIR}\\'|g" \
|
|
${WRKSRC}/pootle/install_dirs.py
|
|
@${REINPLACE_CMD} -e "s|^INSTALL_CONFIG_DIR.*=.*|INSTALL_CONFIG_DIR = \'${PREFIX}/etc/pootle\'|g" \
|
|
-e "s|^INSTALL_WORKING_DIR.*=.*|INSTALL_WORKING_DIR = \'${POOTLEDBDIR}\'|g" \
|
|
${WRKSRC}/setup.py
|
|
|
|
post-install:
|
|
@PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
|
|
@${CP} -n ${PREFIX}/etc/pootle/localsettings.py.sample \
|
|
${PREFIX}/etc/pootle/localsettings.py
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for docs in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${docs} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|