090059a210
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)
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
# New ports collection makefile for: wax
|
|
# Date created: 2006-04-03
|
|
# Whom: Nicola Vitale <nivit@email.it>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= wax
|
|
PORTVERSION= 0.3.33
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11-toolkits devel python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}gui
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= A user-friendly layer on top of wxPython
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/${WX_PYTHON_DIR}/wxPython/_wx.py:${PORTSDIR}/x11-toolkits/py-wxPython26
|
|
|
|
NO_BUILD= yes
|
|
USE_PYTHON= yes
|
|
|
|
DATADIR= ${PYTHON_SITELIBDIR}
|
|
|
|
FIND_DIRS= -type d \! -empty
|
|
FIND_DATA= -type f
|
|
FIND_DELETE= \( -name "*.txt" -and -maxdepth 2 \)
|
|
|
|
.if !defined(WITH_EXAMPLES)
|
|
PLIST_SUB= PORTEXAMPLES="@comment "
|
|
.else
|
|
PLIST_SUB= PORTEXAMPLES=""
|
|
.endif
|
|
|
|
do-install:
|
|
@cd ${WRKSRC} && ${FIND} . ${FIND_DIRS} -exec ${MKDIR} ${DATADIR}/{} \;
|
|
@cd ${WRKSRC} && ${FIND} . ${FIND_DELETE} -delete
|
|
@cd ${WRKSRC} && ${FIND} . ${FIND_DATA} -exec ${INSTALL_DATA} {} ${DATADIR}/{} \;
|
|
.if !defined(WITH_EXAMPLES)
|
|
${RM} -r ${DATADIR}/${PORTNAME}/examples
|
|
.else
|
|
${MV} ${DATADIR}/${PORTNAME}/examples ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.if defined(WITH_UNICODE)
|
|
WX_PYTHON_DIR= wx-2.6-gtk2-unicode
|
|
.else
|
|
WX_PYTHON_DIR= wx-2.6-gtk2-ansi
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|