blob: d397b8f5434769f1c5d837f90b29c8e92b468dc6 (
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
58
59
60
61
62
63
|
# Ports collection Makefile for: PyXML
# Date created: 04/17/1999
# Whom: nectar@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= py-xml
PORTVERSION= 0.5.4
CATEGORIES= textproc python
MASTER_SITES= http://www.python.org/sigs/xml-sig/files/ \
ftp://ftp.cdrom.com/pub/python/www.python.org/sigs/xml-sig/files/ \
ftp://ftp.kddlabs.co.jp/pub/lang/python/www.python.org/sigs/xml-sig/files/ \
ftp://unix.hensa.ac.uk/mirrors/ftp.python.org/pub/www.python.org/sigs/xml-sig/files/
DISTNAME= PyXML-${PORTVERSION}
MAINTAINER= nectar@FreeBSD.org
BUILD_DEPENDS= ${LOCALBASE}/lib/python1.5/site-packages/distutils/core.py:${PORTSDIR}/misc/py-distutils
RUN_DEPENDS= python:${PORTSDIR}/lang/python
PLIST= ${WRKDIR}/PLIST
.if !defined(NOPORTDOCS)
DOCDIR= share/doc/py-xml
# Document files to be installed in ${DOCDIR}
DOCS1= xml-howto.txt xml-ref.txt
# Document files to be installed in ${DOCDIR}/xmlproc
DOCS2= artikler.css basicapi.gif cmdline.gif \
standard.css xmlproc-catalog-doco.html \
xmlproc-doco.html xmlproc-dtd-doco.html \
xmlproc.html xmlproc_cmdline.html \
xmlproc_dtdparser.html xmlproc_ns.html \
xmlproc_tut.html
# Complete list of document files
DOCS= ${DOCS1} ${DOCS2:S|^|xmlproc/|}
# Command to install document file and simultaneously add filename
# to the packing list
INSTALL_DOC= ${INSTALL_DATA} ${WRKSRC}/doc/@DOC \
${PREFIX}/${DOCDIR}/@DOC && \
${ECHO} ${DOCDIR}/@DOC >> ${PLIST}
.endif
do-build:
cd ${WRKSRC} && python setup.py build
pre-install:
${CP} ${PKGDIR}/PLIST ${PLIST}
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/${DOCDIR}
${MKDIR} ${PREFIX}/${DOCDIR}/xmlproc
.for doc in ${DOCS}
${INSTALL_DOC:S|@DOC|${doc}|g}
.endfor
${ECHO} @dirrm ${DOCDIR}/xmlproc >> ${PLIST}
${ECHO} @dirrm ${DOCDIR} >> ${PLIST}
.endif
do-install:
cd ${WRKSRC} && python setup.py install
.include <bsd.port.mk>
|