[Pkg-octave-commit] r1331 - in octave-forge-pkgs: octave-communications/trunk/debian octave-control/trunk/debian octave-econometrics/trunk/debian octave-fixed/trunk/debian octave-general/trunk/debian octave-gsl/trunk/debian octave-ident/trunk/debian octave-image/trunk/debian octave-informationtheory/trunk/debian octave-io/trunk/debian octave-irsa/trunk/debian octave-linear/trunk/debian octave-miscellaneous/trunk/debian octave-nnet/trunk/debian octave-octcdf/trunk/debian octave-odebvp/trunk/debian octave-odepkg/trunk/debian octave-optim/trunk/debian octave-outliers/trunk/debian octave-parallel/trunk/debian octave-physicalconstants/trunk/debian octave-plot/trunk/debian octave-signal/trunk/debian octave-sockets/trunk/debian octave-specfun/trunk/debian octave-special/trunk/debian octave-splines/trunk/debian octave-statistics/trunk/debian octave-strings/trunk/debian octave-struct/trunk/debian octave-time/trunk/debian octave-vrml/trunk/debian octave-zenity/trunk/debian
Ólafur Jens Sigurðsson
ojs-guest at alioth.debian.org
Sun Mar 2 23:03:51 UTC 2008
Author: ojs-guest
Date: 2008-03-02 23:03:51 +0000 (Sun, 02 Mar 2008)
New Revision: 1331
Modified:
octave-forge-pkgs/octave-communications/trunk/debian/rules
octave-forge-pkgs/octave-control/trunk/debian/rules
octave-forge-pkgs/octave-econometrics/trunk/debian/rules
octave-forge-pkgs/octave-fixed/trunk/debian/rules
octave-forge-pkgs/octave-general/trunk/debian/rules
octave-forge-pkgs/octave-gsl/trunk/debian/rules
octave-forge-pkgs/octave-ident/trunk/debian/rules
octave-forge-pkgs/octave-image/trunk/debian/rules
octave-forge-pkgs/octave-informationtheory/trunk/debian/rules
octave-forge-pkgs/octave-io/trunk/debian/rules
octave-forge-pkgs/octave-irsa/trunk/debian/rules
octave-forge-pkgs/octave-linear/trunk/debian/rules
octave-forge-pkgs/octave-miscellaneous/trunk/debian/rules
octave-forge-pkgs/octave-nnet/trunk/debian/rules
octave-forge-pkgs/octave-octcdf/trunk/debian/rules
octave-forge-pkgs/octave-odebvp/trunk/debian/rules
octave-forge-pkgs/octave-odepkg/trunk/debian/rules
octave-forge-pkgs/octave-optim/trunk/debian/rules
octave-forge-pkgs/octave-outliers/trunk/debian/rules
octave-forge-pkgs/octave-parallel/trunk/debian/rules
octave-forge-pkgs/octave-physicalconstants/trunk/debian/rules
octave-forge-pkgs/octave-plot/trunk/debian/rules
octave-forge-pkgs/octave-signal/trunk/debian/rules
octave-forge-pkgs/octave-sockets/trunk/debian/rules
octave-forge-pkgs/octave-specfun/trunk/debian/rules
octave-forge-pkgs/octave-special/trunk/debian/rules
octave-forge-pkgs/octave-splines/trunk/debian/rules
octave-forge-pkgs/octave-statistics/trunk/debian/rules
octave-forge-pkgs/octave-strings/trunk/debian/rules
octave-forge-pkgs/octave-struct/trunk/debian/rules
octave-forge-pkgs/octave-time/trunk/debian/rules
octave-forge-pkgs/octave-vrml/trunk/debian/rules
octave-forge-pkgs/octave-zenity/trunk/debian/rules
Log:
updated the rules files for the octave-forge packages
Modified: octave-forge-pkgs/octave-communications/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-communications/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-communications/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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 -nodeps $(filename)"
- rm $(CURDIR)/debian/$(package)/$(mpath)/$(pkgname)/packinfo/COPYING
-
-binary:
- dh_strip
- dh_installdocs
- dh_installchangelogs
- dh_gencontrol
- dh_compress
- dh_installdeb
- dh_builddeb
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-control/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-control/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-control/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,41 +1,4 @@
#!/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)
-path = usr/share/octave/packages
-pkgname = $(filename:.tar.gz=)
-
-clean:
-
-build:
- mkdir -p $(CURDIR)/debian/$(package)/$(path)
- octave -H -q --no-site-file --eval \
- "pkg('prefix',[pwd(),'/debian/$(package)/$(path)']); \
- pkg('local_list',[pwd(),'.']); \
- pkg('global_list',[pwd(),'.']); \
- pkg install $(filename)"
- rm $(CURDIR)/debian/$(package)/$(path)/$(pkgname)/packinfo/COPYING
-
-binary:
- dh_installdeb
- dh_installdocs
- dh_installchangelogs
- dh_gencontrol
- dh_compress
- dh_builddeb
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-econometrics/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-econometrics/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-econometrics/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-fixed/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-fixed/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-fixed/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-general/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-general/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-general/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-gsl/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-gsl/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-gsl/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-ident/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-ident/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-ident/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-image/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-image/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-image/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-informationtheory/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-informationtheory/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-informationtheory/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-io/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-io/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-io/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-irsa/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-irsa/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-irsa/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-linear/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-linear/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-linear/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-miscellaneous/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-miscellaneous/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-miscellaneous/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-nnet/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-nnet/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-nnet/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-octcdf/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-octcdf/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-octcdf/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-odebvp/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-odebvp/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-odebvp/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-odepkg/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-odepkg/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-odepkg/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-optim/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-optim/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-optim/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-outliers/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-outliers/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-outliers/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-parallel/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-parallel/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-parallel/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-physicalconstants/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-physicalconstants/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-physicalconstants/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-plot/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-plot/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-plot/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-signal/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-signal/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-signal/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-sockets/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-sockets/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-sockets/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-specfun/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-specfun/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-specfun/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-special/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-special/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-special/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-splines/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-splines/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-splines/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-statistics/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-statistics/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-statistics/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,40 +1,4 @@
#!/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)
-path = usr/share/octave/packages
-
-clean:
-
-build:
- mkdir -p $(CURDIR)/debian/$(package)/$(path)
- octave -H -q --no-site-file --eval \
- "pkg('prefix',[pwd(),'/debian/$(package)/$(path)']); \
- pkg('local_list',[pwd(),'.']); \
- pkg('global_list',[pwd(),'.']); \
- pkg install $(filename)"
- rm $(CURDIR)/debian/$(package)/$(path)/statistics-1.0.3/packinfo/COPYING
-
-binary:
- dh_installdeb
- dh_installdocs
- dh_installchangelogs
- dh_gencontrol
- dh_compress
- dh_builddeb
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-strings/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-strings/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-strings/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-struct/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-struct/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-struct/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-time/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-time/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-time/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-vrml/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-vrml/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-vrml/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,46 +1,4 @@
#!/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
- rm -r $(CURDIR)/debian/$(package)/$(mpath)/$(pkgname)/data/CVS
-
-binary:
- dh_strip
- dh_installdocs
- dh_installchangelogs
- dh_gencontrol
- dh_compress
- dh_installdeb
- dh_builddeb
+include /usr/share/octave/debian/octave-pkg-dev.mk
Modified: octave-forge-pkgs/octave-zenity/trunk/debian/rules
===================================================================
--- octave-forge-pkgs/octave-zenity/trunk/debian/rules 2008-03-02 22:26:33 UTC (rev 1330)
+++ octave-forge-pkgs/octave-zenity/trunk/debian/rules 2008-03-02 23:03:51 UTC (rev 1331)
@@ -1,45 +1,4 @@
#!/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
+include /usr/share/octave/debian/octave-pkg-dev.mk
More information about the Pkg-octave-commit
mailing list