diff options
author | David Holm <dholm@gentoo.org> | 2004-02-17 15:15:46 +0000 |
---|---|---|
committer | David Holm <dholm@gentoo.org> | 2004-02-17 15:15:46 +0000 |
commit | 30fbb7445df17c113e7e042aebf1583a4fd94348 (patch) | |
tree | 0338e7f9b846aa0c006c07eb36bc65111049f759 /net-misc/mico | |
parent | new release (diff) | |
download | historical-30fbb7445df17c113e7e042aebf1583a4fd94348.tar.gz historical-30fbb7445df17c113e7e042aebf1583a4fd94348.tar.bz2 historical-30fbb7445df17c113e7e042aebf1583a4fd94348.zip |
Version bump
Diffstat (limited to 'net-misc/mico')
-rw-r--r-- | net-misc/mico/ChangeLog | 9 | ||||
-rw-r--r-- | net-misc/mico/Manifest | 4 | ||||
-rw-r--r-- | net-misc/mico/files/digest-mico-2.3.11 | 1 | ||||
-rw-r--r-- | net-misc/mico/mico-2.3.11.ebuild | 57 |
4 files changed, 68 insertions, 3 deletions
diff --git a/net-misc/mico/ChangeLog b/net-misc/mico/ChangeLog index 4b65c1e96d69..e8d5e271dcb6 100644 --- a/net-misc/mico/ChangeLog +++ b/net-misc/mico/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/mico -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/mico/ChangeLog,v 1.3 2003/03/28 22:01:31 tantive Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/mico/ChangeLog,v 1.4 2004/02/17 15:15:43 dholm Exp $ + +*mico-2.3.11 (17 Feb 2004) + + 17 Feb 2004; David Holm <dholm@gentoo.org> mico-2.3.11.ebuild: + Version bumped and tested on big endian. *mico-2.3.9 (28 Mar 2003) diff --git a/net-misc/mico/Manifest b/net-misc/mico/Manifest index 773cf0985ba1..f557aae940f4 100644 --- a/net-misc/mico/Manifest +++ b/net-misc/mico/Manifest @@ -1,5 +1,7 @@ -MD5 ad73b6833bd9a566c15e6c08a884f7fe ChangeLog 594 +MD5 1327914d694f209485796b951ecff85f ChangeLog 729 MD5 7830c56e9122372b50d5863fc486fa8d mico-2.3.7.ebuild 1403 MD5 a53eee35bf592bf619b8ac611fae6cfa mico-2.3.9.ebuild 1403 +MD5 5c0b29241f0fe9538a05ac6f7f8ebf25 mico-2.3.11.ebuild 1402 MD5 92deafe718f5328130a6a1238621343d files/digest-mico-2.3.7 63 MD5 e08b36b538bb6b3739f116f5219e17b9 files/digest-mico-2.3.9 63 +MD5 67a6622b9fa3dc37121f3a43f0234f79 files/digest-mico-2.3.11 64 diff --git a/net-misc/mico/files/digest-mico-2.3.11 b/net-misc/mico/files/digest-mico-2.3.11 new file mode 100644 index 000000000000..03dd201c7c8e --- /dev/null +++ b/net-misc/mico/files/digest-mico-2.3.11 @@ -0,0 +1 @@ +MD5 669d98ec5da2f6c50937a2a25e797eec mico-2.3.11.tar.gz 2523850 diff --git a/net-misc/mico/mico-2.3.11.ebuild b/net-misc/mico/mico-2.3.11.ebuild new file mode 100644 index 000000000000..2c0c2f676352 --- /dev/null +++ b/net-misc/mico/mico-2.3.11.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/mico/mico-2.3.11.ebuild,v 1.1 2004/02/17 15:15:43 dholm Exp $ + +IUSE="ssl tcltk" + +DESCRIPTION="A freely available and fully compliant implementation of the CORBA standard" +HOMEPAGE="http://www.mico.org/" +SRC_URI="http://www.mico.org/${P}.tar.gz" +LICENSE="GPL-2 LGPL-2" +SLOT="0" +KEYWORDS="~ppc ~alpha" + +DEPEND="virtual/glibc + sys-devel/flex + sys-devel/bison + ssl? ( dev-libs/openssl ) + tcltk? ( dev-lang/tcl )" + +S="${WORKDIR}/${PN}" + +src_compile() { + local myopts="--enable-final + --disable-mini-stl + --enable-except + --enable-dynamic + --enable-repo + --enable-shared" + + myopts="${myopts} + --enable-life + --enable-externalize" + + use ssl && myopts="${myopts} --with-ssl=/usr" \ + || myopts="${myopts} --without-ssl" + use tcltk && myopts="${myopts} --with-tcl=/usr" \ + || myopts="${myopts} --without-tcl" + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + + make || die +} + +src_install() { + make INSTDIR=${D}/usr SHARED_INSTDIR=${D}/usr install || die + + dodir /usr/share/ + mv ${D}/usr/man ${D}/usr/share + dodir /usr/share/doc/ + mv ${D}/usr/doc ${D}/usr/share/doc/${P} + + dodoc CHANGES CONVERT FAQ INSTALL LICENSE* MANIFEST README* ROADMAP TODO VERSION +} |