aboutsummaryrefslogtreecommitdiffstats
path: root/www/trac-math/Makefile
blob: d0ac03ce595a4e89b9e8f74efe3d458dcde71839 (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
47
48
49
50
51
52
53
54
55
56
57
# New ports collection makefile for: trac-math
# Date created:                      Dec 31, 2009
# Whom:                              Brooks Davis <brooks@freebsd.org>
#
# $FreeBSD$
#

PORTNAME=   ${PYDISTUTILS_PKGNAME:S;^Trac;;S;Plugin$;;:L}
PORTVERSION=    0.1
PORTREVISION=   3
CATEGORIES= www math python
MASTER_SITES=   ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= brooks
PKGNAMEPREFIX=  trac-

MAINTAINER= brooks@freebsd.org
COMMENT=    Support for LaTeX math formulas in wiki pages

RUN_DEPENDS+=   tracd:${PORTSDIR}/www/trac \
        latex:${PORTSDIR}/print/teTeX-base
BUILD_DEPENDS+= easy_install:${PORTSDIR}/devel/py-setuptools

SUB_FILES=  pkg-message
PKGMESSAGE= ${WRKDIR}/pkg-message

USE_PYTHON= yes
USE_PYDISTUTILS=easy_install
PYDISTUTILS_PKGNAME=    TracMath

post-install:
    ${CAT} ${PKGMESSAGE}

# Maintainter targets below this point

# Retrieve the latest version from SVN and package in a tarball.
.if defined(BOOTSTRAP)
FETCH_DEPENDS+= svn:${PORTSDIR}/devel/subversion
do-fetch:
    ${MKDIR} ${WRKDIR}
    cd ${WRKDIR} && \
        svn export http://trac-hacks.org/svn/tracmathplugin/ \
        ${DISTNAME}
    cd ${WRKDIR} && tar cvf ${DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
.endif

# Create a pkg-plist after the package is installed.
EGGDIR=     ${PYTHON_SITELIBDIR}/${PYEASYINSTALL_EGG}
PLIST_EGGDIR=   %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
build-plist:
    ${FIND} ${EGGDIR} -type f | \
        ${SED} -e 's|${EGGDIR}|${PLIST_EGGDIR}|' | \
        ${SORT} > pkg-plist
    ${FIND} ${EGGDIR} -type d | \
        ${SED} -e 's|${EGGDIR}|@dirrm ${PLIST_EGGDIR}|' | \
        ${SORT} -r >> pkg-plist

.include <bsd.port.mk>