summaryrefslogtreecommitdiffstats
path: root/gnustep-apps/gnustep-addressbook
diff options
context:
space:
mode:
authorroot2006-04-24 09:03:08 -0500
committerroot2006-04-24 09:03:08 -0500
commit84d8b510ac289af0a43bfa9e110844af27a90196 (patch)
treed7093929b954dd2f71114bff270755e18f737eb1 /gnustep-apps/gnustep-addressbook
initial commit from stable 0.3
Diffstat (limited to 'gnustep-apps/gnustep-addressbook')
-rwxr-xr-xgnustep-apps/gnustep-addressbook/BUILD12
-rwxr-xr-xgnustep-apps/gnustep-addressbook/CONFIGURE3
-rwxr-xr-xgnustep-apps/gnustep-addressbook/DEPENDS3
-rwxr-xr-xgnustep-apps/gnustep-addressbook/DETAILS20
-rw-r--r--gnustep-apps/gnustep-addressbook/HISTORY3
-rwxr-xr-xgnustep-apps/gnustep-addressbook/INSTALL32
6 files changed, 73 insertions, 0 deletions
diff --git a/gnustep-apps/gnustep-addressbook/BUILD b/gnustep-apps/gnustep-addressbook/BUILD
new file mode 100755
index 0000000000..6fc8b739d4
--- /dev/null
+++ b/gnustep-apps/gnustep-addressbook/BUILD
@@ -0,0 +1,12 @@
+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}"
+ exit 1
+fi &&
+
+make_single
+make
+make_normal
diff --git a/gnustep-apps/gnustep-addressbook/CONFIGURE b/gnustep-apps/gnustep-addressbook/CONFIGURE
new file mode 100755
index 0000000000..9e3690e96f
--- /dev/null
+++ b/gnustep-apps/gnustep-addressbook/CONFIGURE
@@ -0,0 +1,3 @@
+config_query ADVCF "Build VCFViewer?" y
+config_query ADSRV "Build adserver?" y
+config_query ADTOL "Build adtool?" y
diff --git a/gnustep-apps/gnustep-addressbook/DEPENDS b/gnustep-apps/gnustep-addressbook/DEPENDS
new file mode 100755
index 0000000000..a85b1954c7
--- /dev/null
+++ b/gnustep-apps/gnustep-addressbook/DEPENDS
@@ -0,0 +1,3 @@
+depends gnustep-gui
+
+
diff --git a/gnustep-apps/gnustep-addressbook/DETAILS b/gnustep-apps/gnustep-addressbook/DETAILS
new file mode 100755
index 0000000000..8f16f30e58
--- /dev/null
+++ b/gnustep-apps/gnustep-addressbook/DETAILS
@@ -0,0 +1,20 @@
+ SPELL=gnustep-addressbook
+ VERSION=0.4.6
+ SOURCE=Addresses-$VERSION.tar.gz
+SOURCE_DIRECTORY=Addresses-$VERSION
+ SOURCE_URL[0]=ftp://ftp.gnustep.org/pub/gnustep/contrib/$SOURCE
+ WEB_SITE=http://www.gnustep.org
+ MD5[0]=ecc7dcce8d18be6021dd2c3c6ef905aa
+ LICENSE[0]=GPL
+ ENTERED=20050908
+ UPDATED=20050908
+ BUILD_API=2
+ SHORT="A personal address manager for the GNUstep."
+
+cat << EOF
+This package constitutes a personal address manager for the GNUstep
+software system. It allows archiving complete personal contact
+information, organizing contacts in groups, integration with other
+software such as mail clients and sharing address information with
+other users over the network.
+EOF
diff --git a/gnustep-apps/gnustep-addressbook/HISTORY b/gnustep-apps/gnustep-addressbook/HISTORY
new file mode 100644
index 0000000000..92b87da135
--- /dev/null
+++ b/gnustep-apps/gnustep-addressbook/HISTORY
@@ -0,0 +1,3 @@
+2005-09-08 Maurizio Boriani <baux@sourcemage.org>
+ * BUILD, DEPENDS, DETAILS, CONFIGURE, INSTALL: created the
+ spell.
diff --git a/gnustep-apps/gnustep-addressbook/INSTALL b/gnustep-apps/gnustep-addressbook/INSTALL
new file mode 100755
index 0000000000..fdc40eb6c2
--- /dev/null
+++ b/gnustep-apps/gnustep-addressbook/INSTALL
@@ -0,0 +1,32 @@
+export TAR_OPTIONS="--no-same-owner"
+
+make_single
+make GNUSTEP_INSTALLATION_DIR=$GNUSTEP_SYSTEM_ROOT install
+
+# A bug in gworkspace installer, missing some include files
+#if [ "$ADVCF" == "y" ];
+#then
+# cd Goodies/VCFViewer &&
+# make &&
+# make GNUSTEP_INSTALLATION_DIR=$GNUSTEP_SYSTEM_ROOT install &&
+# cd ../../
+#fi
+
+if [ "$ADSRV" == "y" ];
+then
+ cd Goodies/adserver &&
+ make &&
+ make GNUSTEP_INSTALLATION_DIR=$GNUSTEP_SYSTEM_ROOT install &&
+ cd ../../
+fi
+
+
+if [ "$ADTOL" == "y" ];
+then
+ cd Goodies/adtool &&
+ make &&
+ make GNUSTEP_INSTALLATION_DIR=$GNUSTEP_SYSTEM_ROOT install &&
+ cd ../../
+fi
+
+make_normal