summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Krier <cedk@gentoo.org>2010-03-14 11:26:52 +0000
committerCédric Krier <cedk@gentoo.org>2010-03-14 11:26:52 +0000
commitae60f03ed9817760b3f185e66985c119ca092cb4 (patch)
treee3d434858a877c2d8371ec62b938597c8335dc5c /net-news/snownews/files
parentMaintenance: LICENSE, remove Email-MIME-Modifier (diff)
downloadgentoo-2-ae60f03ed9817760b3f185e66985c119ca092cb4.tar.gz
gentoo-2-ae60f03ed9817760b3f185e66985c119ca092cb4.tar.bz2
gentoo-2-ae60f03ed9817760b3f185e66985c119ca092cb4.zip
Fix unicode display for bug #309307 and remove old
(Portage version: 2.1.7.16/cvs/Linux i686)
Diffstat (limited to 'net-news/snownews/files')
-rw-r--r--net-news/snownews/files/snownews-1.5.7-manpath.patch36
-rw-r--r--net-news/snownews/files/snownews-1.5.7-stdint.patch17
2 files changed, 0 insertions, 53 deletions
diff --git a/net-news/snownews/files/snownews-1.5.7-manpath.patch b/net-news/snownews/files/snownews-1.5.7-manpath.patch
deleted file mode 100644
index b6bd7553c839..000000000000
--- a/net-news/snownews/files/snownews-1.5.7-manpath.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff -ru snownews-1.5.7~/Makefile snownews-1.5.7/Makefile
---- snownews-1.5.7~/Makefile 2007-01-23 23:49:40.000000000 +0100
-+++ snownews-1.5.7/Makefile 2007-01-23 23:49:53.000000000 +0100
-@@ -2,6 +2,7 @@
- MAKE= make
- INSTALL= install
- LOCALEPATH= $(PREFIX)/share/locale
-+MANPATH= $(PREFIX)/share
-
- ### Compiler/linker flags ###
- ### Generated via configure ###
-@@ -75,17 +76,17 @@
- done
-
- install-man: manpages
-- if [ ! -d "$(DESTDIR)$(PREFIX)/man/man1" ]; then \
-- mkdir -p $(DESTDIR)$(PREFIX)/man/man1; \
-+ if [ ! -d "$(DESTDIR)$(MANPATH)/man/man1" ]; then \
-+ mkdir -p $(DESTDIR)$(MANPATH)/man/man1; \
- fi
-- $(INSTALL) -m 0644 $(MAN)/snownews.1 $(DESTDIR)$(PREFIX)/man/man1
-- $(INSTALL) -m 0644 $(MAN)/opml2snow.1 $(DESTDIR)$(PREFIX)/man/man1
-+ $(INSTALL) -m 0644 $(MAN)/snownews.1 $(DESTDIR)$(MANPATH)/man/man1
-+ $(INSTALL) -m 0644 $(MAN)/opml2snow.1 $(DESTDIR)$(MANPATH)/man/man1
-
- for L in $(LANGS); do \
-- if [ ! -d "$(DESTDIR)$(PREFIX)/man/$$L/man1" ]; then \
-- mkdir -p $(DESTDIR)$(PREFIX)/man/$$L/man1; \
-+ if [ ! -d "$(DESTDIR)$(MANPATH)/man/$$L/man1" ]; then \
-+ mkdir -p $(DESTDIR)$(MANPATH)/man/$$L/man1; \
- fi; \
-- $(INSTALL) -m 0644 $(MAN)/$$L/snownews.1 $(DESTDIR)$(PREFIX)/man/$$L/man1; \
-+ $(INSTALL) -m 0644 $(MAN)/$$L/snownews.1 $(DESTDIR)$(MANPATH)/man/$$L/man1; \
- done
-
- ### Cleanup ###
diff --git a/net-news/snownews/files/snownews-1.5.7-stdint.patch b/net-news/snownews/files/snownews-1.5.7-stdint.patch
deleted file mode 100644
index f6c81e79925a..000000000000
--- a/net-news/snownews/files/snownews-1.5.7-stdint.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -ru snownews-1.5.7~/md5.h snownews-1.5.7/md5.h
---- snownews-1.5.7~/md5.h 2006-12-03 16:36:54.000000000 +0100
-+++ snownews-1.5.7/md5.h 2006-12-03 16:47:23.000000000 +0100
-@@ -31,11 +31,8 @@
- #ifndef MD5_H
- #define MD5_H
-
--#ifdef __alpha
--typedef unsigned int uint32;
--#else
--typedef unsigned long uint32;
--#endif
-+#include <stdint.h>
-+typedef uint32_t uint32;
-
- struct MD5Context {
- uint32 buf[4];