[Pkg-jed-commit] r641 - in slxfig/trunk/debian: . patches
Rafael Laboissiere
rafael at alioth.debian.org
Mon Apr 30 16:10:18 UTC 2007
Author: rafael
Date: 2007-04-30 16:10:17 +0000 (Mon, 30 Apr 2007)
New Revision: 641
Added:
slxfig/trunk/debian/changelog
slxfig/trunk/debian/compat
slxfig/trunk/debian/control
slxfig/trunk/debian/copyright
slxfig/trunk/debian/examples
slxfig/trunk/debian/install
slxfig/trunk/debian/patches/
slxfig/trunk/debian/patches/01_clean-examples-dir.patch
slxfig/trunk/debian/patches/02_no-maplib-example.patch
slxfig/trunk/debian/patches/03_no-rpath.patch
slxfig/trunk/debian/rules
Log:
Initial commit of Debian files
Added: slxfig/trunk/debian/changelog
===================================================================
--- slxfig/trunk/debian/changelog 2007-04-30 12:25:58 UTC (rev 640)
+++ slxfig/trunk/debian/changelog 2007-04-30 16:10:17 UTC (rev 641)
@@ -0,0 +1,6 @@
+slxfig (0~svn.30-1) UNRELEASED; urgency=low
+
+ * Initial release
+
+ --
+
Added: slxfig/trunk/debian/compat
===================================================================
--- slxfig/trunk/debian/compat 2007-04-30 12:25:58 UTC (rev 640)
+++ slxfig/trunk/debian/compat 2007-04-30 16:10:17 UTC (rev 641)
@@ -0,0 +1 @@
+5
Added: slxfig/trunk/debian/control
===================================================================
--- slxfig/trunk/debian/control 2007-04-30 12:25:58 UTC (rev 640)
+++ slxfig/trunk/debian/control 2007-04-30 16:10:17 UTC (rev 641)
@@ -0,0 +1,22 @@
+Source: slxfig
+Section: science
+Priority: extra
+Maintainer: Debian JED Group <pkg-jed-sl-modules at lists.alioth.debian.org>
+Uploaders: Rafael Laboissiere <rafael at debian.org>
+Build-Depends: debhelper (>= 5), cdbs, slang-gsl, slang-histogram,
+ transfig, texlive-latex-base, texlive-base-bin, autotools-dev
+Standards-Version: 3.7.2
+XS-Vcs-Svn: svn://svn.debian.org/svn/pkg-jed/slxfig/
+XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-jed/slxfig/
+
+Package: slang-xfig
+Architecture: any
+Depends: ${shlibs:Depends}, transfig
+Recommends: texlive-latex-base, texlive-base-bin
+Description: produce plots and drawing through Xfig's fig2dev in S-Lang
+ SLxfig is a S-Lang module that produces plots, drawings, etc in a
+ variety of formats (.ps, .eps, .png, .jpeg, etc). It accomplishes this
+ via S-Lang scripts that automatically run Xfig's fig2dev and LaTeX to
+ produce the desired output format.
+ .
+ Homepage: http://www.jedsoft.org/fun/slxfig/
Added: slxfig/trunk/debian/copyright
===================================================================
--- slxfig/trunk/debian/copyright 2007-04-30 12:25:58 UTC (rev 640)
+++ slxfig/trunk/debian/copyright 2007-04-30 16:10:17 UTC (rev 641)
@@ -0,0 +1,30 @@
+This package was debianized by Rafael Laboissiere <rafael at debian.org> on
+Mon, 30 Apr 2007 12:27:49 +0200.
+
+It was downloaded from http://opensvn.csie.org/jedsoft/slxfig/trunk/
+
+Upstream Author: John E. Davis <davis at space.mit.edu>
+
+Copyright (c) 2004-2006 John E. Davis
+
+License:
+
+ 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., 51 Franklin St, Fifth Floor, Boston,
+ MA 02110-1301, USA.
+
+
+The Debian packaging is (C) 2007, Rafael Laboissiere <rafael at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
Added: slxfig/trunk/debian/examples
===================================================================
--- slxfig/trunk/debian/examples 2007-04-30 12:25:58 UTC (rev 640)
+++ slxfig/trunk/debian/examples 2007-04-30 16:10:17 UTC (rev 641)
@@ -0,0 +1 @@
+examples/*
Added: slxfig/trunk/debian/install
===================================================================
--- slxfig/trunk/debian/install 2007-04-30 12:25:58 UTC (rev 640)
+++ slxfig/trunk/debian/install 2007-04-30 16:10:17 UTC (rev 641)
@@ -0,0 +1 @@
+doc/help usr/share/slsh/local-packages
Added: slxfig/trunk/debian/patches/01_clean-examples-dir.patch
===================================================================
--- slxfig/trunk/debian/patches/01_clean-examples-dir.patch 2007-04-30 12:25:58 UTC (rev 640)
+++ slxfig/trunk/debian/patches/01_clean-examples-dir.patch 2007-04-30 16:10:17 UTC (rev 641)
@@ -0,0 +1,21 @@
+diff -Nur slxfig-0~svn.30/autoconf/Makefile.in slxfig-0~svn.30.new/autoconf/Makefile.in
+--- slxfig-0~svn.30/autoconf/Makefile.in 2006-06-21 18:45:41.000000000 +0200
++++ slxfig-0~svn.30.new/autoconf/Makefile.in 2007-04-30 14:08:33.000000000 +0200
+@@ -7,6 +7,7 @@
+ cd src; $(MAKE) all
+ clean:
+ cd src; $(MAKE) clean
++ cd examples/plot; $(MAKE) clean
+ /bin/rm -f *~ \#*
+ distclean: clean
+ cd src; $(MAKE) distclean
+diff -Nur slxfig-0~svn.30/examples/plot/Makefile slxfig-0~svn.30.new/examples/plot/Makefile
+--- slxfig-0~svn.30/examples/plot/Makefile 2006-06-21 18:45:41.000000000 +0200
++++ slxfig-0~svn.30.new/examples/plot/Makefile 2007-04-30 13:43:01.000000000 +0200
+@@ -9,5 +9,5 @@
+ clean:
+ /bin/rm -f $(PNG_FILES) *.fig *~
+ /bin/rm -rf slxfigtmp
+-
++ /bin/rm -rf tmp_* autoeps
+
Added: slxfig/trunk/debian/patches/02_no-maplib-example.patch
===================================================================
--- slxfig/trunk/debian/patches/02_no-maplib-example.patch 2007-04-30 12:25:58 UTC (rev 640)
+++ slxfig/trunk/debian/patches/02_no-maplib-example.patch 2007-04-30 16:10:17 UTC (rev 641)
@@ -0,0 +1,12 @@
+diff -Nur slxfig-0~svn.30/examples/plot/Makefile slxfig-0~svn.30.new/examples/plot/Makefile
+--- slxfig-0~svn.30/examples/plot/Makefile 2007-04-30 14:44:42.000000000 +0200
++++ slxfig-0~svn.30.new/examples/plot/Makefile 2007-04-30 14:45:13.000000000 +0200
+@@ -1,7 +1,7 @@
+ # -*- sh -*-
+
+ SL_FILES = simple.sl subplot.sl color.sl histplt.sl image.sl errbar.sl
+-PNG_FILES = simple.png subplot.png color.png histplt.png image.png errbar.png
++PNG_FILES = simple.png subplot.png color.png histplt.png errbar.png
+
+ png: $(PNG_FILES)
+ %.png: %.sl
Added: slxfig/trunk/debian/patches/03_no-rpath.patch
===================================================================
--- slxfig/trunk/debian/patches/03_no-rpath.patch 2007-04-30 12:25:58 UTC (rev 640)
+++ slxfig/trunk/debian/patches/03_no-rpath.patch 2007-04-30 16:10:17 UTC (rev 641)
@@ -0,0 +1,12 @@
+diff -Nur slxfig-0~svn.30/autoconf/Makefile.in slxfig-0~svn.30.new/autoconf/Makefile.in
+--- slxfig-0~svn.30/autoconf/Makefile.in 2007-04-30 18:05:31.000000000 +0200
++++ slxfig-0~svn.30.new/autoconf/Makefile.in 2007-04-30 18:05:46.000000000 +0200
+@@ -4,7 +4,7 @@
+ SHELL = /bin/sh
+
+ all:
+- cd src; $(MAKE) all
++ cd src; $(MAKE) RPATH= all
+ clean:
+ cd src; $(MAKE) clean
+ cd examples/plot; $(MAKE) clean
Added: slxfig/trunk/debian/rules
===================================================================
--- slxfig/trunk/debian/rules 2007-04-30 12:25:58 UTC (rev 640)
+++ slxfig/trunk/debian/rules 2007-04-30 16:10:17 UTC (rev 641)
@@ -0,0 +1,20 @@
+#!/usr/bin/make -f
+
+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
+
+upstreamsvn = http://opensvn.csie.org/jedsoft/slxfig/trunk/
+
+get-orig-source:
+ SVNREV=$$(svn info $(upstreamsvn) | grep Rev: | cut -f4 -d\ ) ; \
+ svn exporcot -r$$SVNREV $(upstreamsvn) slxfig-0~svn.$$SVNREV ; \
+ tar czf slxfig_0~svn.$$SVNREV.orig.tar.gz slxfig-0~svn.$$SVNREV
+
+build/slang-xfig::
+ # Run examples
+ (cd examples/plot ; SLSH_PATH=/usr/share/slsh:../../src make)
+
+clean::
+ (cd examples/plot ; $(MAKE) clean ; rm -rf tmp_* autoeps)
+ rm -rf config.log
Property changes on: slxfig/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
More information about the Pkg-jed-commit
mailing list