blob: 462a2fcd96464db728513b4aa480a7200e5fe5da (
plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/omniorbpy/omniorbpy-3.0.ebuild,v 1.3 2008/05/29 16:22:55 hawking Exp $
inherit eutils python multilib
MY_P=${P/omniorb/omniORB}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A robust high-performance CORBA ORB for Python."
HOMEPAGE="http://omniorb.sourceforge.net/"
SRC_URI="mirror://sourceforge/omniorb/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="ssl"
DEPEND=">=net-misc/omniORB-4.0.7
ssl? ( dev-libs/openssl )"
src_unpack() {
unpack ${A}
sed -i -e "s/^CXXDEBUGFLAGS.*/CXXDEBUGFLAGS = ${CXXFLAGS}/" \
-e "s/^CDEBUGFLAGS.*/CDEBUGFLAGS = ${CFLAGS}/" \
"${S}"/mk/beforeauto.mk.in
sed -i -e 's#^.*compileall[^\\]*#/bin/true;#' \
"${S}"/python/dir.mk \
"${S}"/python/omniORB/dir.mk \
"${S}"/python/COS/dir.mk \
"${S}"/python/CosNaming/dir.mk \
"${S}"/CosNaming__POA/dir.mk
}
src_compile() {
MY_CONF=""
use ssl && MY_CONF="${MY_CONF} --with-openssl=/usr"
python_version
MY_PY=/usr/bin/python${PYVER}
PYTHON=${MY_PY} econf \
--with-omniorb=/usr \
${MY_CONF} || die "./configure failed"
emake || die " make failed"
}
src_install() {
# make files are crap!
sed -i -e "s/'prefix[\t ]*:= \/usr'/'prefix := \${DESTDIR}\/usr'/" \
mk/beforeauto.mk
# won't work without these really very ugly hack...
# maybe someone can do better..
mv python/omniORB/dir.mk python/omniORB/dir.mk_orig
awk -v STR="ir\\\.idl" '{ if (/^[[:space:]]*$/) flag = 0; tmpstr = $0; if (gsub(STR, "", tmpstr)) flag = 1; if (flag) print "#" $0; else print $0; }' python/omniORB/dir.mk_orig > python/omniORB/dir.mk
mv python/dir.mk python/dir.mk_orig
awk -v STR="Naming\\\.idl" '{ if (/^[[:space:]]*$/) flag = 0; tmpstr = $0; if (gsub(STR, "", tmpstr)) flag = 1; if (flag) print "#" $0; else print $0; }' python/dir.mk_orig > python/dir.mk
make DESTDIR="${D}" install || die " install failed"
dodoc COPYING.LIB README README.Python
dohtml doc/omniORBpy
dodoc doc/omniORBpy.p* # ps,pdf
dodoc doc/tex/* # .bib, .tex
dodir /usr/share/doc/${P}/examples
cp -r examples/* "${D}"/usr/share/doc/${P}/examples
python_version
mv "${D}"/usr/$(get_libdir)/python${PYVER}/site-packages/PortableServer.py \
"${D}"/usr/$(get_libdir)/python${PYVER}/site-packages/omniorbpy_PortableServer.py
mv "${D}"/usr/$(get_libdir)/python${PYVER}/site-packages/CORBA.py \
"${D}"/usr/$(get_libdir)/python${PYVER}/site-packages/omniorbpy_CORBA.py
}
pkg_postinst() {
python_version
python_mod_optimize /usr/$(get_libdir)/python${PYVER}/site-packages
}
pkg_postrm() {
python_mod_cleanup
}
|