summaryrefslogtreecommitdiff
path: root/cad/klayout/Makefile
blob: be7c3d0fa9f035c24d9d9cd133078ee4b1159c29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# $FreeBSD$

PORTNAME=	klayout
PORTVERSION=	0.24.9
PORTREVISION=	3
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 gmake python qt:4
USE_RUBY=	yes
USE_QT=		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>