summaryrefslogtreecommitdiffstats
path: root/gnustep-apps
diff options
context:
space:
mode:
authorAndraž Levstik2007-04-18 18:37:14 +0200
committerAndraž Levstik2007-04-18 18:37:14 +0200
commita4e289ec2158d08bca592101bec2c09101028e93 (patch)
tree4f9cd16f47825cc9f427f7e67f5c21955e3ff8d5 /gnustep-apps
parentdb3931496fa65dc82c44bd1394684c1fa536818a (diff)
gnustep-gworkspace: version update
Diffstat (limited to 'gnustep-apps')
-rwxr-xr-xgnustep-apps/gnustep-gworkspace/BUILD29
-rwxr-xr-xgnustep-apps/gnustep-gworkspace/CONFIGURE2
-rwxr-xr-xgnustep-apps/gnustep-gworkspace/DEPENDS4
-rwxr-xr-xgnustep-apps/gnustep-gworkspace/DETAILS5
-rw-r--r--gnustep-apps/gnustep-gworkspace/HISTORY7
-rwxr-xr-xgnustep-apps/gnustep-gworkspace/INSTALL20
6 files changed, 11 insertions, 56 deletions
diff --git a/gnustep-apps/gnustep-gworkspace/BUILD b/gnustep-apps/gnustep-gworkspace/BUILD
deleted file mode 100755
index ff6cfd30d3..0000000000
--- a/gnustep-apps/gnustep-gworkspace/BUILD
+++ /dev/null
@@ -1,29 +0,0 @@
-if [ -f /etc/profile.d/GNUstep.sh ];
-then
- . /etc/profile.d/GNUstep.sh
-else
- message "${ERROR_COLOR}Unable to find /etc/profile.d/GNUstep.sh" &&
- message "Rebuild gnustep-make${DEFAULT_COLOR}" &&
- return 1
-fi &&
-
-./configure $OPTS &&
-
-make_single &&
-make &&
-
-if [ "$GWREM" == "y" ];
-then
- cd GWRemote &&
- make &&
- cd ../
-fi &&
-
-if [ "$GWCLP" == "y" ];
-then
- cd ClipBook &&
- make &&
- cd ../
-fi &&
-
-make_normal
diff --git a/gnustep-apps/gnustep-gworkspace/CONFIGURE b/gnustep-apps/gnustep-gworkspace/CONFIGURE
deleted file mode 100755
index b8693bd234..0000000000
--- a/gnustep-apps/gnustep-gworkspace/CONFIGURE
+++ /dev/null
@@ -1,2 +0,0 @@
-config_query GWREM "Build GWRemote client and server app?" y
-config_query GWCLP "Build ClipBook app?" y
diff --git a/gnustep-apps/gnustep-gworkspace/DEPENDS b/gnustep-apps/gnustep-gworkspace/DEPENDS
index b51563a9f2..3e35b48c9d 100755
--- a/gnustep-apps/gnustep-gworkspace/DEPENDS
+++ b/gnustep-apps/gnustep-gworkspace/DEPENDS
@@ -1,2 +1,2 @@
-depends gnustep-gui &&
-optional_depends gnustep-pdfkit "" "" "Add pdf viewing support."
+depends gnustep-gui &&
+depends gnustep-make
diff --git a/gnustep-apps/gnustep-gworkspace/DETAILS b/gnustep-apps/gnustep-gworkspace/DETAILS
index 4e694ca1b7..63d1f89ab4 100755
--- a/gnustep-apps/gnustep-gworkspace/DETAILS
+++ b/gnustep-apps/gnustep-gworkspace/DETAILS
@@ -1,15 +1,14 @@
SPELL=gnustep-gworkspace
- VERSION=0.8.2
+ VERSION=0.8.5
SOURCE=gworkspace-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/GWorkspace-$VERSION
SOURCE_URL[0]=http://www.gnustep.it/enrico/gworkspace/$SOURCE
WEB_SITE=http://www.gnustep.org
- SOURCE_HASH=sha512:ec66d19287fd000081463a37e117132e60ea812fbffebd8083047420c4026dcf8d5753db2935eae65386dede00569dc629366f85e75f3a301e4bf7d709cc662a
+ SOURCE_HASH=sha512:9417889dc02364b95665060df7db0304e6264068fee91e26548c69cd08544510a0e0a99b8e4267caed3195bd0c99d3c20e3737ed002a1ea37e785d4b4ca8e4f6
LICENSE[0]=GPL
ENTERED=20050908
KEYWORDS="gnustep"
SHORT="GNUstep workspace manager."
-
cat << EOF
"GNUstep workspace manager."
EOF
diff --git a/gnustep-apps/gnustep-gworkspace/HISTORY b/gnustep-apps/gnustep-gworkspace/HISTORY
index 3694171fe2..fc5a43c04d 100644
--- a/gnustep-apps/gnustep-gworkspace/HISTORY
+++ b/gnustep-apps/gnustep-gworkspace/HISTORY
@@ -1,3 +1,10 @@
+2007-04-18 Andraž "ruskie" Levstik <ruskie@mages.ath.cx>
+ * DETAILS: version update
+ * DEPENDS: fixup dependencies
+ * BUILD: removed no longer needed
+ * INSTALL: removed no longer needed
+ * CONFIGURE: removed no longer needed
+
2006-10-03 Juuso Alasuutari <iuso@sourcemage.org>
* DETAILS: [automated] Removed UPDATED.
diff --git a/gnustep-apps/gnustep-gworkspace/INSTALL b/gnustep-apps/gnustep-gworkspace/INSTALL
deleted file mode 100755
index 0cb1bcc0e3..0000000000
--- a/gnustep-apps/gnustep-gworkspace/INSTALL
+++ /dev/null
@@ -1,20 +0,0 @@
-export TAR_OPTIONS="--no-same-owner"
-
-make_single &&
-make GNUSTEP_INSTALLATION_DIR=$GNUSTEP_SYSTEM_ROOT install &&
-
-if [ "$GWREM" == "y" ];
-then
- cd GWRemote &&
- make GNUSTEP_INSTALLATION_DIR=$GNUSTEP_SYSTEM_ROOT install &&
- cd ../
-fi &&
-
-if [ "$GWCLP" == "y" ];
-then
- cd ClipBook &&
- make GNUSTEP_INSTALLATION_DIR=$GNUSTEP_SYSTEM_ROOT install &&
- cd ../
-fi &&
-
-make_normal