Gentoo Archives: gentoo-commits

From: "Caleb Tennis (caleb)" <caleb@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/omniORB: ChangeLog omniORB-4.1.1.ebuild
Date: Sat, 03 Nov 2007 17:05:08
Message-Id: E1IoMQc-0007hO-Qw@stork.gentoo.org
1 caleb 07/11/03 17:04:58
2
3 Modified: ChangeLog
4 Added: omniORB-4.1.1.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.1.3.16)
8
9 Revision Changes Path
10 1.47 net-misc/omniORB/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/omniORB/ChangeLog?rev=1.47&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/omniORB/ChangeLog?rev=1.47&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/omniORB/ChangeLog?r1=1.46&r2=1.47
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v
19 retrieving revision 1.46
20 retrieving revision 1.47
21 diff -u -r1.46 -r1.47
22 --- ChangeLog 30 Aug 2007 13:20:46 -0000 1.46
23 +++ ChangeLog 3 Nov 2007 17:04:58 -0000 1.47
24 @@ -1,6 +1,11 @@
25 # ChangeLog for net-misc/omniORB
26 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v 1.46 2007/08/30 13:20:46 phreak Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v 1.47 2007/11/03 17:04:58 caleb Exp $
29 +
30 +*omniORB-4.1.1 (03 Nov 2007)
31 +
32 + 03 Nov 2007; Caleb Tennis <caleb@g.o> +omniORB-4.1.1.ebuild:
33 + Version bump
34
35 30 Aug 2007; Christian Heim <phreak@g.o> metadata.xml:
36 Removing liquidx from metadata due to his retirement (see #171155 for
37
38
39
40 1.1 net-misc/omniORB/omniORB-4.1.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/omniORB/omniORB-4.1.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/omniORB/omniORB-4.1.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: omniORB-4.1.1.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-4.1.1.ebuild,v 1.1 2007/11/03 17:04:58 caleb Exp $
50
51 inherit python
52
53 DESCRIPTION="A robust, high-performance CORBA 2 ORB"
54 SRC_URI="mirror://sourceforge/omniorb/${PF}.tar.gz"
55 HOMEPAGE="http://omniorb.sourceforge.net/"
56
57 IUSE="ssl"
58
59 LICENSE="LGPL-2 GPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
62
63 DEPEND="dev-lang/python
64 ssl? ( >=dev-libs/openssl-0.9.6b )"
65
66 src_unpack() {
67 unpack ${A}
68 sed -i -e "s/^CXXDEBUGFLAGS.*/CXXDEBUGFLAGS = ${CXXFLAGS}/" \
69 -e "s/^CDEBUGFLAGS.*/CDEBUGFLAGS = ${CFLAGS}/" \
70 ${S}/mk/beforeauto.mk.in \
71 ${S}/mk/platforms/i586_linux_2.0_*.mk
72 }
73
74 src_compile() {
75 cd "${S}"
76
77 mkdir "${S}/build"
78 cd "${S}/build"
79
80 MY_CONF="--prefix=/usr --with-omniORB-config=/etc/omniorb/omniORB.cfg --with-omniNames-logdir=/var/log/omniORB"
81
82 use ssl && MY_CONF="${MY_CONF} --with-openssl=/usr"
83
84 python_version
85 PYTHON=/usr/bin/python${PYVER} ../configure ${MY_CONF} \
86 || die "./configure failed"
87
88 emake || die "make failed"
89 }
90
91 src_install () {
92
93 cd "${S}/build"
94 emake DESTDIR="${D}" install
95
96 cd "${S}"
97 dodoc COPYING* CREDITS README* ReleaseNotes*
98
99 cd "${S}/doc"
100 docinto print
101 dodoc *.ps
102 dodoc *.tex
103 dodoc *.pdf
104
105 dodir /etc/env.d/
106 echo "PATH=/usr/share/omniORB/bin/scripts" > "${D}"/etc/env.d/90omniORB
107 echo "OMNIORB_CONFIG=/etc/omniorb/omniORB.cfg" >> "${D}"/etc/env.d/90omniORB
108 newinitd ${FILESDIR}/omniORB-4.0.0 omniORB
109
110 cp "${S}/sample.cfg" "${S}/omniORB.cfg"
111 dodir /etc/omniorb
112 insinto /etc/omniorb
113 doins "${S}/omniORB.cfg"
114
115 keepdir /var/log/omniORB
116 }
117
118 pkg_postinst() {
119 echo "Performing post-installation routines for ${P}."
120
121 if [ ! -f "${ROOT}etc/omniorb/omniORB.cfg" ] ; then
122 echo "ORBInitialHost `uname -n`" > "${ROOT}etc/omniorb/omniORB.cfg"
123 echo "ORBInitialPort 2809" >> "${ROOT}etc/omniorb/omniORB.cfg"
124 fi
125
126 }
127
128
129
130 --
131 gentoo-commits@g.o mailing list