blob: dc15d5d8d02cb7ccd2c0c4c325918d1fc4b2c8a2 (
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
|
# New ports collection makefile for: pmw
# Version required: 0.7
# Date created: 03 June 1998
# Whom: Thomas Gellekum <tg@FreeBSD.ORG>
#
# $Id: Makefile,v 1.1.1.1 1998/06/05 06:50:32 tg Exp $
DISTNAME= Pmw.0.7
PKGNAME= pmw-0.7
CATEGORIES= x11
MASTER_SITES= ftp://ftp.dscpl.com.au/pub/pmw/
MAINTAINER= tg@FreeBSD.ORG
BUILD_DEPENDS= python:${PORTSDIR}/lang/python
RUN_DEPENDS= python:${PORTSDIR}/lang/python
PYTHONSCRIPTDIR=${PREFIX}/lib/python1.5
SITEPYDIR= ${PYTHONSCRIPTDIR}/site-packages
DOCDIR= ${PREFIX}/share/doc/Pmw
EXAMPLEDIR= ${PREFIX}/share/examples/Pmw
do-build:
@${ECHO_MSG} "Do a \`make install' as root."
do-install:
@(cd ${WRKDIR}; tar cf - Pmw/__init__.py Pmw/Pmw_0_7/__init__.py Pmw/Pmw_0_7/lib) | \
(cd ${SITEPYDIR}; tar xf -)
@${PREFIX}/bin/python ${PYTHONSCRIPTDIR}/compileall.py ${SITEPYDIR}/Pmw
@${PREFIX}/bin/python -O ${PYTHONSCRIPTDIR}/compileall.py ${SITEPYDIR}/Pmw
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCDIR} ${EXAMPLEDIR}
@(cd ${WRKDIR}/Pmw/Pmw_0_7/doc; tar cf - .) | \
(cd ${DOCDIR}; tar xf -)
@(cd ${WRKDIR}/Pmw/Pmw_0_7/demos; tar cf - .) | \
(cd ${EXAMPLEDIR}; tar xf -)
@${PREFIX}/bin/python ${PYTHONSCRIPTDIR}/compileall.py ${EXAMPLEDIR}
@${PREFIX}/bin/python -O ${PYTHONSCRIPTDIR}/compileall.py ${EXAMPLEDIR}
.endif
.include <bsd.port.mk>
|