1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-31 05:41:08 +00:00
freebsd-ports/devel/eric/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

50 lines
1.3 KiB
Makefile

# New ports collection makefile for: eric
# Date created: 20 January 2004
# Whom: leafy <leafy@leafy.idv.tw>
#
# $FreeBSD$
#
PORTNAME= eric
PORTVERSION= 3.9.4
PORTREVISION= 2
CATEGORIES= devel python
MASTER_SITES= SF
MASTER_SITE_SUBDIR= eric-ide
MAINTAINER= leafy7382@gmail.com
COMMENT= A Python IDE implemented using PyQt and QScintilla
BUILD_DEPENDS= ${LOCALBASE}/lib/libqscintilla.so:${PORTSDIR}/x11-toolkits/qscintilla \
${LOCALBASE}/bin/sip:${PORTSDIR}/devel/py-sip \
pyuic:${PORTSDIR}/x11-toolkits/py-qt
RUN_DEPENDS= ${BUILD_DEPENDS}
USE_PYTHON= yes
NO_BUILD= yes
PLIST_FILES= bin/eric3 bin/eric3-api bin/eric3-doc bin/eric3-helpviewer \
bin/eric3-qregexp bin/eric3-re bin/eric3-trpreviewer \
bin/eric3-uipreviewer bin/eric3-unittest bin/eric3-configure \
%%PYTHON_SITELIBDIR%%/sitecustomize.pyc \
%%PYTHON_SITELIBDIR%%/sitecustomize.py \
%%PYTHON_SITELIBDIR%%/eric3config.py \
%%PYTHON_SITELIBDIR%%/eric3config.pyc
PLISTDIR= ${PYTHON_SITELIBDIR}/eric3
.include <bsd.port.pre.mk>
do-install:
(cd ${WRKSRC} && ${PYTHON_CMD} install.py -b ${PREFIX}/bin/ \
-d ${PYTHONPREFIX_SITELIBDIR} )
post-install:
.for dir in ${PLISTDIR}
@${FIND} ${dir} ! -type d | \
${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST}
@${FIND} ${dir} -type d | ${SORT} -r | \
${SED} 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
.endfor
.include <bsd.port.post.mk>