Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 178739 Details for
Bug 155974
[science overlay] sci-misc/salome-* (New packages)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
Next try
salome-kernel-4.1.4.ebuild (text/plain), 5.44 KB, created by
Bert Karwatzki
on 2009-01-16 23:37:21 UTC
(
hide
)
Description:
Next try
Filename:
MIME Type:
Creator:
Bert Karwatzki
Created:
2009-01-16 23:37:21 UTC
Size:
5.44 KB
patch
obsolete
># Copyright 1999-2008 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: $ > >inherit autotools distutils eutils flag-o-matic toolchain-funcs versionator python multilib > > >DESCRIPTION="SALOME : The Open Source Integration Platform for Numerical Simulation. KERNEL Component" >HOMEPAGE="http://www.salome-platform.org" >SRC_URI="http://files.opencascade.com/Salome${PV}/src${PV}.tar.gz" > >LICENSE="GPL-2" >KEYWORDS="~amd64 ~x86" >SLOT="0" >IUSE="debug doc mpi opengl openpbs" >IUSE="debug doc mpi openpbs" > >RDEPEND="opengl? ( virtual/opengl ) > mpi? ( sys-cluster/mpich2 ) > debug? ( dev-util/cppunit ) > openpbs? ( sys-cluster/torque ) > dev-python/omniorbpy > >=net-misc/omniORB-4.1.2 > x11-libs/qwt:0 > >=sci-libs/vtk-5.0.0 > >=sci-libs/opencascade-6.2" > ># Note that Corba is apparently not optional in this module > >DEPEND="${RDEPEND} > app-doc/doxygen > media-gfx/graphviz > dev-libs/boost > >=dev-python/PyQt-3.13 > >=dev-python/sip-4.1.3 > dev-python/numeric > dev-python/docutils > dev-lang/swig > >=x11-libs/qt-3.3.3 > dev-lang/tk > dev-lang/tcl > sci-libs/hdf5" > >MODULE_NAME="KERNEL" >MY_S="${WORKDIR}/src${PV}/${MODULE_NAME}_SRC_${PV}" >INSTALL_DIR="/opt/salome-${PV}/${MODULE_NAME}" >KERNEL_ROOT_DIR="/opt/salome-${PV}/${MODULE_NAME}" >export OPENPBS="/usr" > >src_unpack() { > python_version > distutils_python_version > ewarn "Python 2.4 is highly recommended for Salome..." > > #Warn about mpi use flag for hdf5 > if built_with_use sci-libs/hdf5 mpi ; then > ewarn "mpi use flag enabled for sci-libs/hdf5, this may cause the build to fail for salome-kernel" > fi > > if ! built_with_use sci-libs/vtk python ; then > die "You must rebuild sci-libs/vtk with python USE flag" > fi > > unpack ${A} > cd "${MY_S}" ># epatch "${FILESDIR}"/${P}_openpbs.patch ># epatch "${FILESDIR}"/${P}-Batch_Couple.patch ># epatch "${FILESDIR}"/${P}-omniorb_4.1.patch > > # If Python 2.5 is planned to be used, the following patch must be applied. This, however, > # needs to be thoroughly tested! > if version_is_at_least "2.5" "${PYVER}"; then > epatch "${FILESDIR}"/${P}-pyobject.patch > fi > > # Fix for mpich2 detection, this is also used by salome-component at least ># epatch "${FILESDIR}"/${P}-mpich2.patch > # Gcc 4.3 support ># if version_is_at_least "4.3" $(gcc-version) ; then ># epatch "${FILESDIR}"/${P}-gcc-4.3.patch ># fi > > # Correct the Salome version number ># sed -i "s:3.2.5:${PV}:g" configure.ac > > ./clean_configure > ./build_configure >} > > >src_compile() { > cd "${MY_S}" > > local myconf="--with-tcl=/usr/$(get_libdir)/ --with-tk=/usr/$(get_libdir)/" > > # Compiler and linker flags > if use amd64 ; then > append-flags -m64 > fi > > # CXXFLAGS are slightly modified to allow the compilation of > # salome-kernel with OpenCascade and gcc-4.1.x > if version_is_at_least "4.1" $(gcc-version) ; then > append-flags -ffriend-injection -fpermissive > fi > > # Specifying --without-<flag> for mpi / mpich / openpbs > # has the same effect as turning it on > # so we just ommit it if it's not required to turn it off > if use mpi ; then > myconf="${myconf} --with-mpi --with-mpich" > fi > if use openpbs ; then > myconf="${myconf} --with-openpbs" > fi > ># --with-python-site=${INSTALL_DIR}/$(get_libdir)/python${PYVER}/site-packages/salome \ ># --with-python-site-exec=${INSTALL_DIR}/$(get_libdir)/python${PYVER}/site-packages/salome \ > > # Configuration > econf --prefix=${INSTALL_DIR} \ > --docdir=${INSTALL_DIR}/share/doc/salome \ > --infodir=${INSTALL_DIR}/share/info \ > --datadir=${INSTALL_DIR}/share/salome \ > --with-python-site=${INSTALL_DIR}/$(get_libdir)/python${PYVER}/site-packages/salome \ > --with-python-site-exec=${INSTALL_DIR}/$(get_libdir)/python${PYVER}/site-packages/salome \ > --enable-corba-gen \ > ${myconf} \ > $(use_enable debug ) \ > $(use_enable !debug production ) \ > $(use_with debug cppunit /usr ) \ > || die "configuration failed" > > # Compilation > emake || die "compilation failed" >} > > >src_install() { > cd "${MY_S}" > > > # Installation ># emake prefix="${D}/${INSTALL_DIR}" \ ># docdir="${D}/${INSTALL_DIR}/share/doc/salome" \ ># infodir="${D}/${INSTALL_DIR}/share/info" \ ># datadir="${D}/${INSTALL_DIR}/share/salome" \ ># libdir="${D}/${INSTALL_DIR}/$(get_libdir)/salome" \ ># pythondir="${D}/${INSTALL_DIR}/$(get_libdir)/python${PYVER}/site-packages" install \ ># || die "emake install failed" > emake DESTDIR="${D}" install || die "emake install failed" ># einstall || die "einstall failed" > ># if use amd64 ; then ># dosym ${INSTALL_DIR}/lib64 ${INSTALL_DIR}/lib ># fi > > echo "KERNEL_ROOT_DIR=${INSTALL_DIR}" > ./90${P} > echo "LDPATH=${INSTALL_DIR}/lib/salome" >> ./90${P} > echo "PATH=${INSTALL_DIR}/bin/salome" >> ./90${P} > echo "PYTHONPATH=${INSTALL_DIR}/$(get_libdir)/python${PYVER}/site-packages/salome" >> ./90${P} > doenvd 90${P} > if use doc ; then > dodoc AUTHORS ChangeLog INSTALL NEWS README README.FIRST.txt > fi > > # Fix an import python module problem > sed -i 's@import CORBA@from omniORB import CORBA@' "${D}"/"${INSTALL_DIR}"/bin/salome/runSalome.py > > # Install icon and .desktop for menu entry > doicon "${FILESDIR}"/${PN}.png > make_desktop_entry runSalome Salome ${PN}.png "Science;Engineering" >} > >pkg_postinst() { > > elog "Run \`env-update && source /etc/profile\`" > elog "now to set up the correct paths." > elog "" > > ewarn "note a small change to /etc/hosts may be required" > ewarn "salome doesn't seem to recognise localhost within the hosts file" > ewarn "a line such as" > ewarn "127.0.0.1 name.domain name" > ewarn "may be required within /etc/hosts" > ewarn "" >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 155974
:
102571
|
102572
|
102573
|
114639
|
114650
|
114651
|
114653
|
114655
|
114657
|
114659
|
114660
|
114662
|
114664
|
120027
|
120226
|
131980
|
131981
|
131983
|
137331
|
137336
|
137338
|
137719
|
138048
|
138578
|
138580
|
138581
|
138582
|
138583
|
138584
|
138586
|
138588
|
138877
|
138896
|
138925
|
138960
|
139043
|
139045
|
139956
|
139958
|
139964
|
139965
|
139973
|
140002
|
140005
|
140007
|
140030
|
140032
|
140064
|
140066
|
140068
|
140071
|
140073
|
140086
|
140088
|
140280
|
140283
|
140301
|
140303
|
140366
|
140368
|
140373
|
140375
|
140378
|
140385
|
140386
|
140455
|
140466
|
140468
|
140472
|
140474
|
140637
|
141242
|
141243
|
141250
|
141252
|
141254
|
141256
|
141257
|
141462
|
141473
|
141474
|
141475
|
141565
|
141572
|
142892
|
142894
|
142905
|
143984
|
143986
|
144011
|
144061
|
144063
|
144084
|
144086
|
144089
|
144091
|
144093
|
144098
|
144105
|
144107
|
144117
|
144119
|
144182
|
144184
|
144185
|
144187
|
144188
|
144198
|
144223
|
144305
|
144306
|
144308
|
144310
|
144311
|
144313
|
144314
|
144316
|
144318
|
144320
|
144347
|
144348
|
144350
|
144352
|
144353
|
144354
|
144356
|
144357
|
144557
|
145883
|
145885
|
145887
|
146138
|
146414
|
147142
|
147146
|
148604
|
148606
|
148607
|
148609
|
148611
|
148613
|
148615
|
148617
|
148618
|
148619
|
150326
|
151031
|
151032
|
151034
|
151036
|
151038
|
151039
|
151040
|
151042
|
151044
|
151045
|
152339
|
152341
|
152343
|
152345
|
152347
|
152349
|
152351
|
152353
|
152355
|
152357
|
152359
|
152361
|
152363
|
152365
|
152369
|
152371
|
152979
|
153067
|
154323
|
154325
|
154327
|
154329
|
154331
|
154333
|
154335
|
158563
|
161347
|
163275
|
163841
|
163842
|
164412
|
164611
|
168552
|
168560
|
168624
|
168626
|
168724
|
168726
|
168734
|
168736
|
178432
|
178434
| 178739 |
179160
|
179161
|
179162
|
179237
|
179627
|
179628
|
183321
|
183323
|
183324
|
183325
|
183327
|
183329
|
183347
|
183348
|
189058
|
189059
|
189061
|
200799
|
200800
|
200802
|
200803
|
200805
|
200807
|
200809
|
200811
|
200812
|
200813
|
200815
|
200816
|
200818
|
200820
|
200821
|
200823
|
200825
|
204604
|
204699
|
204980
|
205339
|
223869
|
223871
|
232539
|
234261
|
253803
|
253805
|
254743
|
254751
|
254755
|
257260
|
257261
|
268839
|
268883
|
278009
|
286253
|
286255
|
286257
|
286259
|
286261
|
286263
|
286265
|
286267
|
286269
|
286271
|
286273
|
323878