diff options
Diffstat (limited to 'dev-python/omniORBpy')
-rw-r--r-- | dev-python/omniORBpy/Manifest | 4 | ||||
-rw-r--r-- | dev-python/omniORBpy/omniORBpy-2.0.ebuild | 14 |
2 files changed, 9 insertions, 9 deletions
diff --git a/dev-python/omniORBpy/Manifest b/dev-python/omniORBpy/Manifest index 2716bae42da8..f7c5051bef7a 100644 --- a/dev-python/omniORBpy/Manifest +++ b/dev-python/omniORBpy/Manifest @@ -1,4 +1,4 @@ -MD5 3b2f7d612501c7be35937d732281147a files/digest-omniORBpy-2.0 65 -MD5 63890a869b329450a51acfc26c76ff8d omniORBpy-2.0.ebuild 2101 MD5 80198eadf0d929482a7c2a97a398f4cb ChangeLog 419 +MD5 a91f7d95cedca037ffcf9d13e559c897 omniORBpy-2.0.ebuild 2081 MD5 71c4638c9c88af75b58e5f5cb54fe008 metadata.xml 159 +MD5 3b2f7d612501c7be35937d732281147a files/digest-omniORBpy-2.0 65 diff --git a/dev-python/omniORBpy/omniORBpy-2.0.ebuild b/dev-python/omniORBpy/omniORBpy-2.0.ebuild index b6f1b761a783..9ca7820c7a38 100644 --- a/dev-python/omniORBpy/omniORBpy-2.0.ebuild +++ b/dev-python/omniORBpy/omniORBpy-2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/omniORBpy/omniORBpy-2.0.ebuild,v 1.6 2003/07/03 10:09:42 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/omniORBpy/omniORBpy-2.0.ebuild,v 1.7 2003/09/06 23:32:28 msterret Exp $ DESCRIPTION="This is omniORBpy 2, a robust high-performance CORBA ORB for Python." HOMEPAGE="http://omniorb.sourceforge.net/" @@ -18,13 +18,13 @@ S="${WORKDIR}/${P}" src_compile() { MY_CONF="--host=${CHOST} --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man --with-omniorb=/usr" - + use ssl && MY_CONF="${MY_CONF} --with-openssl=/usr" - + MY_PY=/usr/bin/python`python -c "import sys; print sys.version[:3]"` # install modules for python which is default python interpreter in - # the system - + # the system + PYTHON=${MY_PY} ./configure ${MY_CONF} || die "./configure failed" emake || die } @@ -39,13 +39,13 @@ src_install() { mv python/dir.mk python/dir.mk_orig awk -v STR="Naming\\\.idl" '{ if (/^[[:space:]]*$/) flag = 0; tmpstr = $0; if (gsub(STR, "", tmpstr)) flag = 1; if (flag) print "#" $0; else print $0; }' python/dir.mk_orig > python/dir.mk make DESTDIR=${D} install || die - + dodoc COPYING.LIB README README.Python dohtml doc/omniORBpy dodoc doc/omniORBpy.p* # ps,pdf dodoc doc/tex/* # .bib, .tex dodir /usr/share/doc/${P}/examples - cp -r examples/* ${D}/usr/share/doc/${P}/examples # doins doesn't do recursive + cp -r examples/* ${D}/usr/share/doc/${P}/examples # doins doesn't do recursive } |