blob: aca64dbc637c729489dacc8f35b9de85db652ffe (
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
|
# New ports collection makefile for: py-editobj
# Date created: 2005-10-05
# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
#
# $FreeBSD$
#
PORTNAME= editobj
PORTVERSION= 0.5.7
CATEGORIES= graphics python
MASTER_SITES= http://download.gna.org/songwrite/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= EditObj-${PORTVERSION}
MAINTAINER= acardenas@bsd.org.pe
COMMENT= Create and display a Tkinter dialog box for editing any Python object
DIST_SUBDIR= python
USE_PYTHON= yes
USE_PYDISTUTILS= yes
WRKSRC= ${WRKDIR}/EditObj-${PORTVERSION}
EXAMPLESDIR= ${PREFIX}/share/examples/py-editobj
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${EXAMPLESDIR}
${INSTALL_DATA} ${WRKSRC}/demo/* ${EXAMPLESDIR}
.endif
.include <bsd.port.mk>
|