Changeset 340
- Timestamp:
- Jan 12, 2004, 4:28:27 PM (19 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 8 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/NEWS
r334 r340 7 7 * support for more keycodes in the ncurses and slang drivers 8 8 * cacaplas, a plasma animation example 9 * cacamoir, a moiré circles animation example 9 10 10 11 Changes between 0.6 and 0.7: -
libcaca/trunk/debian/control
r323 r340 35 35 cacaball is a tiny graphic program that renders animated ASCII metaballs on 36 36 the screen, cacafire is a port of AALib's aafire and displays burning ASCII 37 art flames, and cacademo is a simple application that shows the libcaca 38 rendering features such as line and ellipses drawing, triangle filling and 39 sprite blitting. 37 art flames, cacamoir animates colourful moire circles and cacaplas displays 38 an old school plasma effect. 39 . 40 cacademo is a simple application that shows the libcaca rendering features 41 such as line and ellipses drawing, triangle filling and sprite blitting. -
libcaca/trunk/debian/rules
r323 r340 47 47 mv debian/libcaca-dev/usr/bin/cacaview debian/caca-utils/usr/bin 48 48 mv debian/libcaca-dev/usr/bin/cacafire debian/caca-utils/usr/bin 49 mv debian/libcaca-dev/usr/bin/cacamoir debian/caca-utils/usr/bin 50 mv debian/libcaca-dev/usr/bin/cacaplas debian/caca-utils/usr/bin 49 51 50 52 mv debian/libcaca-dev/usr/share/libcaca debian/caca-utils/usr/share … … 54 56 debian/caca-utils/usr/share/man/man1/ 55 57 mv debian/libcaca-dev/usr/share/man/man1/cacafire.1 \ 58 debian/caca-utils/usr/share/man/man1/ 59 mv debian/libcaca-dev/usr/share/man/man1/cacamoir.1 \ 60 debian/caca-utils/usr/share/man/man1/ 61 mv debian/libcaca-dev/usr/share/man/man1/cacaplas.1 \ 56 62 debian/caca-utils/usr/share/man/man1/ 57 63 mv debian/libcaca-dev/usr/share/man/man1/cacaview.1 \ -
libcaca/trunk/doc/Makefile.am
r323 r340 46 46 cp man/man3/*.3caca $(DESTDIR)$(mandir)/man3 47 47 $(mkinstalldirs) $(DESTDIR)$(mandir)/man1 48 rm -f $(DESTDIR)$(mandir)/man1/cacaball.1 49 ln -s cacademo.1 $(DESTDIR)$(mandir)/man1/cacaball.1 48 50 rm -f $(DESTDIR)$(mandir)/man1/cacafire.1 49 51 ln -s cacademo.1 $(DESTDIR)$(mandir)/man1/cacafire.1 50 rm -f $(DESTDIR)$(mandir)/man1/cacaball.1 51 ln -s cacademo.1 $(DESTDIR)$(mandir)/man1/cacaball.1 52 rm -f $(DESTDIR)$(mandir)/man1/cacamoir.1 53 ln -s cacademo.1 $(DESTDIR)$(mandir)/man1/cacamoir.1 54 rm -f $(DESTDIR)$(mandir)/man1/cacaplas.1 55 ln -s cacademo.1 $(DESTDIR)$(mandir)/man1/cacaplas.1 52 56 endif 53 57 -
libcaca/trunk/doc/cacademo.1
r322 r340 1 1 .TH libcaca 1 "2004-1-6" "libcaca" 2 2 .SH NAME 3 cacademo, cacafire, cacaball \- libcaca's demonstration applications 3 cacademo, cacaball, cacafire, cacamoir, cacaplas \- libcaca's demonstration 4 applications 4 5 .SH SYNOPSIS 5 6 cacademo 6 7 .PP 8 cacaball 9 .PP 7 10 cacafire 8 11 .PP 9 cacaball 12 cacamoir 13 .PP 14 cacaplas 10 15 .RI 11 16 .SH DESCRIPTION 12 This manual page documents briefly the cacademo, caca fire and cacaball13 programs.17 This manual page documents briefly the cacademo, cacaball, cacafire, cacamoir 18 and cacaplas programs. 14 19 .PP 15 20 .B cacademo … … 18 23 exit a particular demo, press any key. 19 24 .PP 25 .B cacaball 26 displays ASCII art metaballs. 27 .PP 20 28 .B cacafire 21 29 displays burning ASCII art flames. 22 30 .PP 23 .B cacaball 24 displays ASCII art metaballs. 31 .B cacamoir 32 displays a coloured ASCII art moire pattern of concentric circles. 33 .PP 34 .B cacaplas 35 displays an old school ASCII art plasma effect. 25 36 .SH BUGS 26 37 Please report any bugs you find to <libcaca@lists.zoy.org>. 27 38 .SH LICENSE 28 cacademo, caca fire and cacaball are covered by the GNU Lesser General29 Public License (LGPL).39 cacademo, cacaball, cacafire, cacamoir and cacaplas are covered by the GNU 40 Lesser General Public License (LGPL). 30 41 .SH AUTHORS 31 .B cacademo 42 .B cacademo, cacamoir 32 43 and this manual page were written by Sam Hocevar <sam@zoy.org>. 33 44 .PP 45 .B cacaball 46 was written by Jean-Yves Lamoureux <jylam@lnxscene.org>, 34 47 .B cacafire 35 48 is a port of AAlib's 36 49 .B aafire 37 written by Jan Hubicka <hubicka@freesoft.cz> .38 . PP39 .B cacaball 40 was written by Jean-Yves Lamoureux <jylam@lnxscene.org>.50 written by Jan Hubicka <hubicka@freesoft.cz> and 51 .B cacaplas 52 is a port of an SDL plasma effect written and put in the public domain by 53 Michele Bini <mibin@tin.it>. 41 54 .SH SEE ALSO 42 55 cacaview(1), aafire(1) -
libcaca/trunk/examples
- Property svn:ignore
-
old new 13 13 cacafire 14 14 cacafire.exe 15 caca circ16 caca circ.exe15 cacamoir 16 cacamoir.exe 17 17 cacaplas 18 18 cacaplas.exe
-
- Property svn:ignore
-
libcaca/trunk/examples/Makefile.am
r339 r340 7 7 EXTRA_DIST = caca.txt 8 8 9 bin_PROGRAMS = cacademo cacafire cacaball cacaplas cacaview caca circ9 bin_PROGRAMS = cacademo cacafire cacaball cacaplas cacaview cacamoir 10 10 11 11 cacademo_SOURCES = demo.c … … 25 25 cacaplas_CPPFLAGS = -I$(top_srcdir)/src 26 26 27 caca circ_SOURCES = cacacirc.c28 caca circ_LDADD = ../src/libcaca.a @CACA_LIBS@ @MATH_LIBS@29 caca circ_CPPFLAGS = -I$(top_srcdir)/src27 cacamoir_SOURCES = cacamoir.c 28 cacamoir_LDADD = ../src/libcaca.a @CACA_LIBS@ @MATH_LIBS@ 29 cacamoir_CPPFLAGS = -I$(top_srcdir)/src 30 30 31 31 cacaview_SOURCES = cacaview.c -
libcaca/trunk/examples/cacamoir.c
r339 r340 1 1 /* 2 * caca circ circleeffect for libcaca2 * cacamoir moiré circles effect for libcaca 3 3 * Copyright (c) 2004 Sam Hocevar <sam@zoy.org> 4 4 * All Rights Reserved -
libcaca/trunk/libcaca.spec
r328 r340 50 50 cacaball is a tiny graphic program that renders animated ASCII metaballs on 51 51 the screen, cacafire is a port of AALib's aafire and displays burning ASCII 52 art flames, and cacademo is a simple application that shows the libcaca 53 rendering features such as line and ellipses drawing, triangle filling and 54 sprite blitting. 52 art flames, cacamoir animates colourful moire circles and cacaplas displays 53 an old school plasma effect. 54 55 cacademo is a simple application that shows the libcaca rendering features 56 such as line and ellipses drawing, triangle filling and sprite blitting. 55 57 56 58 %prep … … 96 98 %{_prefix}/bin/cacademo 97 99 %{_prefix}/bin/cacafire 100 %{_prefix}/bin/cacamoir 101 %{_prefix}/bin/cacaplas 98 102 %{_prefix}/bin/cacaview 99 103 %{_prefix}/share/doc/caca-utils-%{version}/* … … 102 106 %{_prefix}/share/man/man1/cacademo.1* 103 107 %{_prefix}/share/man/man1/cacafire.1* 108 %{_prefix}/share/man/man1/cacamoir.1* 109 %{_prefix}/share/man/man1/cacaplas.1* 104 110 %{_prefix}/share/man/man1/cacaview.1* 105 111
Note: See TracChangeset
for help on using the changeset viewer.