[Commit] librr .cvsignore,NONE,1.1 AUTHORS,NONE,1.1 COPYING,NONE,1.1 ChangeLog,NONE,1.1 Makefile.am,NONE,1.1 NEWS,NONE,1.1 README,NONE,1.1 autogen.sh,NONE,1.1 configure.in,NONE,1.1 librr.pc.in,NONE,1.1

Carl Worth commit at keithp.com
Sat May 31 22:27:57 PDT 2003


Committed by: cworth

Update of /local/src/CVS/librr
In directory home.keithp.com:/tmp/cvs-serv22646

Added Files:
	.cvsignore AUTHORS COPYING ChangeLog Makefile.am NEWS README 
	autogen.sh configure.in librr.pc.in 
Log Message:
Initial commit of librr

--- NEW FILE: .cvsignore ---
aclocal.m4
config.cache
config.guess
config.h
config.h.in
config.log
config.status
config.sub
configure
ltmain.sh
INSTALL
install-sh
Makefile
Makefile.in
missing
mkinstalldirs
stamp-h
stamp-h.in





--- NEW FILE: AUTHORS ---
Carl Worth <carl at theworths.org>


--- NEW FILE: COPYING ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: ChangeLog ---

--- NEW FILE: Makefile.am ---
SUBDIRS = src

EXTRA_DIST = \
	COPYING \
	librr.pc.in

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = librr.pc



--- NEW FILE: NEWS ---

--- NEW FILE: README ---
librr - Ricochet Robot Library

A simple library intended to support Ricochet Robot games, servers,
and clients.

--- NEW FILE: autogen.sh ---
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

set -e

if test -z "$*"; then
  echo "$0:	Note: \`./configure' will be run with no arguments."
  echo "		If you wish to pass any to it, please specify them on the"
  echo "		\`$0' command line."
  echo
fi

do_cmd() {
    echo "$0: running \`$@'"
    $@
}

do_cmd libtoolize --force --copy

do_cmd aclocal

do_cmd autoheader

do_cmd automake --add-missing

do_cmd autoconf

do_cmd ./configure ${1+"$@"} && echo "Now type \`make' to compile" || exit 1

--- NEW FILE: configure.in ---
AC_INIT(src/rr.h)

dnl ===========================================================================

# Package version number, (as distinct from shared library version)
LIBRR_VERSION=0.1.0

# libtool shared library version

# Increment if the interface has additions, changes, removals.
LT_CURRENT=0

# Increment any time the source changes; set to
# 0 if you increment CURRENT
LT_REVISION=0

# Increment if any interfaces have been added; set to 0
# if any interfaces have been removed. removal has
# precedence over adding, so set to 0 if both happened.
LT_AGE=0

VERSION_INFO="$LT_CURRENT:$LT_REVISION:$LT_AGE"
AC_SUBST(VERSION_INFO)

dnl ===========================================================================

AM_INIT_AUTOMAKE(librr, $LIBRR_VERSION)
AM_CONFIG_HEADER(config.h)

AC_PROG_CC
AM_PROG_LIBTOOL
AC_STDC_HEADERS

dnl ===========================================================================

AC_OUTPUT([
librr.pc
Makefile
src/Makefile
])

--- NEW FILE: librr.pc.in ---
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@

Name: librr
Description: Ricochet Robot library
Version: @VERSION@

Requires:
Libs: -L${libdir} -lrr
Cflags: -I${includedir}





More information about the Commit mailing list