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)
32 lines
677 B
Makefile
32 lines
677 B
Makefile
# Ports collection makefile for: klayout
|
|
# Date created: Sat, Apr 28, 2007
|
|
# Whom: Hiroki Sato <hrs@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= klayout
|
|
PORTVERSION= 0.14
|
|
PORTREVISION= 2
|
|
CATEGORIES= cad
|
|
MASTER_SITES= http://www.klayout.de/
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= A Qt-based GDS2 Viewer
|
|
|
|
USE_GMAKE= yes
|
|
USE_QT_VER= 4
|
|
QT_COMPONENTS= corelib gui network moc sql uic rcc qt3support xml
|
|
PLIST_FILES= bin/klayout
|
|
|
|
PLATFORMKEYWORD= freebsd-32-gcc-release
|
|
|
|
do-build:
|
|
cd ${WRKSRC} \
|
|
&& ${SH} build.sh -platform ${PLATFORMKEYWORD} -qt ${LOCALBASE}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin.${PLATFORMKEYWORD}/klayout \
|
|
${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|