summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2002-08-29 01:28:46 +0000
committerGeorge Shapovalov <george@gentoo.org>2002-08-29 01:28:46 +0000
commitabd84e44b5dd722c6b41520b01d941b456f26924 (patch)
treebb9ca14e68d7561be59dc6489746c48a029c6902 /net-misc
parentInitial update (diff)
downloadhistorical-abd84e44b5dd722c6b41520b01d941b456f26924.tar.gz
historical-abd84e44b5dd722c6b41520b01d941b456f26924.tar.bz2
historical-abd84e44b5dd722c6b41520b01d941b456f26924.zip
fixed FILESDIR issue
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/omniORB/ChangeLog8
-rw-r--r--net-misc/omniORB/omniORB-305.ebuild9
2 files changed, 14 insertions, 3 deletions
diff --git a/net-misc/omniORB/ChangeLog b/net-misc/omniORB/ChangeLog
index 5a7dca1645bb..af259f2acaba 100644
--- a/net-misc/omniORB/ChangeLog
+++ b/net-misc/omniORB/ChangeLog
@@ -1,9 +1,15 @@
# ChangeLog for net-misc/omniORB
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v 1.6 2002/08/10 04:34:22 george Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/ChangeLog,v 1.7 2002/08/29 01:28:46 george Exp $
*omniORB-305 (25 Jul 2002)
+ 27 Aug 2002; George Shapovalov <george@gentoo.org> omniORB-305.ebuild :
+
+ fixed FILESDIR in pkg_postinst issue (by removing FILESDIR reference :))
+ FILESDIR cannot be used in pkg_postinst, because
+ during emerge -b ${FILESDIR} cannot be garanteed to be up to date
+
09 Aug 2002; George Shapovalov <george@gentoo.org> omniORB-305.ebuild :
fixed the ldconfig complaint issue:
diff --git a/net-misc/omniORB/omniORB-305.ebuild b/net-misc/omniORB/omniORB-305.ebuild
index 13624a551ca4..1653137679be 100644
--- a/net-misc/omniORB/omniORB-305.ebuild
+++ b/net-misc/omniORB/omniORB-305.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-305.ebuild,v 1.5 2002/08/09 20:31:42 george Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/omniORB/omniORB-305.ebuild,v 1.6 2002/08/29 01:28:46 george Exp $
S="${WORKDIR}/omni"
DESCRIPTION="a robust, high-performance CORBA 2 ORB"
@@ -90,6 +90,11 @@ src_install () {
# doins src/services/omniNotify/channel.cfg
# doins src/services/omniNotify/standard.cfg
+ #mkomnistubs has to be run in pkg_postinst
+ #however we cannot use FILESDIR there, thus:
+ exeinto /usr/share/doc/${PF}
+ doexe ${FILESDIR}/mkomnistubs.py
+
dodoc CHANGES* COPYING* CREDITS PORTING README* ReleaseNote_omniORB_304 \
THIS_IS_omniORB_3_0_4
@@ -116,5 +121,5 @@ pkg_postinst() {
echo "ORBInitialPort 2809" >> ${ROOT}etc/omniorb/omniORB.cfg
fi
- /usr/bin/python ${FILESDIR}/mkomnistubs.py
+ /usr/bin/python ${ROOT}usr/share/doc/${PF}/mkomnistubs.py
}