Gentoo Archives: gentoo-commits

From: "Andreas HAttel (dilfridge)" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-electronics/klayout/files: klayout-0.21.7-Makefile.conf.linux-gentoo
Date: Wed, 30 Mar 2011 21:50:11
Message-Id: 20110330214959.BBE9C20054@flycatcher.gentoo.org
1 dilfridge 11/03/30 21:49:59
2
3 Added: klayout-0.21.7-Makefile.conf.linux-gentoo
4 Log:
5 Version bump
6
7 (Portage version: 2.1.9.45/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sci-electronics/klayout/files/klayout-0.21.7-Makefile.conf.linux-gentoo
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/klayout/files/klayout-0.21.7-Makefile.conf.linux-gentoo?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/klayout/files/klayout-0.21.7-Makefile.conf.linux-gentoo?rev=1.1&content-type=text/plain
14
15 Index: klayout-0.21.7-Makefile.conf.linux-gentoo
16 ===================================================================
17
18 # Configuration file for gentoo-linux
19 # Compiler options
20
21 # Compiler general
22 INC=-I$(TOP_SOURCE) -I$(SOURCE) -I. -I$(QTINCLUDE)
23 DEFS=-DQT_THREAD_SUPPORT -DQT3_SUPPORT
24
25 # C++
26 CXXOPT_DEP=-MM -MG
27 CXXWARN=-Wall -pedantic -Wno-deprecated -Woverloaded-virtual \
28 -Wsign-promo -Wsynth -Wno-long-long -Wno-strict-aliasing
29 CXXOPT=-c $(CXXFLAGS) -o
30 CXXOPT_SO=-fPIC $(CXXOPT)
31
32 # C
33 CCOPT_DEP=-MM -MG
34 CCWARN=
35 CCOPT=-c $(CFLAGS) -o
36 CCOPT_SO=-fPIC $(CCOPT)
37
38 # Linker
39 LINK=$(CXX)
40 LOPT=-Wl,-E ${LDFLAGS} -o
41 LOPT_SO=-shared -fPIC $(LOPT) -o
42
43 LIBS=-L$(QTLIB) -lQtGui -lQtCore -lQtXml -lrt -lstdc++ -lcrypt -ldl -lz
44
45 .PHONY: install
46 install:
47 mkdir -p $(INSTALL_BINDIR)
48 cp main/$(EXEC_NAME) $(INSTALL_BINDIR)
49 for bin in $(OTHER_BIN) ; \
50 do \
51 cp main/$$bin $(INSTALL_BINDIR) ; \
52 done
53 for plugin in $(PLUGINS) ; \
54 do \
55 cp $$plugin/*.so $(INSTALL_BINDIR) ; \
56 done
57 chmod 755 $(INSTALL_BINDIR) $(INSTALL_BINDIR)/*