mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
ea30c670cc
Pointyhat to: myself
35 lines
914 B
Makefile
35 lines
914 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: PyX
|
|
# Date created: Jun 8, 2004
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= PyX
|
|
PORTVERSION= 0.6.3
|
|
CATEGORIES= graphics python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME:L}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A Python package for the creation of encapsulated PostScript figures
|
|
|
|
BUILD_DEPENDS= kpsewhich:${PORTSDIR}/print/teTeX
|
|
|
|
USE_PYTHON= 2.0+
|
|
USE_PYDISTUTILS= yes
|
|
|
|
post-install:
|
|
@${FIND} ${PYTHON_SITELIBDIR}/pyx ! -type d | \
|
|
${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST}
|
|
@${FIND} ${PYTHON_SITELIBDIR}/pyx -type d | ${SORT} -r | \
|
|
${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
|
|
@${FIND} ${PREFIX}/share/pyx ! -type d | \
|
|
${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST}
|
|
@${FIND} ${PREFIX}/share/pyx -type d | ${SORT} -r | \
|
|
${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
|
|
|
|
.include <bsd.port.mk>
|