1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00
freebsd-ports/cad/klayout/Makefile
Gerald Pfeifer 04d6f52202 Bump PORTREVISIONs for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using using Mk/bsd.octave.mk which in turn has USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
   c++11-lang, c++0x, c11, or gcc-c++11-lib.

PR:		216707
2017-04-01 15:23:30 +00:00

53 lines
1.3 KiB
Makefile

# $FreeBSD$
PORTNAME= klayout
PORTVERSION= 0.24.9
PORTREVISION= 1
CATEGORIES= cad
MASTER_SITES= http://www.klayout.org/downloads/source/
MAINTAINER= hrs@FreeBSD.org
COMMENT= Qt-based GDS2 Viewer
LICENSE= GPLv2
USES= compiler:c++0x execinfo gmake python
USE_RUBY= yes
USE_QT4= corelib designer gui network moc_build sql uic_build \
rcc_build qt3support xml
USE_LDCONFIG= yes
PLIST_FILES= bin/klayout \
bin/strm2cif \
bin/strm2dxf \
bin/strm2gds \
bin/strm2oas \
bin/strm2txt \
bin/strmclip \
bin/strmcmp \
bin/strmxor \
lib/libklayout.so
PLATFORMKEYWORD=freebsd-32-gcc-release
BROKEN_sparc64= Does not compile on sparc64: gcc bug
do-build:
cd ${WRKSRC} && \
${SETENV} CC=${CC} CXX=${CXX} CFLAGS="${CFLAGS}" \
CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" \
_MAKE_JOBS="${_MAKE_JOBS}" LOCALBASE="${LOCALBASE}" \
${SH} build.sh -platform ${PLATFORMKEYWORD} \
-qtbin ${QT_BINDIR} \
-qtinc ${QT_INCDIR} \
-qtlib ${QT_LIBDIR} \
-python ${PYTHON_CMD}
do-install:
cd ${WRKSRC}/bin.${PLATFORMKEYWORD} && \
${INSTALL_PROGRAM} ${PLIST_FILES:Mbin/*:S,^bin/,,} \
${STAGEDIR}${PREFIX}/bin
cd ${WRKSRC}/build.${PLATFORMKEYWORD}/main && \
${INSTALL_LIB} ${PLIST_FILES:Mlib/*:S,^lib/,,} \
${STAGEDIR}${PREFIX}/lib
.include <bsd.port.mk>