]> err.no Git - scalable-opengroupware.org/commitdiff
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@98 d1b88da0-ebda-0310-925b-ed51d8...
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 30 Jun 2004 08:54:28 +0000 (08:54 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Wed, 30 Jun 2004 08:54:28 +0000 (08:54 +0000)
SOGo/Main/GNUmakefile.preamble
SOGo/SoObjects/Appointments/GNUmakefile [new file with mode: 0644]
SOGo/SoObjects/Appointments/GNUmakefile.preamble [new file with mode: 0644]
SOGo/SoObjects/Appointments/Product.m [new file with mode: 0644]
SOGo/SoObjects/Appointments/Version [new file with mode: 0644]
SOGo/SoObjects/Appointments/product.plist [new file with mode: 0644]
SOGo/SoObjects/GNUmakefile

index f842ddccdbc6ef6656b4e3f09060e844645b26e9..fc99f1188a47282d86836c17c85fdc66aaa20644 100644 (file)
@@ -1,6 +1,16 @@
 # $Id$
 
+ADDITIONAL_INCLUDE_DIRS += \
+       -I../SoObjects/ \
+       -I../..
+
+ADDITIONAL_LIB_DIRS += \
+       -L../SoObjects/SOGo/$(GNUSTEP_OBJ_DIR)/ \
+       -L../../OGoContentStore/$(GNUSTEP_OBJ_DIR)/ \
+       -L../../SOGoLogic/$(GNUSTEP_OBJ_DIR)/
+
 ADDITIONAL_TOOL_LIBS += \
+       -lSOGo                  \
        -lSOGoLogic             \
        -lOGoContentStore       \
        -lGDLAccess             \
diff --git a/SOGo/SoObjects/Appointments/GNUmakefile b/SOGo/SoObjects/Appointments/GNUmakefile
new file mode 100644 (file)
index 0000000..270b09e
--- /dev/null
@@ -0,0 +1,20 @@
+# $Id: GNUmakefile,v 1.3 2004/04/06 13:01:10 helge Exp $
+
+include $(GNUSTEP_MAKEFILES)/common.make
+
+BUNDLE_NAME        = Appointments
+BUNDLE_EXTENSION   = .SOGo
+BUNDLE_INSTALL_DIR = $(GNUSTEP_USER_ROOT)/Library/SOGo
+
+Appointments_PRINCIPAL_CLASS = SOGoAppointmentsProduct
+
+Appointments_OBJC_FILES = \
+       Product.m                       \
+
+Appointments_RESOURCE_FILES += \
+       Version                 \
+       product.plist
+
+-include GNUmakefile.preamble
+include $(GNUSTEP_MAKEFILES)/bundle.make
+-include GNUmakefile.postamble
diff --git a/SOGo/SoObjects/Appointments/GNUmakefile.preamble b/SOGo/SoObjects/Appointments/GNUmakefile.preamble
new file mode 100644 (file)
index 0000000..1974a02
--- /dev/null
@@ -0,0 +1,10 @@
+# $Id$
+
+ADDITIONAL_INCLUDE_DIRS += \
+       -I.. \
+       -I../../..
+
+ADDITIONAL_LIB_DIRS += \
+       -L../SOGo/$(GNUSTEP_OBJ_DIR)/ \
+       -L../../../OGoContentStore/$(GNUSTEP_OBJ_DIR)/ \
+       -L../../../SOGoLogic/$(GNUSTEP_OBJ_DIR)/
diff --git a/SOGo/SoObjects/Appointments/Product.m b/SOGo/SoObjects/Appointments/Product.m
new file mode 100644 (file)
index 0000000..9a28291
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+  Copyright (C) 2004 SKYRIX Software AG
+
+  This file is part of OpenGroupware.org.
+
+  OGo is free software; you can redistribute it and/or modify it under
+  the terms of the GNU Lesser General Public License as published by the
+  Free Software Foundation; either version 2, or (at your option) any
+  later version.
+
+  OGo is distributed in the hope that it will be useful, but WITHOUT ANY
+  WARRANTY; without even the implied warranty of MERCHANTABILITY or
+  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
+  License for more details.
+
+  You should have received a copy of the GNU Lesser General Public
+  License along with OGo; see the file COPYING.  If not, write to the
+  Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+  02111-1307, USA.
+*/
+// $Id$
+
+#import <Foundation/NSObject.h>
+
+@interface SOGoAppointmentsProduct : NSObject
+{
+}
+
+@end
+
+@implementation SOGoAppointmentsProduct
+
+@end /* SOGoAppointmentsProduct */
diff --git a/SOGo/SoObjects/Appointments/Version b/SOGo/SoObjects/Appointments/Version
new file mode 100644 (file)
index 0000000..93766a7
--- /dev/null
@@ -0,0 +1,3 @@
+# $Id: Version,v 1.9 2004/05/19 14:30:45 helge Exp $
+
+SUBMINOR_VERSION:=1
diff --git a/SOGo/SoObjects/Appointments/product.plist b/SOGo/SoObjects/Appointments/product.plist
new file mode 100644 (file)
index 0000000..c5c06af
--- /dev/null
@@ -0,0 +1,15 @@
+{
+  requires = ( MAIN );
+
+  publicResources = (
+  );
+
+  factories = {
+  };
+  
+  classes = {
+    SOGoAppointmentFolder = {
+      superclass    = "SOGoFolder";
+    };
+  };
+}
index 3e2c043a638ec0bc4933fcd285cde9fc8a342cd0..b7fdaf0853fbdb3d6bb5017d70b4fa25a0cd5326 100644 (file)
@@ -3,6 +3,7 @@
 include $(GNUSTEP_MAKEFILES)/common.make
 
 SUBPROJECTS = \
-       SOGo
+       SOGo            \
+       Appointments    \
 
 include $(GNUSTEP_MAKEFILES)/aggregate.make