| 1 |
#!/bin/sh -e
|
| 2 |
## 16_debian_email.dpatch by Eduard Bloch <blade@debian.org>
|
| 3 |
##
|
| 4 |
## DP: Define our contact address for program info
|
| 5 |
|
| 6 |
if [ $# -ne 1 ]; then
|
| 7 |
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
|
| 8 |
exit 1
|
| 9 |
fi
|
| 10 |
|
| 11 |
[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts
|
| 12 |
patch_opts="${patch_opts:--f --no-backup-if-mismatch}"
|
| 13 |
|
| 14 |
case "$1" in
|
| 15 |
-patch) patch $patch_opts -p1 < $0;;
|
| 16 |
-unpatch) patch $patch_opts -p1 -R < $0;;
|
| 17 |
*)
|
| 18 |
echo >&2 "`basename $0`: script expects -patch|-unpatch as argument"
|
| 19 |
exit 1;;
|
| 20 |
esac
|
| 21 |
|
| 22 |
exit 0
|
| 23 |
|
| 24 |
@DPATCH@
|
| 25 |
diff -urNad /home/inet/debian/tmp/cdrtools-2.01/cdrecord/cdrecord.c cdrtools-2.01/cdrecord/cdrecord.c
|
| 26 |
--- /home/inet/debian/tmp/cdrtools-2.01/cdrecord/cdrecord.c 2004-01-16 23:07:01.000000000 +0100
|
| 27 |
+++ cdrtools-2.01/cdrecord/cdrecord.c 2004-01-16 23:07:02.000000000 +0100
|
| 28 |
@@ -352,7 +352,7 @@
|
| 29 |
HOST_CPU, HOST_VENDOR, HOST_OS);
|
| 30 |
|
| 31 |
#if defined(SOURCE_MODIFIED) || !defined(IS_SCHILY_XCONFIG)
|
| 32 |
-#define INSERT_YOUR_EMAIL_ADDRESS_HERE
|
| 33 |
+#define INSERT_YOUR_EMAIL_ADDRESS_HERE "cdrtools@packages.debian.org"
|
| 34 |
#define NO_SUPPORT 0
|
| 35 |
printf("NOTE: this version of cdrecord is an inofficial (modified) release of cdrecord\n");
|
| 36 |
printf(" and thus may have bugs that are not present in the original version.\n");
|
| 37 |
diff -urNad /home/inet/debian/tmp/cdrtools-2.01/conf/xconfig.h.in cdrtools-2.01/conf/xconfig.h.in
|
| 38 |
--- /home/inet/debian/tmp/cdrtools-2.01/conf/xconfig.h.in 2004-01-16 23:06:46.000000000 +0100
|
| 39 |
+++ cdrtools-2.01/conf/xconfig.h.in 2004-01-16 23:07:39.000000000 +0100
|
| 40 |
@@ -532,8 +532,9 @@
|
| 41 |
*
|
| 42 |
* This restiction is introduced because this way, I hope that people
|
| 43 |
* contribute to the project instead of creating branches.
|
| 44 |
- */
|
| 45 |
+*/
|
| 46 |
#define IS_SCHILY_XCONFIG
|
| 47 |
+#define SOURCE_MODIFIED
|
| 48 |
/*
|
| 49 |
* End restricted code for quality assurance.
|
| 50 |
*/
|