# The following file from kdebindings has a syntax error that
# makes Python compilation fail
@@ -10,4 +10,9 @@ if [[ -f
$INSTALL_ROOT/usr/lib/python${PYTHON_VERSION}/pydcop.py ]]; then
$SOURCE_DIRECTORY/spell-tmp
fi &&
-default_build
+default_build &&
+
+# python -c '"(c)", "lynx"*3'
+make install DESTDIR=$SOURCE_DIRECTORY/anywhere &&
+
+message "Fake stage complete, installing to real path.."
diff --git a/devel/python/FINAL b/devel/python/FINAL
deleted file mode 100755
index 9af95e2..0000000
--- a/devel/python/FINAL
+++ /dev/null
@@ -1,5 +0,0 @@
-if [[ -d $SOURCE_DIRECTORY/site-packages ]]; then
- message "Resurrecting the pythonic modules, please stand by..." &&
- cp -av $SOURCE_DIRECTORY/site-packages $PYPATH &&
- message "Resurrection of the pythonic modules complete."
-fi
diff --git a/devel/python/HISTORY b/devel/python/HISTORY
index 5142e23..ec10480 100644
--- a/devel/python/HISTORY
+++ b/devel/python/HISTORY
@@ -1,3 +1,8 @@
+2008-01-17 Vlad Glagolev <stealth AT sourcemage.org>
+ * BUILD: added some options: ipv6 and threading support
+ * INSTALL: copy the stuff from fake dir, removed dirty hacks
+ * FINAL: removed, removed dirty hacks
+
2008-01-07 Vlad Glagolev <stealth AT sourcemage.org>
* FINAL: mv => cp, better verbose + some info
* BUILD: cleaned up
diff --git a/devel/python/INSTALL b/devel/python/INSTALL
index acd1da8..9baf210 100755
--- a/devel/python/INSTALL
+++ b/devel/python/INSTALL
@@ -1,11 +1,4 @@
-persistent_add PYPATH &&
-local PYPATH=$INSTALL_ROOT/usr/lib/python${VERSION:0:3}
-
-if [[ -d $PYPATH/site-packages ]]; then
- mv $PYPATH/site-packages $SOURCE_DIRECTORY
-fi &&
-
-default_install &&
+cp -av $SOURCE_DIRECTORY/anywhere/usr $INSTALL_ROOT/ &&
if [[ -f $SOURCE_DIRECTORY/spell-tmp/pydcop.py ]]; then
mv $SOURCE_DIRECTORY/spell-tmp/pydcop.py $PYPATH
@@ -13,4 +6,4 @@ fi &&