Skip to content

Commit

Permalink
ai, typo!
Browse files Browse the repository at this point in the history
git-svn-id: https://ilk.uvt.nl/svn/sources/libticcutils/trunk@15068 12f355fe-0486-481a-ad91-c297ab22b4e3
  • Loading branch information
kosloot committed Aug 8, 2012
0 parents commit 6ce4edf
Show file tree
Hide file tree
Showing 16 changed files with 2,153 additions and 0 deletions.
12 changes: 12 additions & 0 deletions AUTHORS
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,12 @@
TiCC utils authors

Lead programmer:

Ko van der Sloot

Code, algorithm, and design contributions by:

Maarten van Gompel

Contributors:

674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

370 changes: 370 additions & 0 deletions INSTALL

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions NEWS
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1 @@
7 augustust 2012 started work
34 changes: 34 additions & 0 deletions README
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,34 @@
TiCC utils 0.1 (c) ILK/CLiPS 1998 - 2012

Tilburg centre for Cognition and Communication, Tilburg University.
Centre for Dutch Language and Speech, University of Antwerp

This module contains useful functions for genaral use in the TiCC software
stack and beyond.

TiCC utils is distributed under the GNU Public Licence (see the file COPYING).

This software has been tested on:
- Intel/AMD platforms running several versions of Linux, including Ubuntu,
Debian and Fedora.
- both 32 and 64 bits
- MAC platform running OS X 10.5

Compilers:
- GCC (4.0.0 - 4.6.0). It is highly recommended to upgrade to at least GCC 4.1

Contents of this distribution:
- Sources
- Licensing information ( COPYING )
- Installation instructions ( INSTALL )
- Build system based om Gnu Autotools
- Documentation ( in the docs directory )

Dependencies:
To be able to succesfully build libticcl from the tarball, you need the
following pakages:
- autotools
- autoconf-archive



64 changes: 64 additions & 0 deletions bootstrap
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,64 @@
# $Id$
# $URL$

# bootstrap - script to bootstrap the distribution rolling engine

# usage:
# $ sh ./bootstrap && ./configure && make dist[check]
#
# this yields a tarball which one can install doing
#
# $ tar zxf PACKAGENAME-*.tar.gz
# $ cd PACKAGENAME-*
# $ ./configure
# $ make
# # make install

# requirements:
# GNU autoconf, from e.g. ftp.gnu.org:/pub/gnu/autoconf/
# GNU automake, from e.g. http://ftp.gnu.org/gnu/automake/

automake=automake
aclocal=aclocal

# if you want to autogenerate a ChangeLog form svn:
#
# svn2cl, a python script, as used in the GNU Enterprise project.
# By jcater (Jason Cater), contributions by reinhard (Reinhard Müller).
# Get it from
# http://www.gnuenterprise.org/cgi-bin/viewcvs.cgi/*checkout*/gnue/trunk/gnue-common/utils/svn2cl .
# svn2cl is used in Makefile.am too.
#
# (Another svn2cl implementation, in perl, is at
# http://www.contactor.se/~dast/svn/archive-2002-04/0910.shtml)
#
# see also toplevel Makefile.am

# test -f ChangeLog || {
# svn log --verbose > ChangeLog
#}

if $automake --version|head -1 |grep '1\.[4-9]'; then
echo "automake 1.4-1.9 is active. You should use automake 1.10 or later"
if test -f /etc/debian_version; then
echo " sudo apt-get install automake"
echo " sudo update-alternatives --config automake"
fi
exit 1
fi

# Debian automake package installs as automake-version. Use this
# to make sure the right automake is being used.
# if not installed, use: apt-get install automake1.9

AUTOMAKE=automake ACLOCAL=aclocal autoreconf --install \
--symlink

# add --make if you want to run "make" too.

# autoreconf should run something like:
#
# aclocal-1.9 \
# && automake-1.9 --add-missing --verbose --gnu \
# && autoconf

61 changes: 61 additions & 0 deletions configure.ac
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,61 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
# $Id$
# $URL $

AC_PREREQ(2.61)
AC_INIT([ticcutils],[0.1],[timbl@uvt.nl])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([.])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADER([config.h])

if test x"${CXXFLAGS+set}" = xset; then
# the user set CXXFLAGS; don't override it.
cxx_flags_were_set=true
else
cxx_flags_were_set=false
fi
if $cxx_flags_were_set; then
CXXFLAGS=$CXXFLAGS
fi

# Checks for programs.
AC_PROG_CXX( [g++] )
AC_PROG_RANLIB
# libtool stuff
# unfortunately, a lot of old libtools hang around.
# so LT_INIT and LT_PREREQ cannot be used for now
#LT_PREREQ([2.2.0])
#LT_INIT
AC_PROG_LIBTOOL
AC_SUBST([LIBTOOL_DEPS])

# when running tests, use CXX
AC_LANG([C++])

#checks for libraries.

# Checks for header files.

# Checks for typedefs, structures, and compiler characteristics.

# Checks for library functions.

ACX_PTHREAD([],[AC_MSG_ERROR([We need pthread support!])])

if test x"$acx_pthread_ok" = xyes; then
LIBS="$PTHREAD_LIBS $LIBS" \
CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS"
fi

AC_CONFIG_FILES([
Makefile
ticcutils.pc
m4/Makefile
src/Makefile
docs/Makefile
include/Makefile
include/ticcutils/Makefile
])
AC_OUTPUT
6 changes: 6 additions & 0 deletions docs/Makefile.am
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,6 @@
# $Id: Makefile.am 8993 2011-03-21 11:19:11Z sloot $
# $URL: https://ilk.uvt.nl/svn/trunk/sources/Timbl6/docs/Makefile.am $

man1_MANS = ticcutils.1

EXTRA_DIST = ticcutils.1
6 changes: 6 additions & 0 deletions include/Makefile.am
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,6 @@
# $Id: Makefile.am 8191 2011-02-02 14:50:37Z sloot $
# $URL: https://ilk.uvt.nl/svn/trunk/sources/Timbl6/include/Makefile.am $

AUTOMAKE_OPTIONS = foreign

SUBDIRS = ticcutils
Loading

0 comments on commit 6ce4edf

Please sign in to comment.