From: helge Date: Wed, 30 Jun 2004 08:54:28 +0000 (+0000) Subject: git-svn-id: http://svn.opengroupware.org/SOGo/trunk@98 d1b88da0-ebda-0310-925b-ed51d8... X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=334a837af2810f78c9acc956c4a83344fa9f9c0f;p=scalable-opengroupware.org git-svn-id: http://svn.opengroupware.org/SOGo/trunk@98 d1b88da0-ebda-0310-925b-ed51d893ca5b --- diff --git a/SOGo/Main/GNUmakefile.preamble b/SOGo/Main/GNUmakefile.preamble index f842ddcc..fc99f118 100644 --- a/SOGo/Main/GNUmakefile.preamble +++ b/SOGo/Main/GNUmakefile.preamble @@ -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 index 00000000..270b09e4 --- /dev/null +++ b/SOGo/SoObjects/Appointments/GNUmakefile @@ -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 index 00000000..1974a023 --- /dev/null +++ b/SOGo/SoObjects/Appointments/GNUmakefile.preamble @@ -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 index 00000000..9a282912 --- /dev/null +++ b/SOGo/SoObjects/Appointments/Product.m @@ -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 + +@interface SOGoAppointmentsProduct : NSObject +{ +} + +@end + +@implementation SOGoAppointmentsProduct + +@end /* SOGoAppointmentsProduct */ diff --git a/SOGo/SoObjects/Appointments/Version b/SOGo/SoObjects/Appointments/Version new file mode 100644 index 00000000..93766a7a --- /dev/null +++ b/SOGo/SoObjects/Appointments/Version @@ -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 index 00000000..c5c06afb --- /dev/null +++ b/SOGo/SoObjects/Appointments/product.plist @@ -0,0 +1,15 @@ +{ + requires = ( MAIN ); + + publicResources = ( + ); + + factories = { + }; + + classes = { + SOGoAppointmentFolder = { + superclass = "SOGoFolder"; + }; + }; +} diff --git a/SOGo/SoObjects/GNUmakefile b/SOGo/SoObjects/GNUmakefile index 3e2c043a..b7fdaf08 100644 --- a/SOGo/SoObjects/GNUmakefile +++ b/SOGo/SoObjects/GNUmakefile @@ -3,6 +3,7 @@ include $(GNUSTEP_MAKEFILES)/common.make SUBPROJECTS = \ - SOGo + SOGo \ + Appointments \ include $(GNUSTEP_MAKEFILES)/aggregate.make