RPM Package Manager, CVS Repository
  http://rpm5.org/cvs/
  ____________________________________________________________________________

  Server: rpm5.org                         Name:   Jeff Johnson
  Root:   /v/rpm/cvs                       Email:  j...@rpm5.org
  Module: mancoosi                         Date:   17-Mar-2011 22:06:56
  Branch: HEAD                             Handle: 2011031721065500

  Added files:
    mancoosi/framework      .cvsignore Makefile.am autogen.sh configure.ac

  Log:
    - stub-in the AutoFu.

  Summary:
    Revision    Changes     Path
    1.1         +53 -0      mancoosi/framework/.cvsignore
    1.1         +8  -0      mancoosi/framework/Makefile.am
    1.1         +75 -0      mancoosi/framework/autogen.sh
    1.1         +57 -0      mancoosi/framework/configure.ac
  ____________________________________________________________________________

  patch -p0 <<'@@ .'
  Index: mancoosi/framework/.cvsignore
  ============================================================================
  $ cvs diff -u -r0 -r1.1 .cvsignore
  --- /dev/null 2011-03-17 22:06:55.000000000 +0100
  +++ .cvsignore        2011-03-17 22:06:55.794868630 +0100
  @@ -0,0 +1,53 @@
  +.ccache
  +.deps
  +.depend
  +.libs
  +ABOUT-NLS
  +ChangeLog
  +Doxyfile
  +Makefile
  +Makefile.in
  +aclocal.m4
  +autom4te*
  +build
  +build-aux
  +build-aux
  +clang
  +config.cache
  +config.guess
  +config.h
  +config.h.in
  +config.log
  +config.rpath
  +config.status
  +config.sub
  +configure
  +doxygen
  +depcomp
  +install-sh
  +intl
  +lconv
  +libtool
  +ltconfig
  +ltmain.sh
  +m4
  +missing
  +mkinstalldirs
  +popt.spec
  +stamp-h
  +stamp-h1
  +stamp-h.in
  +tdict
  +test-poptrc
  +test1
  +test2
  +test3
  +test?-test?.o
  +*.gcda
  +*.gcno
  +*.la
  +*.lcd
  +*.lo
  +*.swp
  +.git
  +.gitignore
  @@ .
  patch -p0 <<'@@ .'
  Index: mancoosi/framework/Makefile.am
  ============================================================================
  $ cvs diff -u -r0 -r1.1 Makefile.am
  --- /dev/null 2011-03-17 22:06:55.000000000 +0100
  +++ Makefile.am       2011-03-17 22:06:55.964871457 +0100
  @@ -0,0 +1,8 @@
  +# Makefile for popt library.
  +
  +ACLOCAL_AMFLAGS = -I m4
  +AM_CPPFLAGS = -I. -I$(top_srcdir)
  +
  +EXTRA_DIST =
  +
  +SUBDIRS =
  @@ .
  patch -p0 <<'@@ .'
  Index: mancoosi/framework/autogen.sh
  ============================================================================
  $ cvs diff -u -r0 -r1.1 autogen.sh
  --- /dev/null 2011-03-17 22:06:55.000000000 +0100
  +++ autogen.sh        2011-03-17 22:06:56.034874757 +0100
  @@ -0,0 +1,75 @@
  +#!/bin/sh
  +# autogen.sh: autogen.sh script (adapted from POPT)
  +# Copyright (c) 2010-2011 Elia Pinto <devzero2...@rpm5.org>
  +#
  +
  +
  +# Guess whether we are using configure.ac or configure.in
  +if test -f configure.ac; then
  +  conffile="configure.ac"
  +elif test -f configure.in; then
  +  conffile="configure.in"
  +else
  +  echo "$0: could not find configure.ac or configure.in"
  +  exit 1
  +fi
  +
  +# Version Used for building
  +# 
  +
  +# Check for automake
  +am_version=`${AUTOMAKE:-automake} --version 2>/dev/null|sed -e 
's/^[^0-9]*//;s/[a-z]* *$//;s/[- ].*//g;q'`
  +if test -z "$am_version"; then
  + echo "$0: automake not found."
  + echo "You need automake version 1.11 or newer installed"
  + exit 1
  +fi
  +IFS=_; set $am_version; IFS=' '
  +am_version=$1
  +IFS=.; set $am_version; IFS=' '
  +# automake 1.11 or newer
  +if test "$1" = "1" -a "$2" -lt "11"; then
  +  echo "$0: automake version $am_version found."
  +  echo "You need automake version 1.11 or newer installed"
  +  exit 1
  +fi
  +
  +# Check for autoconf
  +ac_version=`${AUTOCONF:-autoconf} --version 2>/dev/null|sed -e 
's/^[^0-9]*//;s/[a-z]* *$//;s/[- ].*//g;q'`
  +if test -z "$ac_version"; then
  + echo "$0: autoconf not found."
  + echo "You need autoconf version 2.63 or newer installed"
  + exit 1
  +fi
  +IFS=_; set $ac_version; IFS=' '
  +ac_version=$1
  +IFS=.; set $ac_version; IFS=' '
  +# autoconf 2.63 or newer 
  +if test "$1" = "2" -a "$2" -lt "63" || test "$1" -lt "2"; then
  + echo "$0: autoconf version $ac_version found."
  + echo "You need autoconf version 2.63 or newer installed"
  + exit 1
  +fi
  +
  +# Libtool
  +libtoolize=`which glibtoolize 2>/dev/null`
  +case $libtoolize in
  +             /*) ;;
  +             *)  libtoolize=`which libtoolize 2>/dev/null`
  +     case $libtoolize in
  +     /*) ;;
  +     *)  libtoolize=libtoolize
  +     esac
  +esac
  +if test -z "$libtoolize"; then
  +             echo "$0: libtool not found."
  +fi
  +
  +find . -name "autom4te.cache" | xargs rm -rf 
  +[ ! -d m4 ]        && mkdir m4
  +[ ! -d build-aux ] && mkdir build-aux
  +##autoreconf -vfi
  +##po_dir=./po
  +##LANG=C
  +##ls "$po_dir"/*.po 2>/dev/null |
  +##              sed 's|.*/||; s|\.po$||' > "$po_dir/LINGUAS"
  @@ .
  patch -p0 <<'@@ .'
  Index: mancoosi/framework/configure.ac
  ============================================================================
  $ cvs diff -u -r0 -r1.1 configure.ac
  --- /dev/null 2011-03-17 22:06:55.000000000 +0100
  +++ configure.ac      2011-03-17 22:06:56.094882016 +0100
  @@ -0,0 +1,57 @@
  +#                                               -*- Autoconf -*-
  +# Process this file with autoconf to produce a configure script.
  +
  +AC_PREREQ(2.63)
  +AC_INIT([framework],[0.1.DEVEL],[rpm-de...@rpm5.org])
  +
  +AC_CONFIG_SRCDIR([rpm4_test.py])
  +AC_CONFIG_HEADERS([config.h])
  +AC_CONFIG_MACRO_DIR([m4])
  +
  +# Must come before AM_INIT_AUTOMAKE.
  +AC_CONFIG_AUX_DIR([build-aux])
  +AC_CANONICAL_HOST
  +AM_INIT_AUTOMAKE([1.11 color-tests -Wall -Werror foreign])
  +#
  +# Checks for programs.
  +# Set common system defines for POSIX extensions, such as GNU_SOURCE
  +# Must be called before any macros that run the compiler (like 
AC-PROG-LIBTOOL)
  +AC_USE_SYSTEM_EXTENSIONS
  +dnl AM_GNU_GETTEXT_VERSION([0.17])
  +dnl AM_GNU_GETTEXT([external])
  +dnl AM_ICONV
  +AM_MAINTAINER_MODE
  +
  +# Libtool library interface versions 
  +# Library code modified:                              REVISION++
  +# Interfaces changed/added/removed:   CURRENT++       REVISION=0
  +# Interfaces added:                             AGE++
  +# Interfaces removed:                           AGE=0
  +AC_SUBST(LT_CURRENT, 0)
  +AC_SUBST(LT_REVISION, 0)
  +AC_SUBST(LT_AGE, 8)
  +
  +AC_PROG_CC
  +AC_PROG_CC_STDC
  +AC_SYS_LARGEFILE
  +AC_PROG_MAKE_SET
  +AC_PROG_INSTALL
  +AC_PROG_LIBTOOL
  +
  +# Checks for libraries.
  +
  +# Checks for header files.
  +
  +# Checks for typedefs, structures, and compiler characteristics.
  +AC_C_INLINE
  +AC_TYPE_OFF_T
  +AC_TYPE_SIZE_T
  +AC_TYPE_SSIZE_T
  +AC_TYPE_UID_T
  +AC_TYPE_UINT16_T
  +AC_TYPE_UINT32_T
  +AC_TYPE_UINT8_T
  +AC_TYPE_INT64_T
  +
  +AC_CONFIG_FILES([ Makefile ])
  +AC_OUTPUT
  @@ .
______________________________________________________________________
RPM Package Manager                                    http://rpm5.org
CVS Sources Repository                                rpm-cvs@rpm5.org

Reply via email to