diff options
author | 2008-10-04 11:11:39 +0000 | |
---|---|---|
committer | 2008-10-04 11:11:39 +0000 | |
commit | bf287fbd05cf99072549fab9c883710af274743e (patch) | |
tree | 6c3e17a5d6949507d6c7b9c45d0dae3d0502019d /net-nntp/pan/files | |
parent | Version bump (diff) | |
download | historical-bf287fbd05cf99072549fab9c883710af274743e.tar.gz historical-bf287fbd05cf99072549fab9c883710af274743e.tar.bz2 historical-bf287fbd05cf99072549fab9c883710af274743e.zip |
Fix deps on gmime since it is now slotted, bug #239412. remove old revisions.
Package-Manager: portage-2.2_rc11/cvs/Linux 2.6.24-gentoo-r8 i686
Diffstat (limited to 'net-nntp/pan/files')
-rw-r--r-- | net-nntp/pan/files/pan-0.14.2-update-desktop-file.patch | 29 | ||||
-rw-r--r-- | net-nntp/pan/files/pan-0.14.2.91-gcc4-2.patch | 23 |
2 files changed, 0 insertions, 52 deletions
diff --git a/net-nntp/pan/files/pan-0.14.2-update-desktop-file.patch b/net-nntp/pan/files/pan-0.14.2-update-desktop-file.patch deleted file mode 100644 index 54e99cde7116..000000000000 --- a/net-nntp/pan/files/pan-0.14.2-update-desktop-file.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- pan-0.14.2.91/Makefile.am 2005-07-03 21:11:21.000000000 +0200 -+++ pan-0.14.2.91.az/Makefile.am 2005-07-03 21:12:03.000000000 +0200 -@@ -18,7 +18,7 @@ - $(DESKTOP_FILES) \ - intltool-extract.in intltool-merge.in intltool-update.in - --Productivitydir = $(datadir)/gnome/apps/Internet -+Productivitydir = $(datadir)/applications - Productivity_DATA = $(DESKTOP_FILES) - - icon_DATA = pan.png ---- pan-0.14.2.91/Makefile.in 2005-07-03 21:11:27.000000000 +0200 -+++ pan-0.14.2.91.az/Makefile.in 2005-07-03 21:12:20.000000000 +0200 -@@ -148,7 +148,7 @@ - intltool-extract.in intltool-merge.in intltool-update.in - - --Productivitydir = $(datadir)/gnome/apps/Internet -+Productivitydir = $(datadir)/applications - Productivity_DATA = $(DESKTOP_FILES) - - icon_DATA = pan.png ---- pan-0.14.2.91/pan.desktop.in 2005-07-03 21:10:11.000000000 +0200 -+++ pan-0.14.2.91.az/pan.desktop.in 2005-07-03 21:10:28.000000000 +0200 -@@ -6,3 +6,4 @@ - Icon=pan.png - Terminal=false - Type=Application -+Categories=Application;Network; diff --git a/net-nntp/pan/files/pan-0.14.2.91-gcc4-2.patch b/net-nntp/pan/files/pan-0.14.2.91-gcc4-2.patch deleted file mode 100644 index 1edb35bfa0fd..000000000000 --- a/net-nntp/pan/files/pan-0.14.2.91-gcc4-2.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- pan-0.14.2.91/pan/base/msort.c.orig 2005-04-25 15:54:31.000000000 +0000 -+++ pan-0.14.2.91/pan/base/msort.c 2005-04-25 15:59:21.000000000 +0000 -@@ -65,14 +65,16 @@ - if ((*cmp) (b1, b2) <= 0) - { - --n1; -- *((unsigned long int *) tmp)++ = -- *((unsigned long int *) b1)++; -+ *((unsigned long int *) tmp) = *((unsigned long int *) b1); -+ tmp += sizeof(unsigned long int); -+ b1 += sizeof(unsigned long int); - } - else - { - --n2; -- *((unsigned long int *) tmp)++ = -- *((unsigned long int *) b2)++; -+ *((unsigned long int *) tmp) = *((unsigned long int *) b2); -+ tmp += sizeof(unsigned long int); -+ b2 += sizeof(unsigned long int); - } - } - else |