diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2004-07-23 19:41:48 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2004-07-23 19:41:48 +0000 |
commit | 35b7587fd95ed6221305d84364def0803ca7d31a (patch) | |
tree | b34dcfd12c2491aa947057266c5698d335b9a7db /net-misc/omniORB | |
parent | Added to ~ppc (Manifest recommit) (diff) | |
download | gentoo-2-35b7587fd95ed6221305d84364def0803ca7d31a.tar.gz gentoo-2-35b7587fd95ed6221305d84364def0803ca7d31a.tar.bz2 gentoo-2-35b7587fd95ed6221305d84364def0803ca7d31a.zip |
marked stable on x86, removed older 4.x ebuilds
Diffstat (limited to 'net-misc/omniORB')
-rw-r--r-- | net-misc/omniORB/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/omniORB/files/digest-omniORB-4.0.0 | 2 | ||||
-rw-r--r-- | net-misc/omniORB/files/digest-omniORB-4.0.2 | 1 | ||||
-rw-r--r-- | net-misc/omniORB/metadata.xml | 8 | ||||
-rw-r--r-- | net-misc/omniORB/omniORB-4.0.0.ebuild | 71 | ||||
-rw-r--r-- | net-misc/omniORB/omniORB-4.0.2.ebuild | 71 | ||||
-rw-r--r-- | net-misc/omniORB/omniORB-4.0.3.ebuild | 4 |
7 files changed, 16 insertions, 148 deletions
diff --git a/net-misc/omniORB/ChangeLog b/net-misc/omniORB/ChangeLog index e475f431ef03..bdb2978a8d5d 100644 --- a/net-misc/omniORB/ChangeLog +++ b/net-misc/omniORB/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/omniORB # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v 1.24 2004/06/25 00:02:51 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v 1.25 2004/07/23 19:41:48 carlo Exp $ + + 23 Jul 2004; Carsten Lohrke <carlo@gentoo.org> +metadata.xml, + -omniORB-4.0.0.ebuild, -omniORB-4.0.2.ebuild, omniORB-4.0.3.ebuild: + marked stable on x86, removed older 4.x ebuilds, thanks @ Bryan to volunteer + as maintainer 07 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> omniORB-4.0.3.ebuild: Stable on alpha. diff --git a/net-misc/omniORB/files/digest-omniORB-4.0.0 b/net-misc/omniORB/files/digest-omniORB-4.0.0 deleted file mode 100644 index 2d97b227ec00..000000000000 --- a/net-misc/omniORB/files/digest-omniORB-4.0.0 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 c5dbd122c992ea1df4f6adf5e72644b1 omniORB-4.0.0.tar.gz 2580895 -MD5 ebe2ac26322feee11a4ab3ddb055992f omniORBpy-2.0.tar.gz 620528 diff --git a/net-misc/omniORB/files/digest-omniORB-4.0.2 b/net-misc/omniORB/files/digest-omniORB-4.0.2 deleted file mode 100644 index 5f9c116c8f19..000000000000 --- a/net-misc/omniORB/files/digest-omniORB-4.0.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 283e4744759b73368fbea66f98c2bd95 omniORB-4.0.2.tar.gz 2754374 diff --git a/net-misc/omniORB/metadata.xml b/net-misc/omniORB/metadata.xml new file mode 100644 index 000000000000..95764d95acc2 --- /dev/null +++ b/net-misc/omniORB/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> + <email>kloeri@gentoo.org</email> +</maintainer> +</pkgmetadata> diff --git a/net-misc/omniORB/omniORB-4.0.0.ebuild b/net-misc/omniORB/omniORB-4.0.0.ebuild deleted file mode 100644 index 14d977661ee8..000000000000 --- a/net-misc/omniORB/omniORB-4.0.0.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-4.0.0.ebuild,v 1.9 2004/06/25 00:02:51 agriffis Exp $ - -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="x86 -sparc -ppc" - -DEPEND="dev-lang/python - ssl? ( >=dev-libs/openssl-0.9.6b )" - -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" - - MY_PY=/usr/bin/python`python -c "import sys; print sys.version[:3]"` - - PYTHON=${MY_PY} ../configure ${MY_CONF} || die "./configure failed" - emake -} - -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 - - dodoc -r . - - 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 - exeinto /etc/init.d - newexe ${FILESDIR}/omniORB-4.0.0 omniORB - - cp ${S}/sample.cfg ${S}/omniORB.cfg - dodir /etc/omniorb - insinto /etc/omniorb - doins ${S}/omniORB.cfg - -} - -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.2.ebuild b/net-misc/omniORB/omniORB-4.0.2.ebuild deleted file mode 100644 index 207d48bae0f5..000000000000 --- a/net-misc/omniORB/omniORB-4.0.2.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-4.0.2.ebuild,v 1.4 2004/06/25 00:02:51 agriffis Exp $ - -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="x86 -sparc -ppc" - -DEPEND="dev-lang/python - ssl? ( >=dev-libs/openssl-0.9.6b )" - -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" - - MY_PY=/usr/bin/python`python -c "import sys; print sys.version[:3]"` - - PYTHON=${MY_PY} ../configure ${MY_CONF} || die "./configure failed" - emake -} - -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 - - dodoc -r . - - 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 - exeinto /etc/init.d - newexe ${FILESDIR}/omniORB-4.0.0 omniORB - - cp ${S}/sample.cfg ${S}/omniORB.cfg - dodir /etc/omniorb - insinto /etc/omniorb - doins ${S}/omniORB.cfg - -} - -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.3.ebuild b/net-misc/omniORB/omniORB-4.0.3.ebuild index fb16df69d4b1..57643e50eac0 100644 --- a/net-misc/omniORB/omniORB-4.0.3.ebuild +++ b/net-misc/omniORB/omniORB-4.0.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-4.0.3.ebuild,v 1.7 2004/06/25 00:02:51 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-4.0.3.ebuild,v 1.8 2004/07/23 19:41:48 carlo Exp $ DESCRIPTION="A robust, high-performance CORBA 2 ORB" SRC_URI="mirror://sourceforge/omniorb/${PF}.tar.gz" @@ -10,7 +10,7 @@ IUSE="ssl" LICENSE="LGPL-2 GPL-2" SLOT="0" -KEYWORDS="~x86 alpha ~ia64 ~amd64 ~ppc" +KEYWORDS="x86 alpha ~ia64 ~amd64 ~ppc" DEPEND="dev-lang/python ssl? ( >=dev-libs/openssl-0.9.6b )" |