[gle-graphics] 01/23: Import Debian changes 4.2.1-1

Christian T. Steigies cts at moszumanska.debian.org
Tue Oct 31 18:25:34 UTC 2017


This is an automated email from the git hooks/post-receive script.

cts pushed a commit to branch master
in repository gle-graphics.

commit fa4a9ba505693775c696b7a56507be01959ea628
Author: Christian T. Steigies <cts at debian.org>
Date:   Sat Sep 5 22:33:51 2009 +0200

    Import Debian changes 4.2.1-1
    
    gle-graphics (4.2.1-1) experimental; urgency=low
    
      * new upstream version
      * added automake and ghostscript to Build-Depends
    
    gle-graphics (4.2.0-1) experimental; urgency=low
    
      * new upstream version
      * rename package to gle-graphics
    
    glx (4.2.0-1) experimental; urgency=low
    
      * new upstream version
      * Updated Standards-Version to 3.8.0 (no changes)
      * do not ship LICENSE.txt, this is included in debian/copyright
      * addeded simple man and qgle manpages
      * build and ship gle-manual.pdf
    
    glx (4.1.1) experimental; urgency=low
    
      * new upstream version
    
    glx (4.1.0-rc2-1) experimental; urgency=low
    
      * new upstream version
    
    glx (4.1.0-rc1-1) experimental; urgency=low
    
      * new upstream version
    
    glx (4.0.12-1) experimental; urgency=low
    
      * new upstream version
      * switch to cdbs, build from upstream "tarball"
    
    glx (4.0.7-1) unstable; urgency=low
    
      * Initial Release.
---
 aclocal.m4        | 171 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/changelog  |  55 ++++++++++++++++++
 debian/compat     |   1 +
 debian/control    |  33 +++++++++++
 debian/copyright  |  84 +++++++++++++++++++++++++++
 debian/dirs       |   2 +
 debian/docs       |   1 +
 debian/manip.1    |  40 +++++++++++++
 debian/manip.sgml | 124 +++++++++++++++++++++++++++++++++++++++
 debian/qgle.1     |  41 +++++++++++++
 debian/qgle.sgml  | 124 +++++++++++++++++++++++++++++++++++++++
 debian/rules      |  29 +++++++++
 debian/watch      |   2 +
 13 files changed, 707 insertions(+)

diff --git a/aclocal.m4 b/aclocal.m4
new file mode 100644
index 0000000..8afa924
--- /dev/null
+++ b/aclocal.m4
@@ -0,0 +1,171 @@
+# generated automatically by aclocal 1.10.1 -*- Autoconf -*-
+
+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
+# 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
+# This file is free software; the Free Software Foundation
+# gives unlimited permission to copy and/or distribute it,
+# with or without modifications, as long as this notice is preserved.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+# PARTICULAR PURPOSE.
+
+# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
+# 
+# Copyright © 2004 Scott James Remnant <scott at netsplit.com>.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+#
+# As a special exception to the GNU General Public License, if you
+# distribute this file as part of a program that contains a
+# configuration script generated by Autoconf, you may include it under
+# the same distribution terms that you use for the rest of that program.
+
+# PKG_PROG_PKG_CONFIG([MIN-VERSION])
+# ----------------------------------
+AC_DEFUN([PKG_PROG_PKG_CONFIG],
+[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
+m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
+AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl
+if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
+	AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
+fi
+if test -n "$PKG_CONFIG"; then
+	_pkg_min_version=m4_default([$1], [0.9.0])
+	AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
+	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
+		AC_MSG_RESULT([yes])
+	else
+		AC_MSG_RESULT([no])
+		PKG_CONFIG=""
+	fi
+		
+fi[]dnl
+])# PKG_PROG_PKG_CONFIG
+
+# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
+#
+# Check to see whether a particular set of modules exists.  Similar
+# to PKG_CHECK_MODULES(), but does not set variables or print errors.
+#
+#
+# Similar to PKG_CHECK_MODULES, make sure that the first instance of
+# this or PKG_CHECK_MODULES is called, or make sure to call
+# PKG_CHECK_EXISTS manually
+# --------------------------------------------------------------
+AC_DEFUN([PKG_CHECK_EXISTS],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+if test -n "$PKG_CONFIG" && \
+    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
+  m4_ifval([$2], [$2], [:])
+m4_ifvaln([$3], [else
+  $3])dnl
+fi])
+
+
+# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
+# ---------------------------------------------
+m4_define([_PKG_CONFIG],
+[if test -n "$PKG_CONFIG"; then
+    if test -n "$$1"; then
+        pkg_cv_[]$1="$$1"
+    else
+        PKG_CHECK_EXISTS([$3],
+                         [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
+			 [pkg_failed=yes])
+    fi
+else
+	pkg_failed=untried
+fi[]dnl
+])# _PKG_CONFIG
+
+# _PKG_SHORT_ERRORS_SUPPORTED
+# -----------------------------
+AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
+if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
+        _pkg_short_errors_supported=yes
+else
+        _pkg_short_errors_supported=no
+fi[]dnl
+])# _PKG_SHORT_ERRORS_SUPPORTED
+
+
+# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
+# [ACTION-IF-NOT-FOUND])
+#
+#
+# Note that if there is a possibility the first call to
+# PKG_CHECK_MODULES might not happen, you should be sure to include an
+# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
+#
+#
+# --------------------------------------------------------------
+AC_DEFUN([PKG_CHECK_MODULES],
+[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
+AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
+AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
+
+pkg_failed=no
+AC_MSG_CHECKING([for $1])
+
+_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
+_PKG_CONFIG([$1][_LIBS], [libs], [$2])
+
+m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
+and $1[]_LIBS to avoid the need to call pkg-config.
+See the pkg-config man page for more details.])
+
+if test $pkg_failed = yes; then
+        _PKG_SHORT_ERRORS_SUPPORTED
+        if test $_pkg_short_errors_supported = yes; then
+	        $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"`
+        else 
+	        $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
+        fi
+	# Put the nasty error message in config.log where it belongs
+	echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
+
+	ifelse([$4], , [AC_MSG_ERROR(dnl
+[Package requirements ($2) were not met:
+
+$$1_PKG_ERRORS
+
+Consider adjusting the PKG_CONFIG_PATH environment variable if you
+installed software in a non-standard prefix.
+
+_PKG_TEXT
+])],
+		[AC_MSG_RESULT([no])
+                $4])
+elif test $pkg_failed = untried; then
+	ifelse([$4], , [AC_MSG_FAILURE(dnl
+[The pkg-config script could not be found or is too old.  Make sure it
+is in your PATH or set the PKG_CONFIG environment variable to the full
+path to pkg-config.
+
+_PKG_TEXT
+
+To get pkg-config, see <http://pkg-config.freedesktop.org/>.])],
+		[$4])
+else
+	$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
+	$1[]_LIBS=$pkg_cv_[]$1[]_LIBS
+        AC_MSG_RESULT([yes])
+	ifelse([$3], , :, [$3])
+fi[]dnl
+])# PKG_CHECK_MODULES
+
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..13451de
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,55 @@
+gle-graphics (4.2.1-1) experimental; urgency=low
+
+  * new upstream version
+  * added automake and ghostscript to Build-Depends
+
+ -- Christian T. Steigies <cts at debian.org>  Sat, 05 Sep 2009 22:33:51 +0200
+
+gle-graphics (4.2.0-1) experimental; urgency=low
+
+  * new upstream version
+  * rename package to gle-graphics
+
+ -- Christian T. Steigies <cts at debian.org>  Fri, 17 Apr 2009 00:36:23 +0200
+
+glx (4.2.0-1) experimental; urgency=low
+
+  * new upstream version
+  * Updated Standards-Version to 3.8.0 (no changes)
+  * do not ship LICENSE.txt, this is included in debian/copyright
+  * addeded simple man and qgle manpages
+  * build and ship gle-manual.pdf
+
+ -- Christian T. Steigies <cts at debian.org>  Mon, 13 Apr 2009 14:04:59 +0200
+
+glx (4.1.1) experimental; urgency=low
+
+  * new upstream version
+
+ -- Christian T. Steigies <cts at debian.org>  Tue, 26 Feb 2008 23:58:04 +0100
+
+glx (4.1.0-rc2-1) experimental; urgency=low
+
+  * new upstream version
+
+ -- Christian T. Steigies <cts at debian.org>  Thu, 22 Nov 2007 22:52:11 +0100
+
+glx (4.1.0-rc1-1) experimental; urgency=low
+
+  * new upstream version
+
+ -- Christian T. Steigies <cts at debian.org>  Thu,  4 Oct 2007 00:46:10 +0200
+
+glx (4.0.12-1) experimental; urgency=low
+
+  * new upstream version
+  * switch to cdbs, build from upstream "tarball"
+
+ -- Christian T. Steigies <cts at debian.org>  Wed,  3 Oct 2007 12:08:52 +0200
+
+glx (4.0.7-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Christian T. Steigies <cts at debian.org>  Sat,  8 Jan 2005 11:31:38 +0100
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..3252b9a
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,33 @@
+Source: gle-graphics
+Section: graphics
+Priority: optional
+Maintainer: Christian T. Steigies <cts at debian.org>
+Build-Depends: debhelper (>= 4.0.0), libtiff-dev, libboost-dev, cdbs, libqt4-dev, libjpeg-dev, libpng-dev, ncurses-dev, texlive, texlive-latex-extra, automake, ghostscript
+x-Build-Depends: docbook-to-man
+Standards-Version: 3.8.0
+
+Package: gle-graphics
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Recommends: libgs8
+Description: An interactive Graphics Language Editor
+ GLE  is  a  high  quality  graphics  package for scientists,
+ combining  a  user  friendly  interface with a full range of
+ facilities    for   producing  publication  quality  graphs,
+ diagrams, posters and slides.
+ .
+ GLE  provides LaTeX quality fonts together with a flexible
+ graphics  module  which  allows  the  user  to  specify  any
+ feature  of a graph (down to the line width of the subticks,
+ for example)
+ .
+ Complex  pictures can be drawn with user defined subroutines
+ and simple looping structures.
+ .
+ Current  device  drivers support DECWINDOWS, REGIS, TEK4010,
+ all  PC  graphics  cards,  VT100s,  HP-Plotters,  PostScript
+ Printers, EPSON Printers and LaserJet Printers.
+ .
+ GLE  runs  on  both  VAXes and PCs, giving an identical user
+ interface on both platforms.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..0bec7e5
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,84 @@
+This package was debianized by Christian T. Steigies <cts at debian.org> on
+Sat,  8 Jan 2005 11:31:38 +0100.
+
+It was downloaded from glx.sf.net
+
+Files: debian/*
+Copyright: (c) 2005-2009, Christian T. Steigies <cts at debian.org>
+
+Upstream Authors:
+ A. S. Budden: Programming (QGLE), Packager for Arch Linux.
+ Andrey G. Grozin: Packager for Gentoo Linux.
+ Axel Rohde: 3.3f-h versions. (These were 32 bit DOS and OS/2 ports.)
+ Bryn Jeffries: Programming (Linux).
+ Chris Pugmire: Original program creation and design.
+ Christoph Brendes: Programming.
+ David Parfitt: Documentation (GLE users guide).
+ Edd Edmondson: Packager for Mac OS/X.
+ Jan Struyf: Programming (and current 4.x series maintainer).
+ Laurence Abbott: Programming.
+ Stephen Blundell: Documentation (GLE users guide).
+ Steve Wilkinson: Programming (user interface).
+ Terje Røsten: Maintainer for Fedora Core.
+ Vincent LaBella: Resurrected 3.3h to GLE 4.0 C++ code base.
+
+Files: *
+Copyright: (c) 2004 Jan Struyf
+License: BSD
+
+Copyright (c).
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+    * Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer. 
+
+    * Redistributions in binary form must reproduce the above
+    copyright notice, this list of conditions and the following
+    disclaimer in the documentation and/or other materials provided
+    with the distribution.
+
+    * Neither the name of GLE nor the names of its contributors may
+    be used to endorse or promote products derived from this software
+    without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Files: contrib/editors/highlighting/gle-emacs.el
+Copyright: (c) 2009 Kai Nordlund
+License: GPL-2
+
+Files: src/gui/*
+Copyright: (c) 2006 A. S. Budden & J. Struyf
+License: GPL-2
+
+Files: src/gui/ellipse.cpp
+Copyright: (c) 2006 A. S. Budden, S. Wilkinson & J. Struyf
+License: GPL-2
+
+Files: src/gui/qgs.*
+Copyright: (c) 2005 Piotr Szymanski
+License: GPL-2
+
+Files: src/gui/qgslibloader.cpp
+Copyright: (c) 2006 J. Struyf
+License: GPL-2
+            
+                                                
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License version 2 can be found in
+`/usr/share/common-licenses/GPL-2' and the complete text of the BSD
+License can be found in `/usr/share/common-licenses/BSD'.
diff --git a/debian/dirs b/debian/dirs
new file mode 100644
index 0000000..612ab1d
--- /dev/null
+++ b/debian/dirs
@@ -0,0 +1,2 @@
+usr/bin
+usr/share/gle-graphics
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..71dfd5b
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.txt
diff --git a/debian/manip.1 b/debian/manip.1
new file mode 100644
index 0000000..fc7e9f6
--- /dev/null
+++ b/debian/manip.1
@@ -0,0 +1,40 @@
+.TH "GLE" "1" 
+.SH "NAME" 
+manip \(em manip 
+.SH "SYNOPSIS" 
+.PP 
+\fBmanip\fR 
+.SH "DESCRIPTION" 
+.PP 
+This manual page documents briefly the 
+\fBmanip\fR. 
+.PP 
+This manual page was written for the \fBDebian\fP distribution 
+because the original program does not have a manual page. 
+Instead, it has documentation in 
+/usr/share/gle/4.2.0/doc/gle-manual.pdf 
+ 
+ 
+.PP 
+\fBmanip\fR is a data manipulation package. 
+It reads in a text file of numbers and displays them like a spreadsheet. 
+You can then do simple operations on the columns and write 
+them out in any format you like. 
+ 
+ 
+.SH "OPTIONS" 
+.PP 
+MANIP infile.dat \-recover \-step \-commands c.log \-single \-size x y 
+.SH "AUTHOR" 
+.PP 
+This manual page was written by Christian T. Steigies cts at debian.org for 
+the \fBDebian\fP system (but may be used by others).  Permission is 
+granted to copy, distribute and/or modify this document under 
+the terms of the GNU General Public License, Version 2 any  
+later version published by the Free Software Foundation. 
+ 
+.PP 
+On Debian systems, the complete text of the GNU General Public 
+License can be found in /usr/share/common-licenses/GPL. 
+ 
+.\" created by instant / docbook-to-man, Mon 13 Apr 2009, 19:55 
diff --git a/debian/manip.sgml b/debian/manip.sgml
new file mode 100644
index 0000000..1aa500c
--- /dev/null
+++ b/debian/manip.sgml
@@ -0,0 +1,124 @@
+<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
+
+<!-- Process this file with docbook-to-man to generate an nroff manual
+     page: `docbook-to-man manpage.sgml > manpage.1'.  You may view
+     the manual page with: `docbook-to-man manpage.sgml | nroff -man |
+     less'.  A typical entry in a Makefile or Makefile.am is:
+
+manpage.1: manpage.sgml
+	docbook-to-man $< > $@
+
+    
+	The docbook-to-man binary is found in the docbook-to-man package.
+	Please remember that if you create the nroff version in one of the
+	debian/rules file targets (such as build), you will need to include
+	docbook-to-man in your Build-Depends control field.
+
+  -->
+
+  <!-- Fill in your name for FIRSTNAME and SURNAME. -->
+  <!ENTITY dhfirstname "<firstname>Christian T.</firstname>">
+  <!ENTITY dhsurname   "<surname>Steigies</surname>">
+  <!-- Please adjust the date whenever revising the manpage. -->
+  <!ENTITY dhdate      "<date>April 13, 2009</date>">
+  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
+       allowed: see man(7), man(1). -->
+  <!ENTITY dhsection   "<manvolnum>1</manvolnum>">
+  <!ENTITY dhemail     "<email>cts at debian.org</email>">
+  <!ENTITY dhusername  "Christian T. Steigies">
+  <!ENTITY dhucpackage "<refentrytitle>GLE</refentrytitle>">
+  <!ENTITY dhpackage   "manip">
+
+  <!ENTITY debian      "<productname>Debian</productname>">
+  <!ENTITY gnu         "<acronym>GNU</acronym>">
+  <!ENTITY gpl         "&gnu; <acronym>GPL</acronym>">
+]>
+
+<refentry>
+  <refentryinfo>
+    <address>
+      &dhemail;
+    </address>
+    <author>
+      &dhfirstname;
+      &dhsurname;
+    </author>
+    <copyright>
+      <year>2009</year>
+      <holder>&dhusername;</holder>
+    </copyright>
+    &dhdate;
+  </refentryinfo>
+  <refmeta>
+    &dhucpackage;
+
+    &dhsection;
+  </refmeta>
+  <refnamediv>
+    <refname>&dhpackage;</refname>
+
+    <refpurpose>manip</refpurpose>
+  </refnamediv>
+  <refsynopsisdiv>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+    </cmdsynopsis>
+  </refsynopsisdiv>
+  <refsect1>
+    <title>DESCRIPTION</title>
+
+    <para>This manual page documents briefly the
+      <command>&dhpackage;</command> command.</para>
+
+    <para>This manual page was written for the &debian; distribution
+      because the original program does not have a manual page.
+      Instead, it has documentation in the PDF format at
+      /usr/share/gle/4.2.0/doc/gle-manual.pdf
+
+    <para><command>&dhpackage;</command> is a data manipulation package.
+	It reads in a text file of numbers and displays them like a spreadsheet.
+	You can then do simple operations on the columns and write
+	them out in any format you like.
+
+  </refsect1>
+  <refsect1>
+    <title>OPTIONS</title>
+
+    <para>MANIP infile.dat -recover -step -commands c.log -single -size x y</para>
+  </refsect1>
+
+  <refsect1>
+    <title>AUTHOR</title>
+
+    <para>This manual page was written by &dhusername; &dhemail; for
+      the &debian; system (but may be used by others).  Permission is
+      granted to copy, distribute and/or modify this document under
+      the terms of the &gnu; General Public License, Version 2 any 
+	  later version published by the Free Software Foundation.
+    </para>
+	<para>
+	  On Debian systems, the complete text of the GNU General Public
+	  License can be found in /usr/share/common-licenses/GPL.
+	</para>
+
+  </refsect1>
+</refentry>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:2
+sgml-indent-data:t
+sgml-parent-document:nil
+sgml-default-dtd-file:nil
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+-->
+
+
diff --git a/debian/qgle.1 b/debian/qgle.1
new file mode 100644
index 0000000..29c99dd
--- /dev/null
+++ b/debian/qgle.1
@@ -0,0 +1,41 @@
+.TH "GLE" "1" 
+.SH "NAME" 
+qgle \(em A Graphical Interface to GLE 
+.SH "SYNOPSIS" 
+.PP 
+\fBqgle\fR 
+.SH "DESCRIPTION" 
+.PP 
+This manual page documents briefly the 
+\fBqgle\fR. 
+.PP 
+This manual page was written for the \fBDebian\fP distribution 
+because the original program does not have a manual page. 
+Instead, it has documentation built into the application. 
+ 
+ 
+.PP 
+\fBqgle\fRqgle is a graphical interface to GLE. 
+The current GUI contains a preview window that can receive messages from  
+GLE and display the resulting EPS file.  In addition, it can open GLE  
+and EPS files directly (using Ghostscript and GLE).  It now has the  
+capability to add and edit simple objects, such as, lines, circles and  
+arcs (snapping to a grid if required). It can also change various properties 
+of the objects, such as, line width, and color. The perpendicular  
+line and tangential line commands can be used to produce a line starting 
+perpendicular or tangential to an existing object.  OSnap can be used  
+for the end point of a line.  
+ 
+.SH "AUTHOR" 
+.PP 
+This manual page was written by Christian T. Steigies cts at debian.org for 
+the \fBDebian\fP system (but may be used by others).  Permission is 
+granted to copy, distribute and/or modify this document under 
+the terms of the GNU General Public License, Version 2 any  
+later version published by the Free Software Foundation. 
+ 
+.PP 
+On Debian systems, the complete text of the GNU General Public 
+License can be found in /usr/share/common-licenses/GPL. 
+ 
+.\" created by instant / docbook-to-man, Mon 13 Apr 2009, 16:16 
diff --git a/debian/qgle.sgml b/debian/qgle.sgml
new file mode 100644
index 0000000..caaeb65
--- /dev/null
+++ b/debian/qgle.sgml
@@ -0,0 +1,124 @@
+<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
+
+<!-- Process this file with docbook-to-man to generate an nroff manual
+     page: `docbook-to-man manpage.sgml > manpage.1'.  You may view
+     the manual page with: `docbook-to-man manpage.sgml | nroff -man |
+     less'.  A typical entry in a Makefile or Makefile.am is:
+
+manpage.1: manpage.sgml
+	docbook-to-man $< > $@
+
+    
+	The docbook-to-man binary is found in the docbook-to-man package.
+	Please remember that if you create the nroff version in one of the
+	debian/rules file targets (such as build), you will need to include
+	docbook-to-man in your Build-Depends control field.
+
+  -->
+
+  <!-- Fill in your name for FIRSTNAME and SURNAME. -->
+  <!ENTITY dhfirstname "<firstname>Christian T.</firstname>">
+  <!ENTITY dhsurname   "<surname>Steigies</surname>">
+  <!-- Please adjust the date whenever revising the manpage. -->
+  <!ENTITY dhdate      "<date>April 13, 2009</date>">
+  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
+       allowed: see man(7), man(1). -->
+  <!ENTITY dhsection   "<manvolnum>1</manvolnum>">
+  <!ENTITY dhemail     "<email>cts at debian.org</email>">
+  <!ENTITY dhusername  "Christian T. Steigies">
+  <!ENTITY dhucpackage "<refentrytitle>GLE</refentrytitle>">
+  <!ENTITY dhpackage   "qgle">
+
+  <!ENTITY debian      "<productname>Debian</productname>">
+  <!ENTITY gnu         "<acronym>GNU</acronym>">
+  <!ENTITY gpl         "&gnu; <acronym>GPL</acronym>">
+]>
+
+<refentry>
+  <refentryinfo>
+    <address>
+      &dhemail;
+    </address>
+    <author>
+      &dhfirstname;
+      &dhsurname;
+    </author>
+    <copyright>
+      <year>2009</year>
+      <holder>&dhusername;</holder>
+    </copyright>
+    &dhdate;
+  </refentryinfo>
+  <refmeta>
+    &dhucpackage;
+
+    &dhsection;
+  </refmeta>
+  <refnamediv>
+    <refname>&dhpackage;</refname>
+
+    <refpurpose>A Graphical Interface to GLE</refpurpose>
+  </refnamediv>
+  <refsynopsisdiv>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+    </cmdsynopsis>
+  </refsynopsisdiv>
+  <refsect1>
+    <title>DESCRIPTION</title>
+
+    <para>This manual page documents briefly the
+      <command>&dhpackage;</command> command.</para>
+
+    <para>This manual page was written for the &debian; distribution
+      because the original program does not have a manual page.
+      Instead, it has documentation in the PDF format at
+      /usr/share/gle/@GLE_VERSION@/doc/gle-manual.pdf.
+
+    <para><command>&dhpackage;</command> is a graphical interface to GLE.
+      The current GUI contains a preview window that can receive messages from 
+	GLE and display the resulting EPS file.  In addition, it can open GLE 
+	and EPS files directly (using Ghostscript and GLE).  It now has the 
+	capability to add and edit simple objects, such as, lines, circles and 
+	arcs (snapping to a grid if required). It can also change various properties
+	of the objects, such as, line width, and color. The perpendicular 
+	line and tangential line commands can be used to produce a line starting
+	perpendicular or tangential to an existing object.  OSnap can be used 
+	for the end point of a line.</para>
+
+  </refsect1>
+  <refsect1>
+    <title>AUTHOR</title>
+
+    <para>This manual page was written by &dhusername; &dhemail; for
+      the &debian; system (but may be used by others).  Permission is
+      granted to copy, distribute and/or modify this document under
+      the terms of the &gnu; General Public License, Version 2 any 
+	  later version published by the Free Software Foundation.
+    </para>
+	<para>
+	  On Debian systems, the complete text of the GNU General Public
+	  License can be found in /usr/share/common-licenses/GPL.
+	</para>
+
+  </refsect1>
+</refentry>
+
+<!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:2
+sgml-indent-data:t
+sgml-parent-document:nil
+sgml-default-dtd-file:nil
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+-->
+
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..50a1325
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,29 @@
+#!/usr/bin/make -f
+
+DEB_TAR_SRCDIR = gle4
+
+#include /usr/share/cdbs/1/rules/tarball.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+
+configure/gle-graphics::
+	aclocal && autoconf && ./configure --docdir=/usr/share/doc/gle-graphics/
+
+build/gle-graphics::
+	make doc
+
+clean::
+	-make clean
+	-rm Makefile
+	-make -C gle-refman -f Makefile.gcc clean
+	-make -C gle-refman/fonttest -f Makefile.gcc clean
+	-rm -r gle-refman/appendix/fig/.gle/
+	-rm src/font/*.fmt
+	-rm src/font/*.fve
+	-rm src/font/movefonts
+#	aclocal.m4
+
+install/gle-graphics::
+	cp debian/qgle.1 debian/gle-graphics/usr/share/man/man1/
+	cp debian/manip.1 debian/gle-graphics/usr/share/man/man1/
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..133d4d5
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/glx/(?i:gle)[_-](.+)\.(.+)\.(.+)[_-]src\.zip

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/gle-graphics.git



More information about the debian-science-commits mailing list