Ver código fonte

Get rid of $Id$ keywords.

pull/1/head
Sam Hocevar sam 15 anos atrás
pai
commit
2c63c7ada7
18 arquivos alterados com 2 adições e 35 exclusões
  1. +0
    -1
      NEWS
  2. +0
    -1
      README
  3. +0
    -1
      TODO
  4. +0
    -1
      bootstrap
  5. +2
    -8
      configure.ac
  6. +0
    -1
      doc/Makefile.am
  7. +0
    -2
      src/export.c
  8. +0
    -2
      src/export.h
  9. +0
    -2
      src/figlet.c
  10. +0
    -2
      src/filter.c
  11. +0
    -2
      src/filter.h
  12. +0
    -2
      src/main.c
  13. +0
    -2
      src/render.c
  14. +0
    -2
      src/render.h
  15. +0
    -2
      src/term.c
  16. +0
    -2
      src/toilet.h
  17. +0
    -1
      test/Makefile.am
  18. +0
    -1
      tools/Makefile.am

+ 0
- 1
NEWS Ver arquivo

@@ -1,4 +1,3 @@
$Id$

New in 0.1:
- initial release


+ 0
- 1
README Ver arquivo

@@ -1,4 +1,3 @@
$Id$

This is experimental software. Do not rely on it for strong and
secure ASCII art generation, it will only output ugly things.


+ 0
- 1
TODO Ver arquivo

@@ -1,4 +1,3 @@
$Id$

FIGlet features that we are still missing:
- vertical smushing


+ 0
- 1
bootstrap Ver arquivo

@@ -1,5 +1,4 @@
#! /bin/sh
# $Id$

# bootstrap: generic bootstrap/autogen.sh script for autotools projects
#


+ 2
- 8
configure.ac Ver arquivo

@@ -1,4 +1,3 @@
# $Id$

AC_INIT(toilet, 0.1)

@@ -62,13 +61,8 @@ PKG_CHECK_MODULES(CACA, caca >= 0.99.beta17,
AC_MSG_ERROR([you need libcaca version 0.99.beta17 or later])])

AC_MSG_CHECKING([for release date])
stamp="$(sed -ne 's/# \$Id: .*\(....-..-..\).*/\1/p;q' configure.ac)"
if date +"%e %B %Y" -d "$stamp" >/dev/null 2>&1; then
ac_build_date="$(LANG=C date +"%e %B %Y" -d "$stamp" | sed 's/^ //')"
else
tmp="${stamp%-*}"
ac_build_date="${stamp##*-} ${tmp#*-} ${stamp%%-*}"
fi
tmp="${stamp%-*}"
ac_build_date="${stamp##*-} ${tmp#*-} ${stamp%%-*}"
AC_MSG_RESULT([$ac_build_date])
AC_DEFINE_UNQUOTED(DATE, "$ac_build_date", [Define the version date])



+ 0
- 1
doc/Makefile.am Ver arquivo

@@ -1,4 +1,3 @@
# $Id: Makefile.am 871 2006-09-25 15:58:33Z sam $

EXTRA_DIST = toilet.1.in
CLEANFILES = toilet.1


+ 0
- 2
src/export.c Ver arquivo

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved
*
* $Id$
*
* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/export.h Ver arquivo

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved
*
* $Id$
*
* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/figlet.c Ver arquivo

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved
*
* $Id$
*
* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/filter.c Ver arquivo

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved
*
* $Id$
*
* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/filter.h Ver arquivo

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved
*
* $Id$
*
* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/main.c Ver arquivo

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved
*
* $Id$
*
* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/render.c Ver arquivo

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved
*
* $Id$
*
* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/render.h Ver arquivo

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved
*
* $Id$
*
* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/term.c Ver arquivo

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved
*
* $Id$
*
* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 2
src/toilet.h Ver arquivo

@@ -3,8 +3,6 @@
* Copyright (c) 2006 Sam Hocevar <sam@hocevar.net>
* All Rights Reserved
*
* $Id$
*
* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want


+ 0
- 1
test/Makefile.am Ver arquivo

@@ -1,4 +1,3 @@
# $Id$

EXTRA_DIST = check-build check-fonts



+ 0
- 1
tools/Makefile.am Ver arquivo

@@ -1,4 +1,3 @@
# $Id: Makefile.am 929 2006-10-20 16:19:41Z sam $

noinst_PROGRAMS = caca2tlf



Carregando…
Cancelar
Salvar