diff options
author | Caleb Tennis <caleb@gentoo.org> | 2007-11-03 17:04:58 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2007-11-03 17:04:58 +0000 |
commit | 1d02358307846c754b2244bec0ee203049ae59f7 (patch) | |
tree | 7a7ff48b813130f41b0594fc5c36ecc6465a414a /net-misc/omniORB | |
parent | Any and all ProjectM functionality disabled with extreme prejudice, closes bu... (diff) | |
download | gentoo-2-1d02358307846c754b2244bec0ee203049ae59f7.tar.gz gentoo-2-1d02358307846c754b2244bec0ee203049ae59f7.tar.bz2 gentoo-2-1d02358307846c754b2244bec0ee203049ae59f7.zip |
Version bump
(Portage version: 2.1.3.16)
Diffstat (limited to 'net-misc/omniORB')
-rw-r--r-- | net-misc/omniORB/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/omniORB/files/digest-omniORB-4.1.1 | 3 | ||||
-rw-r--r-- | net-misc/omniORB/omniORB-4.1.1.ebuild | 80 |
3 files changed, 89 insertions, 1 deletions
diff --git a/net-misc/omniORB/ChangeLog b/net-misc/omniORB/ChangeLog index 8e1b7a50b49b..b09b184d3a70 100644 --- a/net-misc/omniORB/ChangeLog +++ b/net-misc/omniORB/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/omniORB # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v 1.46 2007/08/30 13:20:46 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v 1.47 2007/11/03 17:04:58 caleb Exp $ + +*omniORB-4.1.1 (03 Nov 2007) + + 03 Nov 2007; Caleb Tennis <caleb@gentoo.org> +omniORB-4.1.1.ebuild: + Version bump 30 Aug 2007; Christian Heim <phreak@gentoo.org> metadata.xml: Removing liquidx from metadata due to his retirement (see #171155 for diff --git a/net-misc/omniORB/files/digest-omniORB-4.1.1 b/net-misc/omniORB/files/digest-omniORB-4.1.1 new file mode 100644 index 000000000000..a15adad0bbf0 --- /dev/null +++ b/net-misc/omniORB/files/digest-omniORB-4.1.1 @@ -0,0 +1,3 @@ +MD5 3c62ee0895b0619c6b4d5c067206e286 omniORB-4.1.1.tar.gz 3183418 +RMD160 5fba9144ae17ac6ab2cd1f96664af20d6e1f8911 omniORB-4.1.1.tar.gz 3183418 +SHA256 1e2e2de5e37b951b7a313de909b0d14ec65d6a41fb3bc64b8fefdbb31ba2210b omniORB-4.1.1.tar.gz 3183418 diff --git a/net-misc/omniORB/omniORB-4.1.1.ebuild b/net-misc/omniORB/omniORB-4.1.1.ebuild new file mode 100644 index 000000000000..8a6ebc0c5be4 --- /dev/null +++ b/net-misc/omniORB/omniORB-4.1.1.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-4.1.1.ebuild,v 1.1 2007/11/03 17:04:58 caleb Exp $ + +inherit python + +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} + sed -i -e "s/^CXXDEBUGFLAGS.*/CXXDEBUGFLAGS = ${CXXFLAGS}/" \ + -e "s/^CDEBUGFLAGS.*/CDEBUGFLAGS = ${CFLAGS}/" \ + ${S}/mk/beforeauto.mk.in \ + ${S}/mk/platforms/i586_linux_2.0_*.mk +} + +src_compile() { + cd "${S}" + + mkdir "${S}/build" + cd "${S}/build" + + MY_CONF="--prefix=/usr --with-omniORB-config=/etc/omniorb/omniORB.cfg --with-omniNames-logdir=/var/log/omniORB" + + use ssl && MY_CONF="${MY_CONF} --with-openssl=/usr" + + python_version + PYTHON=/usr/bin/python${PYVER} ../configure ${MY_CONF} \ + || die "./configure failed" + + emake || die "make failed" +} + +src_install () { + + cd "${S}/build" + emake DESTDIR="${D}" install + + cd "${S}" + dodoc COPYING* CREDITS README* ReleaseNotes* + + cd "${S}/doc" + docinto print + dodoc *.ps + dodoc *.tex + dodoc *.pdf + + dodir /etc/env.d/ + echo "PATH=/usr/share/omniORB/bin/scripts" > "${D}"/etc/env.d/90omniORB + echo "OMNIORB_CONFIG=/etc/omniorb/omniORB.cfg" >> "${D}"/etc/env.d/90omniORB + newinitd ${FILESDIR}/omniORB-4.0.0 omniORB + + cp "${S}/sample.cfg" "${S}/omniORB.cfg" + dodir /etc/omniorb + insinto /etc/omniorb + doins "${S}/omniORB.cfg" + + keepdir /var/log/omniORB +} + +pkg_postinst() { + echo "Performing post-installation routines for ${P}." + + if [ ! -f "${ROOT}etc/omniorb/omniORB.cfg" ] ; then + echo "ORBInitialHost `uname -n`" > "${ROOT}etc/omniorb/omniORB.cfg" + echo "ORBInitialPort 2809" >> "${ROOT}etc/omniorb/omniORB.cfg" + fi + +} |