4942ce5a7d
- Add significantly better support in bsd.python.mk for working with Python Eggs and the easy_install system Tested by: pointyhat runs Approved by: pav (portmgr) Most work by: perky Thanks to: pav
34 lines
712 B
Makefile
34 lines
712 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: pythondialog
|
|
# Date created: Sep 12, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dialog
|
|
PORTVERSION= 2.7
|
|
PORTREVISION= 3
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= pythondialog
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= pythondialog-${PORTVERSION}
|
|
|
|
MAINTAINER= mek@mek.uz.ua
|
|
COMMENT= Python interface to dialog(3)
|
|
|
|
RUN_DEPENDS= cdialog:${PORTSDIR}/devel/cdialog
|
|
|
|
USE_BZIP2= yes
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_PKGNAME= pythondialog
|
|
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/py-dialog
|
|
|
|
post-install:
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/demo.py ${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|