blob: e4befff60703fb3a2affe2b74f4f22890cf360a5 (
plain)
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
|
# $NetBSD: Makefile,v 1.3 2011/07/03 21:25:50 jym Exp $
#
VER= 1.0.2
DISTNAME= 4Suite-XML-${VER}
PKGNAME= ${PYPKGPREFIX}-4Suite-${VER}
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=foursuite/}
MAINTAINER= pettai@NetBSD.org
HOMEPAGE= http://4suite.org/
COMMENT= Open-source platform for XML and RDF processing
LICENSE= apache-1.1
PKG_DESTDIR_SUPPORT= user-destdir
BUILD_DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat
PYDISTUTILSPKG= yes
SUBST_CLASSES+= python
SUBST_FILES.python= build/scripts.*/4xml
SUBST_FILES.python+= build/scripts.*/4xpath
SUBST_FILES.python+= build/scripts.*/4xslt
SUBST_FILES.python+= build/scripts.*/4xupdate
SUBST_FILES.python+= test/Xml/XPath/Borrowed/*.py
SUBST_FILES.python+= test/Xml/XPath/Core/*.py
SUBST_FILES.python+= test/test.py
SUBST_STAGE.python= post-build
SUBST_SED.python= -e 's,\#![^ ]* python,\#! ${PYTHONBIN},'
# lang/python/egg.mk can't be used because of setup.py
# Use this quirk instead for the egg file
PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX}
do-configure:
cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
${PYTHONBIN} setup.py config --prefix=${PREFIX}
.include "../../lang/python/extension.mk"
.include "../../lang/python/application.mk"
.include "../../mk/bsd.pkg.mk"
|