From 84d8b510ac289af0a43bfa9e110844af27a90196 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 24 Apr 2006 09:03:08 -0500 Subject: initial commit from stable 0.3 --- gnustep-apps/gnustep-addressbook/BUILD | 12 +++++++++++ gnustep-apps/gnustep-addressbook/CONFIGURE | 3 +++ gnustep-apps/gnustep-addressbook/DEPENDS | 3 +++ gnustep-apps/gnustep-addressbook/DETAILS | 20 +++++++++++++++++++ gnustep-apps/gnustep-addressbook/HISTORY | 3 +++ gnustep-apps/gnustep-addressbook/INSTALL | 32 ++++++++++++++++++++++++++++++ 6 files changed, 73 insertions(+) create mode 100755 gnustep-apps/gnustep-addressbook/BUILD create mode 100755 gnustep-apps/gnustep-addressbook/CONFIGURE create mode 100755 gnustep-apps/gnustep-addressbook/DEPENDS create mode 100755 gnustep-apps/gnustep-addressbook/DETAILS create mode 100644 gnustep-apps/gnustep-addressbook/HISTORY create mode 100755 gnustep-apps/gnustep-addressbook/INSTALL (limited to 'gnustep-apps/gnustep-addressbook') 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 + * 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 -- cgit v1.2.3