1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00
freebsd-ports/databases/pydbdesigner/Makefile
Edwin Groothuis 090059a210 Bump portrevision due to upgrade of devel/gettext.
The affected ports are the ones with gettext as a run-dependency
according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT
in Makefile (29 of them).

PR:             ports/124340
Submitted by:   edwin@
Approved by:    portmgr (pav)
2008-06-06 14:17:21 +00:00

47 lines
1.1 KiB
Makefile

# New ports collection makefile for: pydbdesigner
# Date created: 2003-01-02
# Whom: Alan Eldridge <alane@geeksrus.net>
#
# $FreeBSD$
#
PORTNAME= pydbdesigner
PORTVERSION= 0.1.4.1
PORTREVISION= 2
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR=${PORTNAME}
MAINTAINER= xride@FreeBSD.org
COMMENT= Graphical designer for relational databases
EXTRACT_AFTER_ARGS= | ${TAR} --exclude CVS -xf -
USE_PYTHON= 2.2+
USE_WX= 2.4
WX_COMPS= python
REINPLACE_ARGS= -i ""
WRKSRC= ${WRKDIR}/PyDBDesigner
NO_BUILD= yes
MY_SITELIBDIR= ${PYTHON_SITELIBDIR}/${PORTNAME}
post-patch:
@${REINPLACE_CMD} -e 's,/usr/bin/env *python,${PYTHON_CMD},' \
${WRKSRC}/main.py
do-install:
${MKDIR} ${MY_SITELIBDIR}
cd ${WRKSRC};\
${FIND} . | cut -c3- \
| ${CPIO} -pdmv -R ${LIBOWN}:${LIBGRP} ${MY_SITELIBDIR};\
cd ${MY_SITELIBDIR};\
${FIND} . -type d | cut -c3- | ${XARGS} ${CHMOD} ${BINMODE};\
${FIND} . -type f | cut -c3- | ${XARGS} ${CHMOD} ${LIBMODE};\
${RM} -f ${PREFIX}/bin/${PORTNAME};\
${LN} -s ${MY_SITELIBDIR}/main.py ${PREFIX}/bin/${PORTNAME}
${CHMOD} ${BINMODE} ${MY_SITELIBDIR}/main.py
.include <bsd.port.mk>