[Pkg-octave-commit] rev 73 - in trunk/packages: . octave-gtk octave-gtk/debian

Rafael Laboissiere rafael@costa.debian.org
Sun, 20 Feb 2005 14:40:23 +0100


Author: rafael
Date: 2005-02-20 14:40:22 +0100 (Sun, 20 Feb 2005)
New Revision: 73

Added:
   trunk/packages/octave-gtk/
   trunk/packages/octave-gtk/debian/
   trunk/packages/octave-gtk/debian/changelog
   trunk/packages/octave-gtk/debian/compat
   trunk/packages/octave-gtk/debian/control
   trunk/packages/octave-gtk/debian/copyright
   trunk/packages/octave-gtk/debian/docs
   trunk/packages/octave-gtk/debian/rules
   trunk/packages/octave-gtk/debian/watch
Log:
Initial import of octave-gtk package


Added: trunk/packages/octave-gtk/debian/changelog
===================================================================
--- trunk/packages/octave-gtk/debian/changelog	2005-02-19 17:52:12 UTC (rev 72)
+++ trunk/packages/octave-gtk/debian/changelog	2005-02-20 13:40:22 UTC (rev 73)
@@ -0,0 +1,14 @@
+octave-gtk (0.1-1) experimental; urgency=low
+
+  NOT YET RELEASED!
+  
+  +++ Changes by Rafael Laboissiere
+
+  * Initial Release.
+
+ -- 
+
+Local Variables:
+debian-changelog-full-name: "Debian Octave Group"
+debian-changelog-mailing-address: "pkg-octave-devel@lists.alioth.debian.org"
+End:

Added: trunk/packages/octave-gtk/debian/compat
===================================================================
--- trunk/packages/octave-gtk/debian/compat	2005-02-19 17:52:12 UTC (rev 72)
+++ trunk/packages/octave-gtk/debian/compat	2005-02-20 13:40:22 UTC (rev 73)
@@ -0,0 +1 @@
+4

Added: trunk/packages/octave-gtk/debian/control
===================================================================
--- trunk/packages/octave-gtk/debian/control	2005-02-19 17:52:12 UTC (rev 72)
+++ trunk/packages/octave-gtk/debian/control	2005-02-20 13:40:22 UTC (rev 73)
@@ -0,0 +1,16 @@
+Source: octave-gtk
+Section: math
+Priority: optional
+Maintainer: Debian Octave Group <pkg-octave-devel@lists.alioth.debian.org>
+Build-Depends: debhelper (>= 4.0.0), octave2.1-headers, libgtk2.0-dev
+Standards-Version: 3.6.1
+
+Package: octave-gtk
+Architecture: any
+Depends: ${shlibs:Depends}, octave (>= 2.1.64)
+Description: GTK+ binding for GNU Octave
+ Octave GTK+ is a Octave binding for GTK+, to help develop GUI
+ programs from Octave, with GTK+. It aims to aid fast creation of
+ scientific programs that need GUI's as well as number crunching
+ power.
+

Added: trunk/packages/octave-gtk/debian/copyright
===================================================================
--- trunk/packages/octave-gtk/debian/copyright	2005-02-19 17:52:12 UTC (rev 72)
+++ trunk/packages/octave-gtk/debian/copyright	2005-02-20 13:40:22 UTC (rev 73)
@@ -0,0 +1,22 @@
+This package was debianized by Rafael Laboissiere <rafael@debian.org> on
+Sat, 19 Feb 2005 16:27:15 +0100.
+
+It was downloaded from http://octave-gtk.sf.net
+
+Copyright:
+
+Upstream Authors:
+    Muthiah Annamalai <gnumuthu@users.sourceforge.net>
+    Hemant Kumar  <gnufied@users.sourceforge.net>
+    Ramasamy <infinitedescent@users.sourceforge.net>
+    R Saravana Manickam <manickam@users.sourceforge.net>
+
+License:
+
+Octave-GTK+ is released under the terms of the GNU General Public License
+as published by the Free Software Foundation, version 2 or later.
+
+On Debian GNU/Linux systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+

Added: trunk/packages/octave-gtk/debian/docs
===================================================================
--- trunk/packages/octave-gtk/debian/docs	2005-02-19 17:52:12 UTC (rev 72)
+++ trunk/packages/octave-gtk/debian/docs	2005-02-20 13:40:22 UTC (rev 73)
@@ -0,0 +1,13 @@
+BUGS
+NEWS
+README
+ABOUT
+AUTHORS
+BUGS
+DESIGN
+doc/HELP
+HACKING
+NEWS
+README
+THANKS
+

Added: trunk/packages/octave-gtk/debian/rules
===================================================================
--- trunk/packages/octave-gtk/debian/rules	2005-02-19 17:52:12 UTC (rev 72)
+++ trunk/packages/octave-gtk/debian/rules	2005-02-20 13:40:22 UTC (rev 73)
@@ -0,0 +1,59 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# debian/rules for octave-gtk
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+debdir = $(CURDIR)/debian
+pkgdir = $(debdir)/octave-gtk
+octdir = $(shell octave-config -p LOCALAPIOCTFILEDIR)/octave-gtk
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+
+	$(MAKE)
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	rm -f gtk.oct
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs $(octdir)
+
+	install --mode=755 gtk.oct $(pkgdir)/$(octdir)
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs
+	dh_installdocs
+	dh_installexamples test/product.m
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install


Property changes on: trunk/packages/octave-gtk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: trunk/packages/octave-gtk/debian/watch
===================================================================
--- trunk/packages/octave-gtk/debian/watch	2005-02-19 17:52:12 UTC (rev 72)
+++ trunk/packages/octave-gtk/debian/watch	2005-02-20 13:40:22 UTC (rev 73)
@@ -0,0 +1,6 @@
+# watch control file for octave-gtk
+
+version=2
+http://prdownloads.sf.net/octave-gtk/octave-gtk-([-0-9\.]*).tar.gz
+
+