blob: 13122fc5f21a00c2b0e449332b0d1bbd1a30e405 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-4.1.2.ebuild,v 1.1 2008/04/02 21:20:13 caster Exp $
inherit python eutils
DESCRIPTION="A robust, high-performance CORBA 2 ORB"
SRC_URI="mirror://sourceforge/omniorb/${PF}.tar.gz"
HOMEPAGE="http://omniorb.sourceforge.net/"
IUSE="ssl"
LICENSE="LGPL-2 GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
DEPEND="dev-lang/python
ssl? ( >=dev-libs/openssl-0.9.6b )"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e "s/^CXXDEBUGFLAGS.*/CXXDEBUGFLAGS = ${CXXFLAGS}/" \
-e "s/^CDEBUGFLAGS.*/CDEBUGFLAGS = ${CFLAGS}/" \
mk/beforeauto.mk.in \
mk/platforms/i586_linux_2.0_*.mk || die "sed failed"
}
src_compile() {
mkdir build || die
cd build
MY_CONF="--prefix=/usr --with-omniORB-config=/etc/omniorb/omniORB.cfg \
--with-omniNames-logdir=/var/log/omniORB --libdir=/usr/$(get_libdir)"
use ssl && MY_CONF="${MY_CONF} --with-openssl=/usr"
python_version
PYTHON=/usr/bin/python${PYVER} ../configure ${MY_CONF} \
|| die "./configure failed"
emake || die "emake failed"
}
src_install () {
cd "${S}/build"
emake DESTDIR="${D}" install || die "emake install failed"
cd "${S}"
dodoc COPYING* CREDITS README* ReleaseNotes* || die
docinto print
dodoc doc/*.ps doc/*.pdf || die
dodir /etc/env.d/
cat <<- EOF > "${T}/90omniORB"
PATH="/usr/share/omniORB/bin/scripts"
OMNIORB_CONFIG="/etc/omniorb/omniORB.cfg"
EOF
doenvd "${T}/90omniORB" || die
doinitd "${FILESDIR}"/omniNames || die
cp "sample.cfg" "${T}/omniORB.cfg" || die
cat <<- EOF >> "${T}/omniORB.cfg"
# resolve the omniNames running on localhost
InitRef = NameService=corbaname::localhost
EOF
dodir /etc/omniorb
insinto /etc/omniorb
doins "${T}/omniORB.cfg" || die
keepdir /var/log/omniORB
}
src_postinst() {
elog "Since 4.1.2, the omniORB init script has been renamed to omniNames for clarity."
}
|