diff options
author | Geoff Clements <geoff@electron.me.uk> | 2006-06-25 21:29:54 +0000 |
---|---|---|
committer | Geoff Clements <geoff@electron.me.uk> | 2006-06-25 21:29:54 +0000 |
commit | 792b02f7659c67c00dcd13fe3064eece29592624 (patch) | |
tree | 2667882b089a49f58c9e4b32cc45247b72554fc1 /dev-db/daboide/daboide-0.5.6.ebuild | |
parent | use.local.desc - add beagle and totem flags for app-cdr/bonfire (diff) | |
download | sunrise-792b02f7659c67c00dcd13fe3064eece29592624.tar.gz sunrise-792b02f7659c67c00dcd13fe3064eece29592624.tar.bz2 sunrise-792b02f7659c67c00dcd13fe3064eece29592624.zip |
Prevent python optimiser from running as this causes problems
with some non-standard python files
svn path=/sunrise/; revision=287
Diffstat (limited to 'dev-db/daboide/daboide-0.5.6.ebuild')
-rw-r--r-- | dev-db/daboide/daboide-0.5.6.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dev-db/daboide/daboide-0.5.6.ebuild b/dev-db/daboide/daboide-0.5.6.ebuild index 9847efaf3..95a80536a 100644 --- a/dev-db/daboide/daboide-0.5.6.ebuild +++ b/dev-db/daboide/daboide-0.5.6.ebuild @@ -32,7 +32,7 @@ src_install() { dodoc ChangeLog insinto ${INS} - doins -r . + doins -r * # pick out those files which should be executable for EFIL in $(grep -RI '^#!' * | cut -d : -f 1) @@ -47,3 +47,7 @@ src_install() { echo "exec /usr/lib/python${PYVER}/site-packages/${PN}/IDE.py" >> daboide dobin daboide } + +# Prevent the optimiser from running +# as there are problems with some non-standard python files +distutils_pkg_postinst() { :; } |