summaryrefslogtreecommitdiff
path: root/news
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2003-11-02 23:26:04 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2003-11-02 23:26:04 +0000
commit94a4fa1d20f299ed36fd3804d3415554702f080a (patch)
tree8086cfe303aae24989fdbe1c9496eeccb2295a6c /news
parentUpdate ARCH logic and change BROKEN to IGNORE for cases where the (diff)
Remove pan, as the new stable release has been rolled into pan2.
Notes
Notes: svn path=/head/; revision=92887
Diffstat (limited to 'news')
-rw-r--r--news/Makefile1
-rw-r--r--news/pan/Makefile32
-rw-r--r--news/pan/distinfo1
-rw-r--r--news/pan/files/patch-gmime_gmime-charset.c30
-rw-r--r--news/pan/files/patch-pan::filters::filter-phrase.h14
-rw-r--r--news/pan/files/patch-po::Makefile.in.in15
-rw-r--r--news/pan/pkg-descr6
-rw-r--r--news/pan/pkg-plist34
8 files changed, 0 insertions, 133 deletions
diff --git a/news/Makefile b/news/Makefile
index bb9f0b288cd9..06dc58dfca93 100644
--- a/news/Makefile
+++ b/news/Makefile
@@ -55,7 +55,6 @@
SUBDIR += p5-NNTPClient
SUBDIR += p5-News-Article
SUBDIR += p5-News-Newsrc
- SUBDIR += pan
SUBDIR += pan2
SUBDIR += papercut
SUBDIR += pgpmoose
diff --git a/news/pan/Makefile b/news/pan/Makefile
deleted file mode 100644
index 071284ce772a..000000000000
--- a/news/pan/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-# New ports collection makefile for: pan
-# Date created: 07 August 1999
-# Whom: Chris D. Faulhaber <jedgar@fxp.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= pan
-PORTVERSION= 0.11.4
-PORTREVISION= 1
-CATEGORIES= news gnome
-MASTER_SITES= http://pan.rebelbase.com/download/releases/${PORTVERSION}/SOURCE/ \
- http://pan.rebelbase.com/download/obsolete/${PORTVERSION}/SOURCE/ \
- ${MASTER_SITE_GNOME}
-
-MASTER_SITE_SUBDIR= sources/pan/0.11
-DIST_SUBDIR= gnome
-
-MAINTAINER= gnome@FreeBSD.org
-COMMENT= Threaded GNOME newsreader based on Agent for Windows
-
-USE_BZIP2= yes
-USE_X_PREFIX= yes
-USE_GMAKE= yes
-USE_GNOME= gnomeprefix gnomehack gnomelibs gdkpixbuf
-USE_LIBTOOL= yes
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
- LIBS="-L${LOCALBASE}/lib -lgnuregex -lcompat"
-CONFIGURE_ARGS= --enable-html
-CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}
-
-.include <bsd.port.mk>
diff --git a/news/pan/distinfo b/news/pan/distinfo
deleted file mode 100644
index 8b0502ba478f..000000000000
--- a/news/pan/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (gnome/pan-0.11.4.tar.bz2) = 22993c47af617086b34211f707a84ace
diff --git a/news/pan/files/patch-gmime_gmime-charset.c b/news/pan/files/patch-gmime_gmime-charset.c
deleted file mode 100644
index b5e338155795..000000000000
--- a/news/pan/files/patch-gmime_gmime-charset.c
+++ /dev/null
@@ -1,30 +0,0 @@
---- gmime/gmime-charset.c.orig Tue Dec 18 15:09:40 2001
-+++ gmime/gmime-charset.c Mon Sep 16 22:48:48 2002
-@@ -69,15 +69,23 @@
- * codeset is a character set or encoding identifier like
- * ISO-8859-1 or UTF-8.
- */
-- char *codeset, *p;
-+ char *codeset, *tmp = NULL;
-
- codeset = strchr (locale, '.');
- if (codeset) {
- codeset++;
-
-- /* ; is a hack for debian systems and / is a hack for Solaris systems */
-- for (p = codeset; *p && !strchr ("@;/", *p); p++);
-- locale_charset = g_strndup (codeset, (unsigned) (p - codeset));
-+ if (strncasecmp(codeset, "iso", 3) == 0 &&
-+ strlen(codeset) > 3 &&
-+ strncasecmp(codeset, "iso-", 4) != 0) {
-+ tmp = (char *)g_malloc(strlen(codeset) + 2);
-+ strcpy(tmp, "iso");
-+ strcat(tmp, "-");
-+ strcat(tmp, (codeset + 3));
-+ codeset = tmp;
-+ }
-+ locale_charset = g_strndup (codeset, strcspn(codeset, "@;/"));
-+ if (tmp != NULL) g_free(tmp);
- g_strdown (locale_charset);
- } else {
- /* charset unknown */
diff --git a/news/pan/files/patch-pan::filters::filter-phrase.h b/news/pan/files/patch-pan::filters::filter-phrase.h
deleted file mode 100644
index ae0696e5d845..000000000000
--- a/news/pan/files/patch-pan::filters::filter-phrase.h
+++ /dev/null
@@ -1,14 +0,0 @@
-
-$FreeBSD$
-
---- pan/filters/filter-phrase.h.orig Thu Oct 25 18:49:53 2001
-+++ pan/filters/filter-phrase.h Tue Nov 13 12:33:06 2001
-@@ -25,7 +25,7 @@
- #define __FILTER_PHRASE_H__
-
- #include <sys/types.h>
--#include <regex.h>
-+#include <gnuregex.h>
-
- #include <pan/filters/filter.h>
-
diff --git a/news/pan/files/patch-po::Makefile.in.in b/news/pan/files/patch-po::Makefile.in.in
deleted file mode 100644
index c5ef826d4b70..000000000000
--- a/news/pan/files/patch-po::Makefile.in.in
+++ /dev/null
@@ -1,15 +0,0 @@
-
-$FreeBSD$
-
---- po/Makefile.in.in 2002/07/17 16:16:17 1.1
-+++ po/Makefile.in.in 2002/07/17 16:18:01
-@@ -60,6 +60,9 @@
- .SUFFIXES:
- .SUFFIXES: .c .o .po .pox .gmo .mo .msg .cat
-
-+zh_CN.mo: zh_CN.po
-+ OLD_PO_FILE_INPUT=1 msgfmt -o $@ $<
-+
- .c.o:
- $(COMPILE) $<
-
diff --git a/news/pan/pkg-descr b/news/pan/pkg-descr
deleted file mode 100644
index a76eee5407e6..000000000000
--- a/news/pan/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-A powerful and easy to use newsreader for GNOME.
-
-Pan has many features for easy reading and posting, displaying
-and saving attachments, and offline newsreading.
-
-WWW: http://pan.rebelbase.com/
diff --git a/news/pan/pkg-plist b/news/pan/pkg-plist
deleted file mode 100644
index 1bf8f30ab653..000000000000
--- a/news/pan/pkg-plist
+++ /dev/null
@@ -1,34 +0,0 @@
-bin/pan
-share/gnome/apps/Internet/pan.desktop
-share/gnome/pixmaps/pan.png
-share/gnome/pixmaps/pan_druid.xpm
-share/locale/ca/LC_MESSAGES/pan.mo
-share/locale/da/LC_MESSAGES/pan.mo
-share/locale/de/LC_MESSAGES/pan.mo
-share/locale/el/LC_MESSAGES/pan.mo
-share/locale/en_GB/LC_MESSAGES/pan.mo
-share/locale/es/LC_MESSAGES/pan.mo
-share/locale/et/LC_MESSAGES/pan.mo
-share/locale/fi/LC_MESSAGES/pan.mo
-share/locale/fr/LC_MESSAGES/pan.mo
-share/locale/ga/LC_MESSAGES/pan.mo
-share/locale/gl/LC_MESSAGES/pan.mo
-share/locale/hu/LC_MESSAGES/pan.mo
-share/locale/it/LC_MESSAGES/pan.mo
-share/locale/ja/LC_MESSAGES/pan.mo
-share/locale/ko/LC_MESSAGES/pan.mo
-share/locale/lt/LC_MESSAGES/pan.mo
-share/locale/nl/LC_MESSAGES/pan.mo
-share/locale/no/LC_MESSAGES/pan.mo
-share/locale/pl/LC_MESSAGES/pan.mo
-share/locale/pt/LC_MESSAGES/pan.mo
-share/locale/pt_BR/LC_MESSAGES/pan.mo
-share/locale/ru/LC_MESSAGES/pan.mo
-share/locale/sk/LC_MESSAGES/pan.mo
-share/locale/sl/LC_MESSAGES/pan.mo
-share/locale/sp/LC_MESSAGES/pan.mo
-share/locale/sr/LC_MESSAGES/pan.mo
-share/locale/sv/LC_MESSAGES/pan.mo
-share/locale/tr/LC_MESSAGES/pan.mo
-share/locale/uk/LC_MESSAGES/pan.mo
-share/locale/zh_CN/LC_MESSAGES/pan.mo