1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
Description: Add gifsponge docs
Author: David Suárez <david.sephirot@gmail.com>
Origin: vendor
Bug: https://sourceforge.net/p/giflib/bugs/155/
Last-Update: 2020-12-20
--- a/Makefile
+++ b/Makefile
@@ -71,6 +71,7 @@
doc/giffix.1 \
doc/gifinto.1 \
doc/giflib.1 \
+ doc/gifsponge.1 \
doc/giftext.1 \
doc/giftool.1
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -26,6 +26,7 @@
giffix.xml \
gifinto.xml \
giflib.xml \
+ gifsponge.xml \
giftext.xml \
giftool.xml
XMLINTERNAL = \
--- /dev/null
+++ b/doc/gifsponge.xml
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!DOCTYPE refentry PUBLIC
+ "-//OASIS//DTD DocBook XML V4.1.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
+<!ENTITY email "david.sephirot@gmail.com">
+]>
+<refentry id='gifsponge.1'>
+<refentryinfo><date>20 Dec 2020</date></refentryinfo>
+<refmeta>
+<refentrytitle>gifsponge</refentrytitle>
+<manvolnum>1</manvolnum>
+<refmiscinfo class="source">GIFLIB</refmiscinfo>
+<refmiscinfo class="manual">GIFLIB Documentation</refmiscinfo>
+</refmeta>
+<refnamediv id='name'>
+<refname>gifsponge</refname>
+<refpurpose>expensive GIF copy, a model for slurp utilities</refpurpose>
+</refnamediv>
+
+<refsynopsisdiv id='synopsis'>
+
+<cmdsynopsis>
+ <command>gifsponge</command>
+</cmdsynopsis>
+</refsynopsisdiv>
+
+<refsect1><title>Description</title>
+
+<para>Slurp a GIF into core, operate on it, spew it out again.
+This is an expensive way to copy a GIF. The source is included
+as a skeleton for more sophisticated slurp utilities. See the source in the
+util directory for details.</para>
+
+</refsect1>
+<refsect1><title>Author</title>
+
+<para>David Suárez <email>&email;</email></para>
+
+</refsect1>
+</refentry>
|