diff options
author | Jaap Keuter <jaap.keuter@xs4all.nl> | 2009-07-08 05:20:30 +0000 |
---|---|---|
committer | Jaap Keuter <jaap.keuter@xs4all.nl> | 2009-07-08 05:20:30 +0000 |
commit | c556ce7ee05d339e26b8a6632b51f678e9a2ed4f (patch) | |
tree | 094cdb09cfa1a04d63b3acdcb38e3c5ee7a0a6af | |
parent | d5289354aba4144de252609fe7822038ffc48f33 (diff) | |
download | wireshark-c556ce7ee05d339e26b8a6632b51f678e9a2ed4f.tar.gz wireshark-c556ce7ee05d339e26b8a6632b51f678e9a2ed4f.tar.bz2 wireshark-c556ce7ee05d339e26b8a6632b51f678e9a2ed4f.zip |
Add missing packaging file (according to Debian Policy Manual).
svn path=/trunk/; revision=29007
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | debian/README.source | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index ecb004d21f..d16ece6092 100644 --- a/Makefile.am +++ b/Makefile.am @@ -539,6 +539,7 @@ EXTRA_DIST = \ debian/pycompat \ debian/pyversions \ debian/rules \ + debian/README.source \ debian/tshark.files \ debian/tshark.manpages \ debian/watch \ diff --git a/debian/README.source b/debian/README.source new file mode 100644 index 0000000000..0b1ad0f1ea --- /dev/null +++ b/debian/README.source @@ -0,0 +1,34 @@ +This package uses dpatch in order to apply patches to the upstream +source. +Patches are stored in debian/patches and their filenames usually end in +.dpatch . +For further details, see the man pages for dpatch and dpatch-edit-patch. + +All commands described below should be run from the top directory of the +package source tree, unless otherwise stated. + + * To generate the fully patched source, in a form ready for + editing, that would be built to create Debian packages, run: + + dpatch apply-all + + Note: This should happen automatically when you run + dpkg-source -x on a dpatch source package. + + * To modify the source and save those modifications so that + they will be applied when building the package, pick a + suitably informative patch file name, for example + 01_add_README.source_file.dpatch, and then run: + + dpatch-edit-patch 01_add_README.source_file.dpatch + + This will place you in a new shell in a temporary copy of the + source tree. Make your desired modifications to it, and then + exit the shell to create the patch file containing them (this + file will appear in debian/patches). + + * To remove source modifications that are currently being + applied when building the package, run: + + dpatch unapply-all + |