mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
d7c5457ddf
Approved by: jadawin@ (mentor)
33 lines
721 B
Makefile
33 lines
721 B
Makefile
# New ports collection makefile for: py-gvgen
|
|
# Date created: 19 May 2008
|
|
# Whom: Sofian Brabez <sbrabez@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gvgen
|
|
PORTVERSION= 0.9
|
|
CATEGORIES= graphics python
|
|
MASTER_SITES= http://software.inl.fr/releases/GvGen/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sbz@FreeBSD.org
|
|
COMMENT= An easy python interface to generate dot files
|
|
|
|
USE_PYTHON= 2.5+
|
|
USE_PYDISTUTILS=easy-install
|
|
PYDISTUTILS_PKGVERSION= 0.9
|
|
PYDISTUTILS_EGGINFO= GvGen-${PORTVERSION}-py${PYTHON_VER}.egg-info
|
|
|
|
PORTDOCS= user-guide.tex.lyx
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/${f} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|