summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2011-09-03 04:10:53 +0400
committerIgor Pashev <pashev.igor@gmail.com>2011-09-03 04:10:53 +0400
commit1f15f52a934e35b61a5bc1402370192fa3f8a5c5 (patch)
tree82b25679e6da63bae916308eac091bc9c7936b5b
parentf598952d4ae3798511c910597b2ce2de59668406 (diff)
downloadopen-axiom-debian-1f15f52a934e35b61a5bc1402370192fa3f8a5c5.tar.gz
Added a patch to use system xpm.h header; Remove directory contrib and file src/include/xpm.h from orig source tarball
-rw-r--r--debian/changelog4
-rw-r--r--debian/copyright5
-rw-r--r--debian/patches/series1
-rwxr-xr-xdebian/rules6
4 files changed, 11 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog
index 7eadc4d..b5074c5 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
-open-axiom (1.4.1+svn~2299-1) unstable; urgency=low
+open-axiom (1.4.1+svn~2299+ds-1) unstable; urgency=low
* Initial release. Closes: #639185
- -- Igor Pashev <pashev.igor@gmail.com> Mon, 29 Aug 2011 00:56:39 +0400
+ -- Igor Pashev <pashev.igor@gmail.com> Sat, 03 Sep 2011 03:19:50 +0400
diff --git a/debian/copyright b/debian/copyright
index 4ec295c..e32ff0a 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,5 +1,5 @@
This package was debianized by Igor Pashev <pashev.igor@gmail.com>
-on Sun, 12 Jun 2011 21:14:00 +0400.
+on Sat, 03 Sep 2011 03:19:50 +0400.
It was downloaded from (SVN) https://open-axiom.svn.sf.net/svnroot/open-axiom
@@ -8,7 +8,7 @@ Upstream Authors: Gabriel Dos Reis <gdr@cs.tamu.edu>, et.al.
Files: debian/*
-Copyright: WTFPL-2
+License: WTFPL-2
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
@@ -26,6 +26,7 @@ Copyright: WTFPL-2
+
OpenAxiom is derived from AXIOM, which was released as open source
under the BSD-style license. All changes to OpenAxiom have been
released open source under the BSD-style license reproduced below.
diff --git a/debian/patches/series b/debian/patches/series
index b38a365..ec5bee6 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1,4 @@
install-dir.patch
no-missing-messages.patch
non-static-open-axiom-binary.patch
+use-system-xpm.h.patch
diff --git a/debian/rules b/debian/rules
index 26b0d3e..222bd32 100755
--- a/debian/rules
+++ b/debian/rules
@@ -11,7 +11,11 @@ get-orig-source:
mkdir get-orig-source
svn export -r $(SVN_REVISION) $(SVN_REPO) \
get-orig-source/$(PACKAGE)-$(SRC_VERSION).orig
- GZIP='--best --no-name' tar czf $(TARBALL) -C get-orig-source $(PACKAGE)-$(SRC_VERSION).orig
+ GZIP='--best --no-name' \
+ tar czf $(TARBALL) -C get-orig-source \
+ --exclude contrib \
+ --exclude src/include/xpm.h \
+ $(PACKAGE)-$(SRC_VERSION).orig
rm -rf get-orig-source
echo " "$(TARBALL)" created; move it to the right destination to build the package"