OSSP CVS Repository

ossp - Check-in [3804]
Not logged in
[Honeypot]  [Browse]  [Home]  [Login]  [Reports
[Search]  [Ticket]  [Timeline
  [Patchset]  [Tagging/Branching

Check-in Number: 3804
Date: 2002-Oct-21 17:19:37 (local)
2002-Oct-21 15:19:37 (UTC)
User:ms
Branch:
Comment: Birth of OSSP titraq GUI for Cable & Wireless Muenchen accounting system.
Tickets:
Inspections:
Files:
ossp-pkg/as/as-gui/ChangeLog      1.1 -> 1.1.1.1    
ossp-pkg/as/as-gui/ChangeLog      added-> 1.1
ossp-pkg/as/as-gui/Makefile.in      1.1 -> 1.1.1.1    
ossp-pkg/as/as-gui/Makefile.in      added-> 1.1
ossp-pkg/as/as-gui/README      1.1 -> 1.1.1.1    
ossp-pkg/as/as-gui/README      added-> 1.1
ossp-pkg/as/as-gui/TODO      1.1 -> 1.1.1.1    
ossp-pkg/as/as-gui/TODO      added-> 1.1
ossp-pkg/as/as-gui/aclocal.m4      1.1 -> 1.1.1.1    
ossp-pkg/as/as-gui/aclocal.m4      added-> 1.1
ossp-pkg/as/as-gui/as-gui.conf.pod      1.1 -> 1.1.1.1    
ossp-pkg/as/as-gui/as-gui.conf.pod      added-> 1.1
ossp-pkg/as/as-gui/as-gui.pod      1.1 -> 1.1.1.1    
ossp-pkg/as/as-gui/as-gui.pod      added-> 1.1
ossp-pkg/as/as-gui/as_gui_test.sh      1.1 -> 1.1.1.1    
ossp-pkg/as/as-gui/as_gui_test.sh      added-> 1.1
ossp-pkg/as/as-gui/as_main.cpp      1.1 -> 1.1.1.1    
ossp-pkg/as/as-gui/as_main.cpp      added-> 1.1
ossp-pkg/as/as-gui/configure.in      1.1 -> 1.1.1.1    
ossp-pkg/as/as-gui/configure.in      added-> 1.1
ossp-pkg/as/as-gui/devtool      1.1 -> 1.1.1.1    
ossp-pkg/as/as-gui/devtool      added-> 1.1
ossp-pkg/as/as-gui/devtool.conf      1.1 -> 1.1.1.1    
ossp-pkg/as/as-gui/devtool.conf      added-> 1.1
ossp-pkg/as/as-gui/devtool.func      1.1 -> 1.1.1.1    
ossp-pkg/as/as-gui/devtool.func      added-> 1.1

ossp-pkg/as/as-gui/ChangeLog -> 1.1

*** /dev/null    Sat Nov 23 05:16:55 2024
--- -    Sat Nov 23 05:17:18 2024
***************
*** 0 ****
--- 1,3 ----
+ Geschichte des OSSP titraq in Vorwaerts Cronordnung
+ 
+ 020527 Projekt Erzeugung


ossp-pkg/as/as-gui/ChangeLog 1.1 -> 1.1.1.1



ossp-pkg/as/as-gui/Makefile.in -> 1.1

*** /dev/null    Sat Nov 23 05:16:55 2024
--- -    Sat Nov 23 05:17:18 2024
***************
*** 0 ****
--- 1,150 ----
+ ##
+ ##  OSSP titraq - Graphical user interface for time accounting
+ ##  Copyright (c) 2002 Cable & Wireless Deutschland GmbH
+ ##  Copyright (c) 2002 The OSSP Project <http://www.ossp.org/>
+ ##  Copyright (c) 2002 Ralf S. Engelschall
+ ##
+ ##  This file is part of OSSP GUI, a graphical user interface
+ ##  for OSSP which can be found at http://www.ossp.org/
+ ##
+ ##  Permission to use, copy, modify, and distribute this software for
+ ##  any purpose with or without fee is hereby granted, provided that
+ ##  the above copyright notice and this permission notice appear in all
+ ##  copies.
+ ##
+ ##  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+ ##  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ ##  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ ##  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
+ ##  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ ##  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ ##  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+ ##  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ ##  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ ##  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ ##  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ ##  SUCH DAMAGE.
+ ##
+ ##  Makefile.in: Plain old documentation file
+ ##
+ 
+ @SET_MAKE@
+ 
+ DESTDIR         =
+ prefix          = @prefix@
+ exec_prefix     = @exec_prefix@
+ bindir          = @bindir@
+ sbindir         = @sbindir@
+ libdir          = @libdir@
+ includedir      = @includedir@
+ mandir          = @mandir@
+ 
+ CC              = @CC@
+ CXX             = @CXX@
+ CFLAGS          = @CFLAGS@ @DEFS@
+ CXXFLAGS        = @CXXFLAGS@ @DEFS@
+ CPPFLAGS        = @CPPFLAGS@
+ CXXCPP          = @CXXCPP@
+ LDFLAGS         = @LDFLAGS@
+ LIBS            = @LIBS@
+ 
+ # Qt-specific variables
+ QTBASE          = @QTBASE@
+ UIC             = @UIC@
+ MOC             = @MOC@
+ 
+ RM              = rm -f
+ STRIP           = strip
+ CHMOD           = chmod
+ RMDIR           = rmdir
+ SHTOOL          = ./shtool
+ POD2MAN         = pod2man
+ TRUE            = true
+ 
+ PROG_NAME       = titraq
+ 
+ TARGET          = $(TARGET_PROGS) $(TARGET_MANS)
+ TARGET_PROGS    = titraq
+ TARGET_MANS     = titraq.1 titraq.conf.5
+ 
+ SRCS            = main.cpp titraq.cpp titraq_version.c
+ 
+ OBJS            = main.o titraq.o titraq_version.o
+ 
+ # Qt meta object compiler
+ MOC_IN          = titraq.h
+ MOC_OUT         = moc_titraq.cpp
+ MOC_OBJ         = moc_titraq.o
+ 
+ .SUFFIXES:
+ .SUFFIXES: .c .cc .cpp .cxx .o
+ .c.o:
+        $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $<
+ 
+ .cc.o:
+        $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $<
+ 
+ .cpp.o:
+        $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $<
+ 
+ .cxx.o:
+        $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $<
+ 
+ all: Makefile $(TARGET)
+ 
+ $(PROG_NAME): $(OBJS) $(MOC_OBJ)
+        $(CXX) $(LDFLAGS) -o $@ $+ $(LIBS)
+ 
+ $(MOC_OBJ): $(MOC_OUT) $(MOC_IN)
+        $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(MOC_OUT)
+ 
+ $(MOC_OUT): $(MOC) $(MOC_IN)
+        $(MOC) $(MOC_IN) -o $(MOC_OUT)
+ 
+ titraq.1: titraq.pod
+        VS=`$(SHTOOL) version -lc -dshort titraq_version.c`; \
+        VL=`$(SHTOOL) version -lc -dlong titraq_version.c`; \
+        $(POD2MAN) --section=5 --center="Graphical user interface" \
+                --release="$$VS" --date="$$VL" \
+                titraq.pod >titraq.1
+ 
+ titraq.conf.5: titraq.conf.pod
+        VS=`$(SHTOOL) version -lc -dshort titraq_version.c`; \
+        VL=`$(SHTOOL) version -lc -dlong titraq_version.c`; \
+        $(POD2MAN) --section=5 --center="Graphical user interface config file" \
+                --release="$$VS" --date="$$VL" \
+                titraq.conf.pod >titraq.conf.5
+ 
+ install:
+        $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(prefix)
+        $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(bindir)
+        $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(mandir)/man1
+        $(SHTOOL) mkdir -f -p -m 755 $(DESTDIR)$(mandir)/man5
+        $(SHTOOL) install -c -m 644 titraq $(DESTDIR)$(bindir)/titraq
+        $(SHTOOL) install -c -m 644 titraq.1 $(DESTDIR)$(mandir)/man1/titraq.1
+        $(SHTOOL) install -c -m 644 titraq.conf.5 $(DESTDIR)$(mandir)/man5/titraq.conf.5
+ 
+ uninstall:
+        $(RM) $(DESTDIR)$(bindir)/titraq
+        $(RM) $(DESTDIR)$(mandir)/man1/titraq.1
+        $(RM) $(DESTDIR)$(mandir)/man5/titraq.conf.5
+ 
+ clean:
+        $(RM) $(TARGET) $(OBJS) $(MOC_OBJ) $(PROG_NAME).core titraq_pcre.tab
+ 
+ distclean: clean
+        $(RM) config.log config.status config.cache # Generated by ./configure
+        $(RM) Makefile ac_config.h                  # Generated by ./configure
+        $(RM) $(MOC_OUT)                         # Generated by $(MOC)
+ 
+ realclean: distclean
+        $(RM) configure ac_config.h.in*             # Generated by Autoconf
+        $(RM) configure.lineno                      # Generated by Autoconf
+        $(RM) shtool                                # Generated by Devtool
+ 
+ check: test
+ test: titraq
+        $(CHMOD) 755 titraq_test.sh > /dev/null 2>&1
+        ./titraq_test.sh
+ 
+ .PHONY: install uninstall clean distclean realclean check test


ossp-pkg/as/as-gui/Makefile.in 1.1 -> 1.1.1.1



ossp-pkg/as/as-gui/README -> 1.1



ossp-pkg/as/as-gui/README 1.1 -> 1.1.1.1



ossp-pkg/as/as-gui/TODO -> 1.1

*** /dev/null    Sat Nov 23 05:16:55 2024
--- -    Sat Nov 23 05:17:18 2024
***************
*** 0 ****
--- 1,69 ----
+                    ***************************************
+                    *                                     *
+                    *   TODO: OSSP titraq Specification   *
+                    *                                     *
+                    ***************************************
+ 
+ Consider
+ --------
+ 
+ Must do
+ -------
+ 
+ Dreams
+ ------
+ 
+ Document
+ --------
+ 
+ Project plan
+ ------------
+     Prototype
+     Release v0.8    Milestone 1, Alpha
+     Release v0.9    Milestone 2, Beta
+     Release v1.0    Milestone 3,
+     Release v1.2    Milestone 4,
+ 
+ Requirements
+ ------------
+ 
+ Deliverables
+ ------------
+     Binaries
+       titraq           Verwendung
+ 
+     Designdocs
+       titraq_design.ps Systemdiagramme
+ 
+     Manpage
+       titraq.1         Hauptinfo
+       titraq.conf.5    Beschreibung des Configdatei
+ 
+     Geliefert         
+       titraq.conf      Ausgekommentet Beispieldatei
+ 
+ Pseudocode
+ ----------
+     parse command line
+     parse titraq.conf file
+     show control window
+ 
+ Test case
+ ---------
+     Pre:
+     tar zxvf titraq-0.9.tar
+     cd titraq-0.9
+     ./configure
+     make
+     su
+     make install
+ 
+     Assume:
+     OS has Qt 3.0.5 or newer multithreaded library
+ 
+     Begin:
+     $ titraq
+ 
+     Output:
+     Post:
+     Procedure:


ossp-pkg/as/as-gui/TODO 1.1 -> 1.1.1.1



ossp-pkg/as/as-gui/aclocal.m4 -> 1.1

*** /dev/null    Sat Nov 23 05:16:55 2024
--- -    Sat Nov 23 05:17:18 2024
***************
*** 0 ****
--- 1,419 ----
+ ##
+ ##  OSSP titraq - Graphical user interface for time accounting
+ ##  Copyright (c) 2002 Cable & Wireless Deutschland GmbH
+ ##  Copyright (c) 2002 The OSSP Project <http://www.ossp.org/>
+ ##  Copyright (c) 2002 Ralf S. Engelschall
+ ##
+ ##  This file is part of OSSP GUI, a graphical user interface
+ ##  for OSSP which can be found at http://www.ossp.org/
+ ##
+ ##  Permission to use, copy, modify, and distribute this software for
+ ##  any purpose with or without fee is hereby granted, provided that
+ ##  the above copyright notice and this permission notice appear in all
+ ##  copies.
+ ##
+ ##  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+ ##  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ ##  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ ##  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
+ ##  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ ##  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ ##  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+ ##  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ ##  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ ##  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ ##  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ ##  SUCH DAMAGE.
+ ##
+ ##  aclocal.m4: Plain old documentation file
+ ##
+ 
+ 
+ dnl ##
+ dnl ##  Support for Platform IDs
+ dnl ##
+ dnl ##  configure.in:
+ dnl ##    AC_PLATFORM(<variable>)
+ dnl ##
+ 
+ AC_DEFUN(AC_PLATFORM,[
+ if test ".$host" != .NONE && test ".$host" != .; then
+     $1="$host"
+ else
+     $1=`${CONFIG_SHELL-/bin/sh} $srcdir/config.guess`
+ fi
+ $1=`${CONFIG_SHELL-/bin/sh} $srcdir/config.sub $$1` || exit 1
+ AC_SUBST($1)
+ if test ".$enable_subdir" != .yes; then
+     echo "Platform: ${TB}${$1}${TN}"
+ fi
+ ])dnl
+ 
+ 
+ dnl ##
+ dnl ##  Support for Configuration Headers
+ dnl ##
+ dnl ##  configure.in:
+ dnl ##    AC_HEADLINE(<short-name>, <long-name>,
+ dnl ##                <vers-var>, <vers-file>,
+ dnl ##                <copyright>)
+ dnl ##
+ 
+ AC_DEFUN(AC_HEADLINE,[dnl
+ #   configuration header
+ if test ".`echo dummy [$]@ | grep help`" = .; then
+     #   bootstrapping shtool
+     ac_prog=[$]0
+ changequote(, )dnl
+     ac_srcdir=`echo $ac_prog | sed -e 's%/[^/][^/]*$%%' -e 's%\([^/]\)/*$%\1%'`
+ changequote([, ])dnl
+     test ".$ac_srcdir" = ".$ac_prog" && ac_srcdir=.
+     ac_shtool="$ac_srcdir/shtool"
+ 
+     #   find out terminal sequences
+     TB=`$ac_shtool echo -n -e %B 2>/dev/null`
+     TN=`$ac_shtool echo -n -e %b 2>/dev/null`
+ 
+     #   find out package version
+     $3_STR="`$ac_shtool version -l c -d long $ac_srcdir/$4`"
+     AC_SUBST($3_STR)
+  
+     #   friendly header ;)
+     if test ".$enable_headline" != .no; then
+         echo "Configuring ${TB}$1${TN} ($2), Version ${TB}${$3_STR}${TN}"
+         echo "$5"
+     fi
+ 
+     #   additionally find out hex version
+     $3_HEX="`$ac_shtool version -l c -d hex $ac_srcdir/$4`"
+     AC_SUBST($3_HEX)
+ fi
+ ])dnl
+ 
+ 
+ dnl ##
+ dnl ##  Check whether compiler option works
+ dnl ##
+ dnl ##  configure.in:
+ dnl ##    AC_COMPILER_OPTION(<name>, <display>, <option>,
+ dnl ##                       <action-success>, <action-failure>)
+ dnl ##
+ 
+ AC_DEFUN(AC_COMPILER_OPTION,[dnl
+ AC_MSG_CHECKING(whether compiler option(s) $2 work)
+ AC_CACHE_VAL(ac_cv_compiler_option_$1,[
+ SAVE_CXXFLAGS="$CXXFLAGS"
+ CXXFLAGS="$CXXFLAGS $3"
+ AC_LANG(C++)
+ AC_TRY_COMPILE([],[], ac_cv_compiler_option_$1=yes, ac_cv_compiler_option_$1=no)
+ CXXFLAGS="$SAVE_CXXFLAGS"
+ ])dnl
+ if test ".$ac_cv_compiler_option_$1" = .yes; then
+     ifelse([$4], , :, [$4])
+ else
+     ifelse([$5], , :, [$5])
+ fi
+ AC_MSG_RESULT([$ac_cv_compiler_option_$1])
+ ])dnl
+ 
+ 
+ dnl ##
+ dnl ##  Check the Qt implementation path
+ dnl ##
+ dnl ##  configure.in:
+ dnl ##    AC_CHECK_QT
+ dnl ##
+ 
+ AC_DEFUN(AC_CHECK_QT,[dnl
+ AC_ARG_WITH(qtdir,dnl
+ [  --with-qtdir=[DIR]    prefix where Qt is installed], qtdir=$withval,)
+ AC_MSG_CHECKING(the Qt installation path)
+ 
+ dnl ## Ensure that we have a basic path to start searching
+ if test -x "$qtdir";
+ then
+     QTBASE=$qtdir
+     AC_MSG_RESULT(${QTBASE})
+ elif test -x "${QTDIR}";
+ then
+     QTBASE="${QTDIR}"
+     AC_MSG_RESULT(${QTBASE})
+ else
+     AC_MSG_RESULT(not found)
+     AC_MSG_ERROR([Neither \$QTDIR nor --with-qtdir=[DIR] paths exist])
+ fi
+ 
+ dnl ## Now search for libs and headers
+ changequote(, )dnl
+ for file in x `find $QTBASE/include -name "qapplication.h" -print`; do
+     test .$file = .x && continue
+     c_dir=`echo $file | sed -e 's;[^/]*$;;' -e 's;\(.\)/$;\1;'`
+ done
+ 
+ dnl ## Shared object library is scanned
+ dnl ## FIXME Merge static and dynamic library search blocks
+ for file in x `find $QTBASE/lib -name "libqt*.so" -print`; do
+     test .$file = .x && continue
+     l_dir=`echo $file | sed -e 's;[^/]*$;;' -e 's;\(.\)/$;\1;'`
+     lib=`echo $file | sed -e 's;^.*/\(.*\)$;\1;' -e 's;lib\(.*\)\.so;\1;'`
+ done
+ 
+ dnl ## But the static library is preferred
+ for file in x `find $QTBASE/lib -name "libqt*.a" -print`; do
+     test .$file = .x && continue
+     l_dir=`echo $file | sed -e 's;[^/]*$;;' -e 's;\(.\)/$;\1;'`
+     lib=`echo $file | sed -e 's;^.*/\(.*\)$;\1;' -e 's;lib\(.*\)\.a;\1;'`
+ done
+ changequote([, ])dnl
+ 
+ dnl ## Append paths of libs and headers
+ dnl ## FIXME Remove this qt-mt check and do --enable-threads instead
+ if test ".$lib" = .qt-mt; then
+     LIBS="$LIBS -l$lib"
+ else
+     LIBS="$LIBS -l$lib"
+ fi
+ LDFLAGS="$LDFLAGS -L$l_dir -R$l_dir"
+ CPPFLAGS="$CPPFLAGS -DQT_THREAD_SUPPORT"
+ CXXCPP="$CXXCPP -DQT_THREAD_SUPPORT"
+ CXXFLAGS="$CXXFLAGS -I$c_dir"
+ ])
+ 
+ 
+ dnl ##
+ dnl ##  UIC check, should come after the Qt check
+ dnl ##
+ dnl ##  configure.in:
+ dnl ##    AC_CHECK_UIC
+ dnl ##
+ 
+ AC_DEFUN(AC_CHECK_UIC,[dnl
+ AC_MSG_CHECKING(UIC location)
+ if test -x ${QTBASE}/bin/uic
+ then
+     UIC=${QTBASE}/bin/uic
+     AC_MSG_RESULT(${QTBASE}/bin/uic)
+ else
+     UIC=uic
+     AC_MSG_RESULT(assumed present)
+ fi
+ ])
+ 
+ 
+ dnl ##
+ dnl ##  MOC check, should come after the Qt check
+ dnl ##
+ dnl ##  configure.in:
+ dnl ##    AC_CHECK_MOC
+ dnl ##
+ 
+ AC_DEFUN(AC_CHECK_MOC,[dnl
+ AC_MSG_CHECKING(MOC location)
+ if test -x ${QTBASE}/bin/moc
+ then
+     MOC=${QTBASE}/bin/moc
+     AC_MSG_RESULT(${QTBASE}/bin/moc)
+ else
+     MOC=moc
+     AC_MSG_RESULT(assumed present)
+ fi
+ ])
+ 
+ 
+ dnl ##
+ dnl ##  Debugging Support
+ dnl ##
+ dnl ##  configure.in:
+ dnl ##    AC_CHECK_DEBUGGING
+ dnl ##
+ 
+ AC_DEFUN(AC_CHECK_DEBUGGING,[dnl
+ AC_ARG_ENABLE(debug,dnl
+ [  --enable-debug          build for debugging (default=no)],
+ [dnl
+ if test ".$ac_cv_prog_gcc" = ".yes"; then
+     case "$CXXFLAGS" in
+         *-O* ) ;;
+            * ) CXXFLAGS="$CXXFLAGS -O2" ;;
+     esac
+     case "$CXXFLAGS" in
+         *-g* ) ;;
+            * ) CXXFLAGS="$CXXFLAGS -g" ;;
+     esac
+     case "$CXXFLAGS" in
+         *-pipe* ) ;;
+               * ) AC_COMPILER_OPTION(pipe, -pipe, -pipe, CXXFLAGS="$CXXFLAGS -pipe") ;;
+     esac
+     AC_COMPILER_OPTION(defdbg, -DDEBUG, -DDEBUG, CXXFLAGS="$CXXFLAGS -DDEBUG")
+ dnl    AC_COMPILER_OPTION(ggdb3, -ggdb3, -ggdb3, CXXFLAGS="$CXXFLAGS -ggdb3")
+     CXXFLAGS="$CXXFLAGS -pedantic"
+     CXXFLAGS="$CXXFLAGS -Wall"
+     WMORE="-Wshadow -Wpointer-arith -Wcast-align -Winline"
+     WMORE="$WMORE -Wmissing-prototypes -Wmissing-declarations -Wnested-externs"
+     AC_COMPILER_OPTION(wmore, -W<xxx>, $WMORE, CXXFLAGS="$CXXFLAGS $WMORE")
+     AC_COMPILER_OPTION(wnolonglong, -Wno-long-long, -Wno-long-long, CXXFLAGS="$CXXFLAGS -Wno-long-long")
+ else
+     case "$CXXFLAGS" in
+         *-g* ) ;;
+            * ) CXXFLAGS="$CXXFLAGS -g" ;;
+     esac
+ fi
+ msg="enabled"
+ dnl AC_DEFINE(DEBUG, 1, [Define to 1 if you want to enable debugging])
+ ],[
+ if test ".$ac_cv_prog_gcc" = ".yes"; then
+ case "$CXXFLAGS" in
+     *-pipe* ) ;;
+           * ) AC_COMPILER_OPTION(pipe, -pipe, -pipe, CXXFLAGS="$CXXFLAGS -pipe") ;;
+ esac
+ fi
+ case "$CXXFLAGS" in
+     *-g* ) CXXFLAGS=`echo "$CXXFLAGS" |\
+                    sed -e 's/ -g / /g' -e 's/ -g$//' -e 's/^-g //g' -e 's/^-g$//'` ;;
+ esac
+ case "$CXXFLAGS" in
+     *-g* ) CXXFLAGS=`echo "$CXXFLAGS" |\
+                      sed -e 's/ -g / /g' -e 's/ -g$//' -e 's/^-g //g' -e 's/^-g$//'` ;;
+ esac
+ 
+ CXXFLAGS="$CXXFLAGS -DQT_NO_DEBUG"
+ msg=disabled
+ ])dnl
+ AC_MSG_CHECKING(for compilation debug mode)
+ AC_MSG_RESULT([$msg])
+ if test ".$msg" = .enabled; then
+     enable_shared=no
+ fi
+ ])
+ 
+ define(AC_IFALLYES,[dnl
+ ac_rc=yes
+ for ac_spec in $1; do
+     ac_type=`echo "$ac_spec" | sed -e 's/:.*$//'`
+     ac_item=`echo "$ac_spec" | sed -e 's/^.*://'`
+     case $ac_type in
+         header [)]
+             ac_item=`echo "$ac_item" | sed 'y%./+-%__p_%'`
+             ac_var="ac_cv_header_$ac_item"
+             ;;
+         file [)]
+             ac_item=`echo "$ac_item" | sed 'y%./+-%__p_%'`
+             ac_var="ac_cv_file_$ac_item"
+             ;;
+         func    [)] ac_var="ac_cv_func_$ac_item"   ;;
+         lib     [)] ac_var="ac_cv_lib_$ac_item"    ;;
+         define  [)] ac_var="ac_cv_define_$ac_item" ;;
+         typedef [)] ac_var="ac_cv_typedef_$ac_item" ;;
+         custom  [)] ac_var="$ac_item" ;;
+     esac
+     eval "ac_val=\$$ac_var"
+     if test ".$ac_val" != .yes; then
+         ac_rc=no
+         break
+     fi
+ done
+ if test ".$ac_rc" = .yes; then
+     :
+     $2
+ else
+     :
+     $3
+ fi
+ ])
+ 
+ 
+ dnl ##
+ dnl ##  Check for an external/extension library.
+ dnl ##  - is aware of <libname>-config style scripts
+ dnl ##  - searches under standard paths include, lib, etc.
+ dnl ##  - searches under subareas like .libs, etc.
+ dnl ##
+ dnl ##  configure.in:
+ dnl ##      AC_CHECK_EXTLIB(<realname>, <libname>, <func>, <header>,
+ dnl ##                      [<success-action> [, <fail-action>]])
+ dnl ##  Makefile.in:
+ dnl ##      CFLAGS  = @CFLAGS@
+ dnl ##      LDFLAGS = @LDFLAGS@
+ dnl ##      LIBS    = @LIBS@
+ dnl ##  shell:
+ dnl ##      $ ./configure --with-<libname>[=DIR]
+ dnl ##
+ 
+ AC_DEFUN(AC_CHECK_EXTLIB,[dnl
+ AC_ARG_WITH($2, [dnl
+ [  --with-]m4_substr([$2[[=DIR]]                     ], 0, 19)[build with external $1 library (default=no)]], [dnl
+     if test ".$with_$2" = .yes; then
+         #   via config script
+         $2_version=`($2-config --version) 2>/dev/null`
+         if test ".$$2_version" != .; then
+             CFLAGS="$CFLAGS `$2-config --cflags`"
+             LDFLAGS="$LDFLAGS `$2-config --ldflags`"
+         fi
+     else
+         if test -d "$with_$2"; then
+             found=0
+             #   via config script
+             for dir in $with_$2/bin $with_$2; do
+                 if test -f "$dir/$2-config"; then
+                     $2_version=`($dir/$2-config --version) 2>/dev/null`
+                     if test ".$$2_version" != .; then
+                         CFLAGS="$CFLAGS `$dir/$2-config --cflags`"
+                         LDFLAGS="$LDFLAGS `$dir/$2-config --ldflags`"
+                         found=1
+                         break
+                     fi
+                 fi
+             done
+             #   via standard paths
+             if test ".$found" = .0; then
+                 for dir in $with_$2/include/$2 $with_$2/include $with_$2; do
+                     if test -f "$dir/$4"; then
+                         CFLAGS="$CFLAGS -I$dir"
+                         found=1
+                         break
+                     fi
+                 done
+                 for dir in $with_$2/lib/$2 $with_$2/lib $with_$2; do
+                     if test -f "$dir/lib$2.a" -o -f "$dir/lib$2.so"; then
+                         LDFLAGS="$LDFLAGS -L$dir"
+                         found=1
+                         break
+                     fi
+                 done
+             fi
+             #   in any subarea
+             if test ".$found" = .0; then
+ changequote(, )dnl
+                 for file in x `find $with_$2 -name "$4" -type f -print`; do
+                     test .$file = .x && continue
+                     dir=`echo $file | sed -e 's;[[^/]]*$;;' -e 's;\(.\)/$;\1;'`
+                     CFLAGS="$CFLAGS -I$dir"
+                 done
+                 for file in x `find $with_$2 -name "lib$2.[[aso]]" -type f -print`; do
+                     test .$file = .x && continue
+                     dir=`echo $file | sed -e 's;[[^/]]*$;;' -e 's;\(.\)/$;\1;'`
+                     LDFLAGS="$LDFLAGS -L$dir"
+                 done
+ changequote([, ])dnl
+             fi
+         fi
+     fi
+     AC_HAVE_HEADERS($4)
+     AC_CHECK_LIB($2, $3)
+     AC_IFALLYES(header:$4 lib:$2_$3, with_$2=yes, with_$2=no)
+     if test ".$with_$2" = .no; then
+         AC_ERROR([Unable to find $1 library])
+     fi
+     ], [dnl
+ if test ".$with_$2" = .; then
+     with_$2=no
+ fi
+     ])dnl
+ AC_MSG_CHECKING(whether to build against external $1 library)
+ if test ".$with_$2" = .yes; then
+     ifelse([$5], , :, [$5])
+ else
+     ifelse([$6], , :, [$6])
+ fi
+ AC_MSG_RESULT([$with_$2])
+ ])dnl


ossp-pkg/as/as-gui/aclocal.m4 1.1 -> 1.1.1.1



ossp-pkg/as/as-gui/as-gui.conf.pod -> 1.1

*** /dev/null    Sat Nov 23 05:16:55 2024
--- -    Sat Nov 23 05:17:18 2024
***************
*** 0 ****
--- 1,49 ----
+ ##
+ ##  OSSP titraq - Graphical user interface for time accounting
+ ##  Copyright (c) 2002 Cable & Wireless Deutschland GmbH
+ ##  Copyright (c) 2002 The OSSP Project <http://www.ossp.org/>
+ ##  Copyright (c) 2002 Ralf S. Engelschall
+ ##
+ ##  This file is part of OSSP GUI, a graphical user interface
+ ##  for OSSP which can be found at http://www.ossp.org/
+ ##
+ ##  Permission to use, copy, modify, and distribute this software for
+ ##  any purpose with or without fee is hereby granted, provided that
+ ##  the above copyright notice and this permission notice appear in all
+ ##  copies.
+ ##
+ ##  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+ ##  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ ##  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ ##  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
+ ##  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ ##  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ ##  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+ ##  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ ##  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ ##  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ ##  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ ##  SUCH DAMAGE.
+ ##
+ ##  titraq.conf.pod: Plain old documentation file
+ ##
+ 
+ =pod
+ 
+ =head1 NAME
+ 
+ B<titraq.conf> - OSSP titraq configuration file
+ 
+ =head1 DESCRIPTION
+ 
+ =head1 EXAMPLES
+ 
+ =head1 SEE ALSO
+ 
+ titraq(1)
+ 
+ =head1 AUTHOR
+ 
+ Michael Schloh von Bennewitz
+ 
+ =cut


ossp-pkg/as/as-gui/as-gui.conf.pod 1.1 -> 1.1.1.1



ossp-pkg/as/as-gui/as-gui.pod -> 1.1

*** /dev/null    Sat Nov 23 05:16:55 2024
--- -    Sat Nov 23 05:17:18 2024
***************
*** 0 ****
--- 1,65 ----
+ ##
+ ##  OSSP titraq - Graphical user interface for time accounting
+ ##  Copyright (c) 2002 Cable & Wireless Deutschland GmbH
+ ##  Copyright (c) 2002 The OSSP Project <http://www.ossp.org/>
+ ##  Copyright (c) 2002 Ralf S. Engelschall
+ ##
+ ##  This file is part of OSSP GUI, a graphical user interface
+ ##  for OSSP which can be found at http://www.ossp.org/
+ ##
+ ##  Permission to use, copy, modify, and distribute this software for
+ ##  any purpose with or without fee is hereby granted, provided that
+ ##  the above copyright notice and this permission notice appear in all
+ ##  copies.
+ ##
+ ##  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+ ##  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ ##  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ ##  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
+ ##  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ ##  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ ##  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+ ##  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ ##  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ ##  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ ##  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ ##  SUCH DAMAGE.
+ ##
+ ##  titraq.pod: Plain old documentation file
+ ##
+ 
+ =pod
+ 
+ =head1 NAME
+ 
+ B<titraq> - OSSP titraq time accounting
+ 
+ =head1 SYNOPSIS
+ 
+ =head1 DESCRIPTION
+ 
+ =head1 OPTIONS
+ 
+ =item B<-?>|B<--usage>
+ 
+ print short usage summary, then exit.
+ 
+ =head1 ENVIRONMENT
+ 
+ =head1 RETURN VALUE
+ 
+ =head1 EXAMPLES
+ 
+ =head1 FILES
+ 
+ =head1 SEE ALSO
+ 
+ titraq.conf(5)
+ 
+ =head1 AUTHOR
+ 
+ Michael Schloh von Bennewitz
+ 
+ =head1 HISTORY
+ 
+ =cut


ossp-pkg/as/as-gui/as-gui.pod 1.1 -> 1.1.1.1



ossp-pkg/as/as-gui/as_gui_test.sh -> 1.1

*** /dev/null    Sat Nov 23 05:16:55 2024
--- -    Sat Nov 23 05:17:18 2024
***************
*** 0 ****
--- 1 ----
+ echo "Sorry, this test doesn't do anything yet."


ossp-pkg/as/as-gui/as_gui_test.sh 1.1 -> 1.1.1.1



ossp-pkg/as/as-gui/as_main.cpp -> 1.1

*** /dev/null    Sat Nov 23 05:16:55 2024
--- -    Sat Nov 23 05:17:18 2024
***************
*** 0 ****
--- 1,15 ----
+ #include <qapplication.h>
+ #include "version.h"
+ //#include "top.h"
+ 
+ int main(int argc, char *argv[])
+ {
+     QApplication App(argc, argv);
+ 
+     KarmWindow *karm = new KarmWindow;
+ 
+     App.setMainWidget(karm);
+     karm->show();
+ 
+     return App.exec();
+ }


ossp-pkg/as/as-gui/as_main.cpp 1.1 -> 1.1.1.1



ossp-pkg/as/as-gui/configure.in -> 1.1

*** /dev/null    Sat Nov 23 05:16:55 2024
--- -    Sat Nov 23 05:17:18 2024
***************
*** 0 ****
--- 1,96 ----
+ ##
+ ##  OSSP titraq - Graphical user interface for time accounting
+ ##  Copyright (c) 2002 Cable & Wireless Deutschland GmbH
+ ##  Copyright (c) 2002 The OSSP Project <http://www.ossp.org/>
+ ##  Copyright (c) 2002 Ralf S. Engelschall
+ ##
+ ##  This file is part of OSSP GUI, a graphical user interface
+ ##  for OSSP which can be found at http://www.ossp.org/
+ ##
+ ##  Permission to use, copy, modify, and distribute this software for
+ ##  any purpose with or without fee is hereby granted, provided that
+ ##  the above copyright notice and this permission notice appear in all
+ ##  copies.
+ ##
+ ##  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+ ##  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+ ##  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+ ##  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
+ ##  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ ##  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ ##  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+ ##  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ ##  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ ##  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ ##  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ ##  SUCH DAMAGE.
+ ##
+ ##  configure.in: Plain old documentation file
+ ##
+ 
+ dnl Version requirement and information
+ AC_PREREQ(2.53)
+ AC_REVISION(1.0)
+ 
+ dnl Process this file with autoconf
+ AC_INIT
+ AC_CONFIG_HEADER(ac_config.h)
+ AC_LANG_CPLUSPLUS
+ 
+ dnl Checks basic requirements
+ AC_PROG_CXX
+ AC_PROG_CXXCPP
+ AC_PROG_INSTALL
+ 
+ AC_PROG_CC
+ AC_PROG_CPP
+ AC_PROG_CC_STDC
+ AC_HEADER_STDC
+ 
+ dnl Portable thread conf from acx_pthread.m4 autoconf macro
+ ACX_PTHREAD
+ CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
+ CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS"
+ LIBS="$PTHREAD_CFLAGS $LIBS"
+ 
+ dnl Check other requirements
+ AC_PROG_MAKE_SET
+ AC_CHECK_DEBUGGING
+ 
+ dnl Check for Dmalloc library
+ AC_CHECK_EXTLIB([Dmalloc],
+                 dmalloc, dmalloc_debug, dmalloc.h,
+                 [AC_DEFINE(WITH_DMALLOC, 1, [Define to 1 if building with Dmalloc])])
+ 
+ dnl Find out where the Qt implementation resides
+ AC_CHECK_QT
+ AC_SUBST(QTBASE)
+ AC_CHECK_UIC
+ AC_SUBST(UIC)
+ AC_CHECK_MOC
+ AC_SUBST(MOC)
+ 
+ dnl Check our X environment
+ AC_PATH_X
+ if test ".$no_x" = .yes; then
+     AC_ERROR([X11 includes and libraries are required, but none were found.])
+ else
+     CXXFLAGS="$CXXFLAGS -I$x_includes"
+     LDFLAGS="$LDFLAGS -L$x_libraries"
+     LIBS="$LIBS -lX11 -lXext -lSM -lm"
+ fi
+ 
+ dnl Check typical FreeBSD resources
+ AC_CHECK_LIB(Xrender, XRenderFindFormat, [LIBS="$LIBS -lXrender"])
+ AC_CHECK_LIB(Xinerama, XineramaIsActive, [LIBS="$LIBS -lXinerama"])
+ AC_CHECK_LIB(GL, glBegin, [LIBS="$LIBS -lGL"])
+ AC_CHECK_LIB(ICE, IceOpenConnection, [LIBS="$LIBS -lICE"])
+ AC_CHECK_LIB(dl, dlopen, [LIBS="$LIBS -ldl"])
+ 
+ enable_shared=no
+ export enable_shared
+ enable_headline=no
+ export enable_headline
+ 
+ dnl Make all the necessary Makefiles
+ AC_OUTPUT(Makefile)


ossp-pkg/as/as-gui/configure.in 1.1 -> 1.1.1.1



ossp-pkg/as/as-gui/devtool -> 1.1

*** /dev/null    Sat Nov 23 05:16:55 2024
--- -    Sat Nov 23 05:17:18 2024
***************
*** 0 ****
--- 1,46 ----
+ #! /bin/sh
+ ##
+ ##  devtool -- Development Tool
+ ##  Copyright (c) 2001-2002 Ralf S. Engelschall <rse@engelschall.com> 
+ ##
+ 
+ if [ $# -eq 0 ]; then
+     echo "devtool:USAGE: devtool <command> [<arg> ...]" 1>&2
+     exit 1
+ fi
+ 
+ cmd="$1"
+ shift
+ 
+ devtoolfunc="./devtool.func"
+ 
+ if [ ! -f devtool.conf ]; then
+     echo "devtool:ERROR: no devtool.conf in current directory" 1>&2
+     exit 1
+ fi
+ 
+ cmdline=`grep "^%$cmd" devtool.conf`
+ if [ ".$cmdline" = . ]; then
+     echo "devtool:ERROR: command $cmd not found in devtool.conf" 1>&2
+     exit 1
+ fi
+ 
+ if [ ".$TMPDIR" != . ]; then
+     tmpdir="$TMPDIR"
+ elif [ ".$TEMPDIR" != . ]; then
+     tmpdir="$TEMPDIR"
+ else
+     tmpdir="/tmp"
+ fi
+ tmpfile="$tmpdir/titraq.$$.tmp"
+ 
+ rm -f $tmpfile
+ touch $tmpfile
+ echo ". $devtoolfunc" >>$tmpfile
+ ( sed <devtool.conf -e "1,/^%common/d" -e '/^%.*/,$d'
+   sed <devtool.conf -e "1,/^%$cmd/d" -e '/^%.*/,$d' ) |\
+ sed -e 's;\([  ]\)@\([a-zA-Z_][a-zA-Z0-9_]*\);\1devtool_\2;' >>$tmpfile
+ 
+ sh $tmpfile "$@"
+ 
+ rm -f $tmpfile >/dev/null 2>&1 || true


ossp-pkg/as/as-gui/devtool 1.1 -> 1.1.1.1



ossp-pkg/as/as-gui/devtool.conf -> 1.1

*** /dev/null    Sat Nov 23 05:16:55 2024
--- -    Sat Nov 23 05:17:18 2024
***************
*** 0 ****
--- 1,27 ----
+ ##
+ ##  devtool.conf -- Development Tool Configuration
+ ##
+ 
+ %autogen
+     @autogen shtool   1.6.1 "1.6.*" all
+     @autogen autoconf 2.54  "2.5[3-9]*"
+ 
+ %autoclean
+     @autoclean shtool
+     @autoclean autoconf
+ 
+ %configure
+     ./configure \
+         --prefix=/tmp/titraq \
+         --disable-shared \
+         "$@"
+ 
+ %version
+     ./shtool version -l c -n "OSSP titraq" -p "titraq_" -e titraq_version.c
+ 
+ %dist
+     make distclean >/dev/null 2>&1
+     ./shtool fixperm -v .
+     V=`./shtool version -l txt -d short titraq_version.c`
+     ./shtool tarball -o titraq-${V}.tar.gz -d titraq-${V} -u ossp -g ossp \
+                      -e 'CVS,\.cvsignore,\.[ao]$,^\.,devtool.conf' -c 'gzip --best' .


ossp-pkg/as/as-gui/devtool.conf 1.1 -> 1.1.1.1



ossp-pkg/as/as-gui/devtool.func -> 1.1

*** /dev/null    Sat Nov 23 05:16:55 2024
--- -    Sat Nov 23 05:17:18 2024
***************
*** 0 ****
--- 1,73 ----
+ ##
+ ##  devtool.func -- Development Tool Functions
+ ##  Copyright (c) 2001-2002 Ralf S. Engelschall <rse@engelschall.com> 
+ ##
+ 
+ devtool_require () {
+     t="$1"; o="$2"; p="$3"; e="$4"; a="$5"
+     v=`($t $o | head -1 | awk "{ print \\\$$p; }") 2>/dev/null`
+     if [ ".$v" = . ]; then
+         echo "devtool:ERROR: unable to determine version of $t" 1>&2
+         exit 1
+     fi
+     case "$v" in
+         $e )
+             ;;
+         $a )
+             echo "devtool:WARNING: $t version $v still accepted, although expected $e." 1>&2
+             ;;
+         * )
+             echo "devtool:ERROR: $t version $e expected, but found $v." 1>&2
+             exit 1
+             ;;
+     esac
+     echo "$v"
+ }
+ 
+ devtool_autogen () {
+     tool=$1
+     shift
+     case $tool in
+         autoconf )
+             autoconf_version=`devtool_require autoconf --version 4 "$1" "$2"`
+             echo "generating (GNU Autoconf $autoconf_version): configure ac_config.h.in"
+             autoconf
+             autoheader 2>&1 | grep -v "is unchanged"
+             rm -rf autom4te.cache >/dev/null 2>&1
+             ;;
+         libtool )
+             libtoolize_version=`devtool_require libtoolize --version 4 "$1" "$2"`
+             echo "generating (GNU Libtool $libtoolize_version): ltmain.sh, libtool.m4, config.guess, config.sub"
+             libtoolize --force --copy >/dev/null 2>&1
+             cp `libtoolize --force --copy --dry-run | grep "add the contents of" |\
+                 sed -e 's;^[^\`]*\`;;' -e "s;'.*;;"` libtool.m4
+             ;;
+         shtool )
+             shtoolize_version=`devtool_require shtoolize -v 3 "$1" "$2"`
+             echo "generating (GNU Shtool $shtoolize_version): shtool"
+             shift
+             shift
+             shtoolize -q "$@"
+             ;;
+     esac
+ }
+ 
+ devtool_autoclean () {
+     tool=$1
+     shift
+     case $tool in
+         autoconf )
+             echo "removing: config.h.in ac_config.h.in"
+             rm -f configure config.h.in
+             rm -f configure ac_config.h.in
+             ;;
+         libtool )
+             echo "removing: ltmain.sh libtool.m4 config.guess config.sub"
+             rm -f ltmain.sh libtool.m4 config.guess config.sub
+             ;;
+         shtool )
+             echo "removing: shtool"
+             rm -f shtool
+             ;;
+     esac
+ }


ossp-pkg/as/as-gui/devtool.func 1.1 -> 1.1.1.1


CVSTrac 2.0.1