aboutsummaryrefslogtreecommitdiff
path: root/www/trac-announcer/Makefile
blob: 8ac8baf6725f43f38b240d7257a8fe4a1820298b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# New ports collection makefile for: trac-autocomplete
# Date created:                      December 23, 2009
# Whom:                              Eygene Ryabinkin <rea-fbsd@codelabs.ru>
#
# $FreeBSD$
#

PORTNAME=	announcer
PORTVERSION=	1.0
CATEGORIES=	www python
MASTER_SITES=	http://dist.codelabs.ru/fbsd/
PKGNAMEPREFIX=	trac-
DISTNAME=	announcerplugin-r${REL}

MAINTAINER=	rea@FreeBSD.org
COMMENT=	A plugin for making user-customizable notifications

BUILD_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}Babel>=0.9:${PORTSDIR}/devel/py-babel
RUN_DEPENDS+=	trac>=0.11:${PORTSDIR}/www/trac

USE_PYTHON=	2.5+
USE_ZIP=	yes
USE_PYDISTUTILS=	yes
PYDISTUTILS_PKGNAME=	AnnouncerPlugin
PYDISTUTILS_NOEGGINFO=	yes

WRKSRC=		${WRKDIR}/announcerplugin/trunk
REL=		8411
EGG_VER=	0.12_p2.dev

PLIST_SUB+=	PORTVERSION=${PORTVERSION:S/.a/_a/} \
		PYTHONVERSION=${_PYTHON_VERSION}
PLIST_FILES+=	%%PYTHON_SITELIBDIR%%/AnnouncerPlugin-${EGG_VER}-py%%PYTHONVERSION%%.egg

# We must fix file permissions -- ZIP file have 0000 for every file.
# Directory permissions are fine (they aren't stored inside ZIP
# file), but we set them too -- just in case.
post-extract:
	@${FIND} ${WRKSRC} -type f | ${XARGS} ${CHMOD} 644
	@${FIND} ${WRKSRC} -type d | ${XARGS} ${CHMOD} 755

# Build phase: create locale stuff
build: configure
	cd ${WRKSRC} && ${PYTHON_CMD} setup.py compile_catalog

.include <bsd.port.mk>