[Pkg-octave-commit] r1196 - in octave-forge-pkgs: octave-gsl/trunk/debian octave-ident/trunk/debian octave-image/trunk/debian

Ólafur Jens Sigurðsson ojs-guest at alioth.debian.org
Sat Feb 9 15:46:03 UTC 2008


Author: ojs-guest
Date: 2008-02-09 15:46:03 +0000 (Sat, 09 Feb 2008)
New Revision: 1196

Added:
   octave-forge-pkgs/octave-gsl/trunk/debian/changelog
   octave-forge-pkgs/octave-gsl/trunk/debian/compat
   octave-forge-pkgs/octave-gsl/trunk/debian/control
   octave-forge-pkgs/octave-gsl/trunk/debian/copyright
   octave-forge-pkgs/octave-gsl/trunk/debian/postinst
   octave-forge-pkgs/octave-gsl/trunk/debian/postrm
   octave-forge-pkgs/octave-gsl/trunk/debian/rules
   octave-forge-pkgs/octave-ident/trunk/debian/changelog
   octave-forge-pkgs/octave-ident/trunk/debian/compat
   octave-forge-pkgs/octave-ident/trunk/debian/control
   octave-forge-pkgs/octave-ident/trunk/debian/copyright
   octave-forge-pkgs/octave-ident/trunk/debian/postinst
   octave-forge-pkgs/octave-ident/trunk/debian/postrm
   octave-forge-pkgs/octave-ident/trunk/debian/rules
   octave-forge-pkgs/octave-image/trunk/debian/changelog
   octave-forge-pkgs/octave-image/trunk/debian/compat
   octave-forge-pkgs/octave-image/trunk/debian/control
   octave-forge-pkgs/octave-image/trunk/debian/copyright
   octave-forge-pkgs/octave-image/trunk/debian/postinst
   octave-forge-pkgs/octave-image/trunk/debian/postrm
   octave-forge-pkgs/octave-image/trunk/debian/rules
Log:
upload ident, gsl and image from octave-forge

Added: octave-forge-pkgs/octave-gsl/trunk/debian/changelog
===================================================================
--- octave-forge-pkgs/octave-gsl/trunk/debian/changelog	                        (rev 0)
+++ octave-forge-pkgs/octave-gsl/trunk/debian/changelog	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,6 @@
+octave-gsl (1.0.2) UNRELEASED; urgency=low
+
+  * Initial release
+
+ -- Olafur Jens Sigurdsson <ojsbug at gmail.com>  Sat, 09 Feb 2008 13:05:04 +0100
+

Added: octave-forge-pkgs/octave-gsl/trunk/debian/compat
===================================================================
--- octave-forge-pkgs/octave-gsl/trunk/debian/compat	                        (rev 0)
+++ octave-forge-pkgs/octave-gsl/trunk/debian/compat	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1 @@
+5

Added: octave-forge-pkgs/octave-gsl/trunk/debian/control
===================================================================
--- octave-forge-pkgs/octave-gsl/trunk/debian/control	                        (rev 0)
+++ octave-forge-pkgs/octave-gsl/trunk/debian/control	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,12 @@
+Source: octave-gsl
+Section: math
+Priority: optional
+Maintainer: Olafur Jens Sigurðsson <ojsbug at gmail.com>
+Build-Depends: debhelper (>= 5), octave2.9 (>= 2.9.16), make, libgsl0-dev
+Standards-Version: 3.7.2
+
+Package: octave-gsl
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, octave2.9 (>= 2.9.16), libgsl0ldbl
+Description: The gsl package from octave-forge
+ This package provides bindings to the GNU Scientific Library for Octave
\ No newline at end of file

Added: octave-forge-pkgs/octave-gsl/trunk/debian/copyright
===================================================================
--- octave-forge-pkgs/octave-gsl/trunk/debian/copyright	                        (rev 0)
+++ octave-forge-pkgs/octave-gsl/trunk/debian/copyright	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,28 @@
+This package was debianized by Olafur Jens Sigurdsson <ojsbug at gmail.com> on
+Sat, 09 Feb 2008 13:05:04 +0100
+
+It was downloaded from http://octave.sf.net
+
+Upstream Author: 
+
+	 Teemu Ikonen <tpikonen at pcu.helsinki.fi>
+
+Copyright: 
+
+    Copyright (C) 2007 Teemu Ikonen <tpikonen at pcu.helsinki.fi>
+
+License: GPL-2+
+ This package 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.
+    
+On Debian systems, the complete text of the GNU General Public License
+can be found in file "/usr/share/common-licenses/GPL".
+
+
+The Debian packaging is (C) 2007, Olafur Jens Sigurdsson <ojsbug at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.

Added: octave-forge-pkgs/octave-gsl/trunk/debian/postinst
===================================================================
--- octave-forge-pkgs/octave-gsl/trunk/debian/postinst	                        (rev 0)
+++ octave-forge-pkgs/octave-gsl/trunk/debian/postinst	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postinst file for the Debian/GNU Linux octave-forge-statistics package
+# Copyright 2007 by Ólafur Jens Sigurðsson <ojsbug at gmail.com>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    configure)
+    	octave -q -H --no-site-file --eval "pkg('rebuild');"
+        ;;
+    abort-upgrade|abort-remove|abort-deconfigure)
+        ;;
+    *)
+        echo "postinst called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+

Added: octave-forge-pkgs/octave-gsl/trunk/debian/postrm
===================================================================
--- octave-forge-pkgs/octave-gsl/trunk/debian/postrm	                        (rev 0)
+++ octave-forge-pkgs/octave-gsl/trunk/debian/postrm	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postrm file for the Debian/GNU Linux octave-forge-statistics package
+# Copyright 2007 by Ólafur Jens Sigurðsson <ojsbug at gmail.com>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    upgrade|remove|purge)
+        octave -q -H --no-site-file --eval "pkg('rebuild');"
+        ;;
+    failed-upgrade|abort-install|abort-upgrade|disappear)
+        ;;
+    *)
+        echo "postrm called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+

Added: octave-forge-pkgs/octave-gsl/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-gsl/trunk/debian/rules	                        (rev 0)
+++ octave-forge-pkgs/octave-gsl/trunk/debian/rules	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,45 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+#
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+#
+# Modified to make a template file for a multi-binary package with separated
+# build-arch and build-indep targets  by Bill Allombert 2001
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This has to be exported to make some magic below work.
+#export DH_OPTIONS
+
+filename = $(wildcard *.gz)
+package = $(shell awk '/^Package:/ {print tolower($$2)}' debian/control)
+mpath = usr/share/octave/packages
+bpath = usr/lib/octave/packages
+pkgname = $(filename:.tar.gz=)
+
+clean:
+
+build:
+	mkdir -p $(CURDIR)/debian/$(package)/$(mpath)
+	mkdir -p $(CURDIR)/debian/$(package)/$(bpath)
+	octave -H -q --no-site-file --eval \
+	"pkg('prefix',[pwd(),'/debian/$(package)/$(mpath)'], \
+	 [pwd(),'/debian/$(package)/$(bpath)']); \
+	 pkg('local_list',[pwd(),'.']); \
+	 pkg('global_list',[pwd(),'.']); \
+	 pkg install $(filename)"
+	rm $(CURDIR)/debian/$(package)/$(mpath)/$(pkgname)/packinfo/COPYING
+
+binary:
+	dh_strip
+	dh_installdocs
+	dh_installchangelogs
+	dh_gencontrol
+	dh_compress
+	dh_installdeb
+	dh_builddeb


Property changes on: octave-forge-pkgs/octave-gsl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: octave-forge-pkgs/octave-ident/trunk/debian/changelog
===================================================================
--- octave-forge-pkgs/octave-ident/trunk/debian/changelog	                        (rev 0)
+++ octave-forge-pkgs/octave-ident/trunk/debian/changelog	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,6 @@
+octave-ident (1.0.2) UNRELEASED; urgency=low
+
+  * Initial release
+
+ -- Olafur Jens Sigurdsson <ojsbug at gmail.com>  Sat, 09 Feb 2008 13:23:04 +0100
+

Added: octave-forge-pkgs/octave-ident/trunk/debian/compat
===================================================================
--- octave-forge-pkgs/octave-ident/trunk/debian/compat	                        (rev 0)
+++ octave-forge-pkgs/octave-ident/trunk/debian/compat	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1 @@
+5

Added: octave-forge-pkgs/octave-ident/trunk/debian/control
===================================================================
--- octave-forge-pkgs/octave-ident/trunk/debian/control	                        (rev 0)
+++ octave-forge-pkgs/octave-ident/trunk/debian/control	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,13 @@
+Source: octave-ident
+Section: math
+Priority: optional
+Maintainer: Olafur Jens Sigurðsson <ojsbug at gmail.com>
+Build-Depends: debhelper (>= 5), octave2.9 (>= 2.9.16), make
+Standards-Version: 3.7.2
+
+Package: octave-ident
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, octave2.9 (>= 2.9.16)
+Description: The ident package from octave-forge
+ This package provides functions to do additional system
+ identification under octave
\ No newline at end of file

Added: octave-forge-pkgs/octave-ident/trunk/debian/copyright
===================================================================
--- octave-forge-pkgs/octave-ident/trunk/debian/copyright	                        (rev 0)
+++ octave-forge-pkgs/octave-ident/trunk/debian/copyright	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,28 @@
+This package was debianized by Olafur Jens Sigurdsson <ojsbug at gmail.com> on
+Sat, 09 Feb 2008 13:23:04 +0100
+
+It was downloaded from http://octave.sf.net
+
+Upstream Author: 
+
+	 Paul Kienzle <pkienzle at users.sf.net>
+
+Copyright: 
+
+    Copyright (C) 2007 Paul Kienzle <pkienzle at users.sf.net>
+
+License: GPL-2+
+ This package 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.
+    
+On Debian systems, the complete text of the GNU General Public License
+can be found in file "/usr/share/common-licenses/GPL".
+
+
+The Debian packaging is (C) 2007, Olafur Jens Sigurdsson <ojsbug at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.

Added: octave-forge-pkgs/octave-ident/trunk/debian/postinst
===================================================================
--- octave-forge-pkgs/octave-ident/trunk/debian/postinst	                        (rev 0)
+++ octave-forge-pkgs/octave-ident/trunk/debian/postinst	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postinst file for the Debian/GNU Linux octave-forge-statistics package
+# Copyright 2007 by Ólafur Jens Sigurðsson <ojsbug at gmail.com>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    configure)
+    	octave -q -H --no-site-file --eval "pkg('rebuild');"
+        ;;
+    abort-upgrade|abort-remove|abort-deconfigure)
+        ;;
+    *)
+        echo "postinst called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+

Added: octave-forge-pkgs/octave-ident/trunk/debian/postrm
===================================================================
--- octave-forge-pkgs/octave-ident/trunk/debian/postrm	                        (rev 0)
+++ octave-forge-pkgs/octave-ident/trunk/debian/postrm	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postrm file for the Debian/GNU Linux octave-forge-statistics package
+# Copyright 2007 by Ólafur Jens Sigurðsson <ojsbug at gmail.com>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    upgrade|remove|purge)
+        octave -q -H --no-site-file --eval "pkg('rebuild');"
+        ;;
+    failed-upgrade|abort-install|abort-upgrade|disappear)
+        ;;
+    *)
+        echo "postrm called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+

Added: octave-forge-pkgs/octave-ident/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-ident/trunk/debian/rules	                        (rev 0)
+++ octave-forge-pkgs/octave-ident/trunk/debian/rules	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,45 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+#
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+#
+# Modified to make a template file for a multi-binary package with separated
+# build-arch and build-indep targets  by Bill Allombert 2001
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This has to be exported to make some magic below work.
+#export DH_OPTIONS
+
+filename = $(wildcard *.gz)
+package = $(shell awk '/^Package:/ {print tolower($$2)}' debian/control)
+mpath = usr/share/octave/packages
+bpath = usr/lib/octave/packages
+pkgname = $(filename:.tar.gz=)
+
+clean:
+
+build:
+	mkdir -p $(CURDIR)/debian/$(package)/$(mpath)
+	mkdir -p $(CURDIR)/debian/$(package)/$(bpath)
+	octave -H -q --no-site-file --eval \
+	"pkg('prefix',[pwd(),'/debian/$(package)/$(mpath)'], \
+	 [pwd(),'/debian/$(package)/$(bpath)']); \
+	 pkg('local_list',[pwd(),'.']); \
+	 pkg('global_list',[pwd(),'.']); \
+	 pkg install $(filename)"
+	rm $(CURDIR)/debian/$(package)/$(mpath)/$(pkgname)/packinfo/COPYING
+
+binary:
+	dh_strip
+	dh_installdocs
+	dh_installchangelogs
+	dh_gencontrol
+	dh_compress
+	dh_installdeb
+	dh_builddeb


Property changes on: octave-forge-pkgs/octave-ident/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: octave-forge-pkgs/octave-image/trunk/debian/changelog
===================================================================
--- octave-forge-pkgs/octave-image/trunk/debian/changelog	                        (rev 0)
+++ octave-forge-pkgs/octave-image/trunk/debian/changelog	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,6 @@
+octave-image (1.0.2) UNRELEASED; urgency=low
+
+  * Initial release
+
+ -- Olafur Jens Sigurdsson <ojsbug at gmail.com>  Sat, 09 Feb 2008 14:02:44 +0100
+

Added: octave-forge-pkgs/octave-image/trunk/debian/compat
===================================================================
--- octave-forge-pkgs/octave-image/trunk/debian/compat	                        (rev 0)
+++ octave-forge-pkgs/octave-image/trunk/debian/compat	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1 @@
+5

Added: octave-forge-pkgs/octave-image/trunk/debian/control
===================================================================
--- octave-forge-pkgs/octave-image/trunk/debian/control	                        (rev 0)
+++ octave-forge-pkgs/octave-image/trunk/debian/control	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,17 @@
+Source: octave-image
+Section: math
+Priority: optional
+Maintainer: Olafur Jens Sigurðsson <ojsbug at gmail.com>
+Build-Depends: debhelper (>= 5), octave2.9 (>= 2.9.16), make, libpng12-dev, libjpeg62-dev
+Standards-Version: 3.7.2
+
+Package: octave-image
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, octave2.9 (>= 2.9.16), libpng12-0, libjpeg62
+Description: The image package from octave-forge
+ This package provides functions for
+ reading, writing, and processing images. The package supports
+ almost all image formats through the use of ImageMagick.
+ The package also provides functions for feature extraction, image
+ statistics, spatial and geometric transformations, morphological
+ operations, linear filtering, and much more.      
\ No newline at end of file

Added: octave-forge-pkgs/octave-image/trunk/debian/copyright
===================================================================
--- octave-forge-pkgs/octave-image/trunk/debian/copyright	                        (rev 0)
+++ octave-forge-pkgs/octave-image/trunk/debian/copyright	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,56 @@
+This package was debianized by Olafur Jens Sigurdsson <ojsbug at gmail.com> on
+Sat, 09 Feb 2008 14:02:44 +0100
+
+It was downloaded from http://octave.sf.net
+
+Upstream Authors:
+
+	 Josep Mones i Teixidor <jmones at puntbarra.com>
+	 Pedro Felzenszwalb <pff at cs.uchicago.edu>
+	 Søren Hauber <hauberg at gmail dot com>
+	 Andy Adler
+	 Jeffrey E. Boyd
+	 Teemu Ikonen <tpikonen at pcu.helsinki.fi>
+	 Jeff Orchard <jorchard at cs.uwaterloo.ca>
+	 Justus H. Piater <Justus.Piater at ULg.ac.be>
+	 Paul Kienzle <pkienzle at users.sf.net>
+	 Christian Kotz
+	 Stefan van der Walt <stefan at sun.ac.za>
+	 Nadav Rotem <nadav256 at hotmail.com>
+	 Etienne Grossmann <etienne at cs.uky.edu>
+	 Kai Habel <kai.habel at gmx.de>
+	 Barre-Piquot
+
+Copyright: 
+
+    Copyright (C) 2004 Josep Mones i Teixidor
+    Copyright (C) 2006 Pedro Felzenszwalb
+    Copyright (C) 1999 Andy Adler
+    Copyright (C) 2002 Jeffrey E. Boyd
+    Copyright (C) 2000 Teemu Ikonen
+    Copyright (C) 2006 Christian Kotz
+    Copyright (C) 2004 Stefan van der Walt
+    Copyright (C) 2003 Nadav Rotem
+    Copyright (C) 2007 Soren Hauberg
+    Copyright (C) 2005 Barre-Piquot
+    Copyright (C) 2002 Jeff Orchard
+    Copyright (C) 2004-2005 Justus H. Piater
+    Copyright (C) 2004 Stefan van der Walt
+    Copyright (C) 2000, 2001 Kai Habel
+    Copyright (C) 2002 Etienne Grossmann
+
+License: GPL-2+
+ This package 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.
+    
+On Debian systems, the complete text of the GNU General Public License
+can be found in file "/usr/share/common-licenses/GPL".
+
+
+The Debian packaging is (C) 2007, Olafur Jens Sigurdsson <ojsbug at gmail.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.

Added: octave-forge-pkgs/octave-image/trunk/debian/postinst
===================================================================
--- octave-forge-pkgs/octave-image/trunk/debian/postinst	                        (rev 0)
+++ octave-forge-pkgs/octave-image/trunk/debian/postinst	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postinst file for the Debian/GNU Linux octave-forge-statistics package
+# Copyright 2007 by Ólafur Jens Sigurðsson <ojsbug at gmail.com>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    configure)
+    	octave -q -H --no-site-file --eval "pkg('rebuild');"
+        ;;
+    abort-upgrade|abort-remove|abort-deconfigure)
+        ;;
+    *)
+        echo "postinst called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+

Added: octave-forge-pkgs/octave-image/trunk/debian/postrm
===================================================================
--- octave-forge-pkgs/octave-image/trunk/debian/postrm	                        (rev 0)
+++ octave-forge-pkgs/octave-image/trunk/debian/postrm	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,23 @@
+#!/bin/sh
+# 							-*- makefile -*-
+# debian/postrm file for the Debian/GNU Linux octave-forge-statistics package
+# Copyright 2007 by Ólafur Jens Sigurðsson <ojsbug at gmail.com>
+
+set -e
+
+#DEBHELPER#
+
+case "$1" in
+    upgrade|remove|purge)
+        octave -q -H --no-site-file --eval "pkg('rebuild');"
+        ;;
+    failed-upgrade|abort-install|abort-upgrade|disappear)
+        ;;
+    *)
+        echo "postrm called with unknown argument \`$1'" >&2
+        ;;
+esac
+
+
+exit 0
+

Added: octave-forge-pkgs/octave-image/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-image/trunk/debian/rules	                        (rev 0)
+++ octave-forge-pkgs/octave-image/trunk/debian/rules	2008-02-09 15:46:03 UTC (rev 1196)
@@ -0,0 +1,45 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+#
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+#
+# Modified to make a template file for a multi-binary package with separated
+# build-arch and build-indep targets  by Bill Allombert 2001
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This has to be exported to make some magic below work.
+#export DH_OPTIONS
+
+filename = $(wildcard *.gz)
+package = $(shell awk '/^Package:/ {print tolower($$2)}' debian/control)
+mpath = usr/share/octave/packages
+bpath = usr/lib/octave/packages
+pkgname = $(filename:.tar.gz=)
+
+clean:
+
+build:
+	mkdir -p $(CURDIR)/debian/$(package)/$(mpath)
+	mkdir -p $(CURDIR)/debian/$(package)/$(bpath)
+	octave -H -q --no-site-file --eval \
+	"pkg('prefix',[pwd(),'/debian/$(package)/$(mpath)'], \
+	 [pwd(),'/debian/$(package)/$(bpath)']); \
+	 pkg('local_list',[pwd(),'.']); \
+	 pkg('global_list',[pwd(),'.']); \
+	 pkg install $(filename)"
+	rm $(CURDIR)/debian/$(package)/$(mpath)/$(pkgname)/packinfo/COPYING
+
+binary:
+	dh_strip
+	dh_installdocs
+	dh_installchangelogs
+	dh_gencontrol
+	dh_compress
+	dh_installdeb
+	dh_builddeb


Property changes on: octave-forge-pkgs/octave-image/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *




More information about the Pkg-octave-commit mailing list