summaryrefslogtreecommitdiff
path: root/noncore
authorallenforsythe <allenforsythe>2003-05-25 14:08:20 (UTC)
committer allenforsythe <allenforsythe>2003-05-25 14:08:20 (UTC)
commita457ee4f565fcbc05a8b4469974d93e64ac1be47 (patch) (side-by-side diff)
tree9a2685bbdbb84a81e4b7a712e1c811635a9c9722 /noncore
parent5547a5f04c5bb38ed02268f6502933dce12f857c (diff)
downloadopie-a457ee4f565fcbc05a8b4469974d93e64ac1be47.zip
opie-a457ee4f565fcbc05a8b4469974d93e64ac1be47.tar.gz
opie-a457ee4f565fcbc05a8b4469974d93e64ac1be47.tar.bz2
Removed unecessary files.
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rwxr-xr-xnoncore/apps/qashmoney/make_arm23
-rwxr-xr-xnoncore/apps/qashmoney/make_ipk41
-rwxr-xr-xnoncore/apps/qashmoney/x86.sh10
3 files changed, 0 insertions, 74 deletions
diff --git a/noncore/apps/qashmoney/make_arm b/noncore/apps/qashmoney/make_arm
deleted file mode 100755
index 4d0dc1c..0000000
--- a/noncore/apps/qashmoney/make_arm
+++ b/dev/null
@@ -1,23 +0,0 @@
-# Use this script to automatically make the arm version
-# of QashMoney. The arm.sh file must be in this folder
-# for it to work
-
-# clean the directory then remove the Makefile
-echo "Cleaning the directory and removing the current Makefile..."
-if [ -e Makefile ]
-then
- make clean
- rm Makefile
-fi
-
-# set the environment variables for the arm environment
-echo "Setting environment variables..."
-source arm.sh
-
-# Make the new Makefile
-echo "Making the new Makefile..."
-tmake -o Makefile qashmoney.pro
-
-# Make the program
-echo "Making the program..."
-make
diff --git a/noncore/apps/qashmoney/make_ipk b/noncore/apps/qashmoney/make_ipk
deleted file mode 100755
index d477c83..0000000
--- a/noncore/apps/qashmoney/make_ipk
+++ b/dev/null
@@ -1,41 +0,0 @@
-# Use this script to make the IPK file for distribution
-# It assumes you are the root user. Ipkg likes to have all
-# its files owned by root and this script does that.
-# Change the user name from "allen" to your user name
-# If you want to use this script
-
-# Set the environment variables for the arm environment
-echo "Setting environment variables..."
-source arm.sh
-
-# Remove any exisitng IPK files
-echo "Removing exisiting IPK files..."
-rm -rf *.ipk
-
-# Strip the binary file
-echo "Stripping the binary file..."
-arm-linux-strip qashmoney
-
-# Move the file to the right location
-echo "Moving the binary file..."
-mv qashmoney install/opt/QtPalmtop/bin &&
-
-# Change ownership of all the files
-echo "Changing ownership of all files..."
-chown -R root install
-chgrp -R root install
-chmod -R 0777 install
-
-# Make the IPK
-echo "Making the IPK file..."
-./ipkg-build install
-
-# Remove the binary from the bin directory so we can make the tarball
-echo "Removing qashmoney binary file..."
-rm -rf install/opt/QtPalmtop/bin/qashmoney
-
-# Restore ownership of all files
-echo "Restoring ownership of all files..."
-chown -R allen install
-chgrp -R allen install
-chmod -R 0777 install
diff --git a/noncore/apps/qashmoney/x86.sh b/noncore/apps/qashmoney/x86.sh
deleted file mode 100755
index b539aba..0000000
--- a/noncore/apps/qashmoney/x86.sh
+++ b/dev/null
@@ -1,10 +0,0 @@
-# !/bin/bash
-CROSSCOMPILE=/opt/Embedix/tools
-QTDIR=/opt/Qtopia
-QPEDIR=/opt/Qtopia
-PATH=$PATH:$QTDIR/bin:$QPEDIR/bin:/opt/Embedix/tools/bin:$QTDIR/tmake/bin
-TMAKEPATH=/opt/Qtopia/tmake/lib/qws/linux-x86-g++/
-LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$QTDIR/lib:/usr/lib
-INCPATH=/usr/include/g++-3
-export QPEDIR QTDIR PATH TMAKEPATH LD_LIBRARY_PATH PS1
-echo "Altered environment for Sharp Zaurus Development x86"