summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2015-05-18 06:31:25 +0000
committerJustin Lecher <jlec@gentoo.org>2015-05-18 06:31:25 +0000
commitf1ccb47e7fc2980a4e572cf10c8fa4f5f65367b0 (patch)
treed540b1f4153a17bbfcab49295056276288979c7a /net-misc
parentMask dev-python/matplotlib[qt5] due to missing keywords at PyQt5, #549774 (diff)
downloadgentoo-2-f1ccb47e7fc2980a4e572cf10c8fa4f5f65367b0.tar.gz
gentoo-2-f1ccb47e7fc2980a4e572cf10c8fa4f5f65367b0.tar.bz2
gentoo-2-f1ccb47e7fc2980a4e572cf10c8fa4f5f65367b0.zip
Drop old
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/omniORB/ChangeLog5
-rw-r--r--net-misc/omniORB/omniORB-4.1.4-r1.ebuild98
2 files changed, 4 insertions, 99 deletions
diff --git a/net-misc/omniORB/ChangeLog b/net-misc/omniORB/ChangeLog
index 726b570dfddf..d5ed92e9b98f 100644
--- a/net-misc/omniORB/ChangeLog
+++ b/net-misc/omniORB/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-misc/omniORB
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v 1.76 2015/05/17 20:20:30 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v 1.77 2015/05/18 06:31:25 jlec Exp $
+
+ 18 May 2015; Justin Lecher <jlec@gentoo.org> -omniORB-4.1.4-r1.ebuild:
+ Drop old
17 May 2015; Pacho Ramos <pacho@gentoo.org> omniORB-4.1.4-r2.ebuild:
ppc64 stable wrt bug #549246
diff --git a/net-misc/omniORB/omniORB-4.1.4-r1.ebuild b/net-misc/omniORB/omniORB-4.1.4-r1.ebuild
deleted file mode 100644
index 5bd786ec292e..000000000000
--- a/net-misc/omniORB/omniORB-4.1.4-r1.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-4.1.4-r1.ebuild,v 1.8 2015/04/08 09:25:31 jlec Exp $
-
-EAPI="3"
-
-# 2.5 is problematic due to bug #261330
-PYTHON_DEPEND="2:2.7"
-
-inherit python eutils multilib
-
-DESCRIPTION="A robust, high-performance CORBA 2 ORB"
-HOMEPAGE="http://omniorb.sourceforge.net/"
-SRC_URI="mirror://sourceforge/omniorb/${P}.tar.gz"
-
-LICENSE="LGPL-2 GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~sparc x86"
-IUSE="doc ssl"
-
-RDEPEND="ssl? ( >=dev-libs/openssl-0.9.6b:0 )"
-DEPEND="${RDEPEND}"
-
-pkg_setup() {
- python_set_active_version 2
-}
-
-src_prepare() {
- # respect ldflags, bug #284191
- epatch "${FILESDIR}"/ldflags.patch \
- "${FILESDIR}"/${P}-openssl-1.patch
-
- sed -i -e 's/^CXXDEBUGFLAGS.*/CXXDEBUGFLAGS = $(OPTCXXFLAGS)/' \
- -e 's/^CDEBUGFLAGS.*/CDEBUGFLAGS = $(OPTCFLAGS)/' \
- mk/beforeauto.mk.in \
- mk/platforms/i586_linux_2.0*.mk || die "sed failed"
-}
-
-src_configure() {
- mkdir build && cd build || die
-
- local 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="$(PYTHON -a)" ECONF_SOURCE=".." econf ${MY_CONF}
-}
-
-src_compile() {
- cd build || die
- emake OPTCFLAGS="${CFLAGS}" OPTCXXFLAGS="${CXXFLAGS}" || die "emake failed"
-}
-
-src_install() {
- cd build || die
- emake DESTDIR="${D}" install || die "emake install failed"
- # this looks redundant
- rm "${D}/usr/bin/omniidlrun.py" || die
-
- cd "${S}"
- dodoc COPYING* CREDITS README* ReleaseNotes* || die
-
- if use doc; then
- dohtml doc/*.html || die
- dohtml -r doc/omniORB || die
- docinto print
- dodoc doc/*.pdf || die
- fi
-
- 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
-}
-
-pkg_postinst() {
- elog "Since 4.1.2, the omniORB init script has been renamed to omniNames for clarity."
- python_mod_optimize omniidl omniidl_be
-}
-
-pkg_postrm() {
- python_mod_cleanup omniidl omniidl_be
-}