summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2012-05-06 15:16:07 +0000
committerLars Wendler <polynomial-c@gentoo.org>2012-05-06 15:16:07 +0000
commit5cb7b89f4d7b93b803018b1fda3a233aa75aca37 (patch)
treed6062273b552b96f0a33305a626af52d2b6cd7cb /app-text/dos2unix/files
parentppc64 stable wrt #369573 (diff)
downloadgentoo-2-5cb7b89f4d7b93b803018b1fda3a233aa75aca37.tar.gz
gentoo-2-5cb7b89f4d7b93b803018b1fda3a233aa75aca37.tar.bz2
gentoo-2-5cb7b89f4d7b93b803018b1fda3a233aa75aca37.zip
Version bump. Removed old
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'app-text/dos2unix/files')
-rw-r--r--app-text/dos2unix/files/dos2unix-5.3.2-fix_debug_build.patch54
1 files changed, 0 insertions, 54 deletions
diff --git a/app-text/dos2unix/files/dos2unix-5.3.2-fix_debug_build.patch b/app-text/dos2unix/files/dos2unix-5.3.2-fix_debug_build.patch
deleted file mode 100644
index 123bfcc62c2e..000000000000
--- a/app-text/dos2unix/files/dos2unix-5.3.2-fix_debug_build.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-Index: Makefile
-===================================================================
---- Makefile (revision 349)
-+++ Makefile (working copy)
-@@ -204,9 +204,14 @@
-
- EXTRA_CFLAGS = -DVER_REVISION=\"$(DOS2UNIX_VERSION)\" \
- -DVER_DATE=\"$(DOS2UNIX_DATE)\" \
-+ -DVER_AUTHOR=\"$(DOS2UNIX_AUTHOR)\" \
- -DDEBUG=$(DEBUG) \
- $(CFLAGS_OS)
-
-+ifeq ($(DEBUG), 1)
-+ EXTRA_CFLAGS += -g
-+endif
-+
- ifdef STATIC
- EXTRA_CFLAGS += -static
- endif
-Index: dos2unix.c
-===================================================================
---- dos2unix.c (revision 347)
-+++ dos2unix.c (working copy)
-@@ -60,8 +60,6 @@
- */
-
-
--#define VER_AUTHOR "Erwin Waterlander"
--
- /* #define DEBUG 1 */
-
- #include "common.h"
-Index: unix2dos.c
-===================================================================
---- unix2dos.c (revision 347)
-+++ unix2dos.c (working copy)
-@@ -50,8 +50,6 @@
- */
-
-
--#define VER_AUTHOR "Erwin Waterlander"
--
- /* #define DEBUG 1 */
-
- #include "common.h"
-Index: version.mk
-===================================================================
---- version.mk (revision 347)
-+++ version.mk (working copy)
-@@ -1,3 +1,4 @@
- DOS2UNIX_VERSION = 5.3.2
- DOS2UNIX_VERSION_SHORT = 532
- DOS2UNIX_DATE = 2012-01-27
-+DOS2UNIX_AUTHOR = 'Erwin Waterlander'