Index: ossp-pkg/as/as-gui/Makefile.in
RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/Makefile.in,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/as/as-gui/Makefile.in,v' | diff -u /dev/null - -L'ossp-pkg/as/as-gui/Makefile.in' 2>/dev/null
--- ossp-pkg/as/as-gui/Makefile.in
+++ - 2025-05-20 08:46:27.960354438 +0200
@@ -0,0 +1,150 @@
+##
+## OSSP titraq - Graphical user interface for time accounting
+## Copyright (c) 2002 Cable & Wireless Deutschland GmbH
+## Copyright (c) 2002 The OSSP Project
+## 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: Makefile for use with configure
+##
+
+@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 karm.cpp titraq_version.c
+
+OBJS = main.o karm.o titraq_version.o
+
+# Qt meta object compiler
+MOC_IN = karm.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
Index: ossp-pkg/as/as-gui/aclocal.m4
RCS File: /v/ossp/cvs/ossp-pkg/as/as-gui/aclocal.m4,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/as/as-gui/aclocal.m4,v' | diff -u /dev/null - -L'ossp-pkg/as/as-gui/aclocal.m4' 2>/dev/null
--- ossp-pkg/as/as-gui/aclocal.m4
+++ - 2025-05-20 08:46:27.963338372 +0200
@@ -0,0 +1,419 @@
+##
+## OSSP titraq - Graphical user interface for time accounting
+## Copyright (c) 2002 Cable & Wireless Deutschland GmbH
+## Copyright (c) 2002 The OSSP Project
+## 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: Autoconf M4 macros
+##
+
+
+dnl ##
+dnl ## Support for Platform IDs
+dnl ##
+dnl ## configure.in:
+dnl ## AC_PLATFORM()
+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(, ,
+dnl ## , ,
+dnl ## )
+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(, ,