mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
c8ceaef61d
- don't exclude .txt files from ${PYTHON_SITELIBDIR}; that broke the port. - bump PORTREVISION Noticed by: maintainer Pointy hat to: petef
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
# New ports collection makefile for: wxGlade
|
|
# Date created: 1 May 2003
|
|
# Whom: Michal Pasternak <dotz@irc.pl>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wxGlade
|
|
PORTVERSION= 0.2.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel x11-toolkits python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= wxglade
|
|
|
|
MAINTAINER= dotz@irc.pl
|
|
COMMENT= GUI builder for wxPython/wxWindows written in Python
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/wxPython/wx.py:${PORTSDIR}/x11-toolkits/py-wxPython
|
|
|
|
USE_PYTHON= yes
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
@${MKDIR} ${PYTHON_SITELIBDIR}/${PORTNAME}
|
|
(cd ${WRKSRC} && ${FIND} [^d]* \! -name ".cvsignore" -type f | cpio -R ${SHAREOWN}:${SHAREGRP} -pdum ${PYTHON_SITELIBDIR}/${PORTNAME})
|
|
${CHMOD} -R 644 ${PYTHON_SITELIBDIR}/${PORTNAME}
|
|
${FIND} ${PYTHON_SITELIBDIR}/${PORTNAME} -type d | xargs ${CHMOD} 755
|
|
${CHMOD} 755 ${PYTHON_SITELIBDIR}/${PORTNAME}/wxglade.py \
|
|
${PYTHON_SITELIBDIR}/${PORTNAME}/xrc2wxg.py
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
(cd ${WRKSRC}/docs && ${FIND} . -type f | cpio -R ${SHAREOWN}:${SHAREGRP} -pdum ${DOCSDIR})
|
|
${CHMOD} -R 644 ${DOCSDIR}
|
|
${FIND} ${DOCSDIR} -type d | xargs ${CHMOD} 755
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|