mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-03 22:23:24 +00:00
9c0d74037c
wanting do to this for a long time now. Now we got rid of the stupid dependency on Tcl/Tk and save some checks in python's makefile. Update the dependent ports accordingly.
45 lines
1.3 KiB
Makefile
45 lines
1.3 KiB
Makefile
# New ports collection makefile for: pmw
|
|
# Version required: 0.8.3
|
|
# Date created: 03 June 1998
|
|
# Whom: Thomas Gellekum <tg@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
DISTNAME= Pmw.0.8.3
|
|
PKGNAME= py-pmw-0.8.3
|
|
CATEGORIES= x11-toolkits python
|
|
MASTER_SITES= ftp://ftp.dscpl.com.au/pub/pmw/
|
|
|
|
MAINTAINER= tg@FreeBSD.org
|
|
|
|
RUN_DEPENDS= ${SITEPYDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter
|
|
|
|
PLIST_SUB= PMWVERSION="${PMWVERSION}"
|
|
|
|
PYTHONSCRIPTDIR=${PREFIX}/lib/python1.5
|
|
SITEPYDIR= ${PYTHONSCRIPTDIR}/site-packages
|
|
DOCDIR= ${PREFIX}/share/doc/Pmw
|
|
EXAMPLEDIR= ${PREFIX}/share/examples/Pmw
|
|
PMWVERSION= Pmw_0_8_3
|
|
|
|
do-build:
|
|
@${ECHO_MSG} "Do a \`make install' as root."
|
|
|
|
do-install:
|
|
@${MKDIR} ${SITEPYDIR}
|
|
@(cd ${WRKDIR}; tar cf - Pmw/__init__.py Pmw/${PMWVERSION}/__init__.py Pmw/${PMWVERSION}/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/${PMWVERSION}/doc; tar cf - .) | \
|
|
(cd ${DOCDIR}; tar xf -)
|
|
@(cd ${WRKDIR}/Pmw/${PMWVERSION}/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>
|