diff options
author | Caleb Tennis <caleb@gentoo.org> | 2007-11-03 17:05:47 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2007-11-03 17:05:47 +0000 |
commit | b9dbaef38f90d2e9aff10b6f19353a9eb47c68c3 (patch) | |
tree | 85ddf6cbefd1ee1fdedfb1ee1955674172c2e800 /net-misc | |
parent | Version bump (diff) | |
download | gentoo-2-b9dbaef38f90d2e9aff10b6f19353a9eb47c68c3.tar.gz gentoo-2-b9dbaef38f90d2e9aff10b6f19353a9eb47c68c3.tar.bz2 gentoo-2-b9dbaef38f90d2e9aff10b6f19353a9eb47c68c3.zip |
remove old versions
(Portage version: 2.1.3.16)
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/omniORB/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/omniORB/files/digest-omniORB-4.0.6 | 3 | ||||
-rw-r--r-- | net-misc/omniORB/files/digest-omniORB-4.0.7 | 3 | ||||
-rw-r--r-- | net-misc/omniORB/omniORB-4.0.6.ebuild | 81 | ||||
-rw-r--r-- | net-misc/omniORB/omniORB-4.0.7.ebuild | 81 |
5 files changed, 5 insertions, 169 deletions
diff --git a/net-misc/omniORB/ChangeLog b/net-misc/omniORB/ChangeLog index b09b184d3a70..ba6a6a39a0ec 100644 --- a/net-misc/omniORB/ChangeLog +++ b/net-misc/omniORB/ChangeLog @@ -1,6 +1,10 @@ # 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.47 2007/11/03 17:04:58 caleb Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v 1.48 2007/11/03 17:05:46 caleb Exp $ + + 03 Nov 2007; Caleb Tennis <caleb@gentoo.org> -omniORB-4.0.6.ebuild, + -omniORB-4.0.7.ebuild: + remove old versions *omniORB-4.1.1 (03 Nov 2007) diff --git a/net-misc/omniORB/files/digest-omniORB-4.0.6 b/net-misc/omniORB/files/digest-omniORB-4.0.6 deleted file mode 100644 index 8e1313b2012f..000000000000 --- a/net-misc/omniORB/files/digest-omniORB-4.0.6 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 9fc17e2d91abef27f75728874fa09dd6 omniORB-4.0.6.tar.gz 2795062 -RMD160 ad69c15923d0f76dac2d10cb259bde594d53e0e2 omniORB-4.0.6.tar.gz 2795062 -SHA256 af4ceea8c734b87059cf027d239375357daee7fd3f13fca3d81740f4eae3d371 omniORB-4.0.6.tar.gz 2795062 diff --git a/net-misc/omniORB/files/digest-omniORB-4.0.7 b/net-misc/omniORB/files/digest-omniORB-4.0.7 deleted file mode 100644 index f5a65a74e63d..000000000000 --- a/net-misc/omniORB/files/digest-omniORB-4.0.7 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 9d478031be34232e988f3d5874396499 omniORB-4.0.7.tar.gz 2784040 -RMD160 04e1d7e13000f25178ebd45cef784fbb668586d2 omniORB-4.0.7.tar.gz 2784040 -SHA256 e4c0875794a74ac627b7b74b6098e75c8413bd156856dc434a49c4c112a68af2 omniORB-4.0.7.tar.gz 2784040 diff --git a/net-misc/omniORB/omniORB-4.0.6.ebuild b/net-misc/omniORB/omniORB-4.0.6.ebuild deleted file mode 100644 index 391dd031d37f..000000000000 --- a/net-misc/omniORB/omniORB-4.0.6.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# 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.0.6.ebuild,v 1.3 2007/04/28 17:00:45 swegener 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 - - #/usr/bin/python ${ROOT}usr/share/doc/${PF}/mkomnistubs.py -} diff --git a/net-misc/omniORB/omniORB-4.0.7.ebuild b/net-misc/omniORB/omniORB-4.0.7.ebuild deleted file mode 100644 index 8ad7b9002c7a..000000000000 --- a/net-misc/omniORB/omniORB-4.0.7.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# 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.0.7.ebuild,v 1.2 2007/04/28 17:00:45 swegener 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 - - #/usr/bin/python ${ROOT}usr/share/doc/${PF}/mkomnistubs.py -} |