summaryrefslogtreecommitdiffstats
path: root/x11/yelp
diff options
context:
space:
mode:
Diffstat (limited to 'x11/yelp')
-rw-r--r--x11/yelp/Makefile32
-rw-r--r--x11/yelp/distinfo1
-rw-r--r--x11/yelp/files/patch-configure25
-rw-r--r--x11/yelp/files/patch-src_man2html_yelp-man2html.c55
-rw-r--r--x11/yelp/pkg-descr4
-rw-r--r--x11/yelp/pkg-plist214
6 files changed, 0 insertions, 331 deletions
diff --git a/x11/yelp/Makefile b/x11/yelp/Makefile
deleted file mode 100644
index 650b22d2e..000000000
--- a/x11/yelp/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-# New ports collection makefile for: yelp
-# Date created: 18 May 2002
-# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= yelp
-PORTVERSION= 2.4.0
-CATEGORIES= x11 gnome
-MASTER_SITES= ${MASTER_SITE_GNOME}
-MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.4
-DIST_SUBDIR= gnome2
-
-MAINTAINER= gnome@FreeBSD.org
-COMMENT= A help browser for the GNOME 2 desktop
-
-USE_BZIP2= yes
-USE_X_PREFIX= yes
-USE_GMAKE= yes
-USE_REINPLACE= yes
-USE_GNOME= gnomeprefix gnomehack libgnomeui libgtkhtml
-USE_LIBTOOL= yes
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- LDFLAGS="-L${LOCALBASE}/lib"
-MAKE_ENV= G_CHARSET_ALIAS="${LOCALBASE}/libdata/charset.alias"
-
-post-patch:
- @${REINPLACE_CMD} -e 's|\@prefix\@/share|\@datadir\@|g' \
- ${WRKSRC}/stylesheets/docbook/catalog.in
-
-.include <bsd.port.mk>
diff --git a/x11/yelp/distinfo b/x11/yelp/distinfo
deleted file mode 100644
index c1e18360b..000000000
--- a/x11/yelp/distinfo
+++ /dev/null
@@ -1 +0,0 @@
-MD5 (gnome2/yelp-2.4.0.tar.bz2) = 98529a608fd28b9db065d887039df16d
diff --git a/x11/yelp/files/patch-configure b/x11/yelp/files/patch-configure
deleted file mode 100644
index 20702046e..000000000
--- a/x11/yelp/files/patch-configure
+++ /dev/null
@@ -1,25 +0,0 @@
---- configure.orig Tue Aug 12 03:36:10 2003
-+++ configure Tue Aug 12 10:30:37 2003
-@@ -18129,6 +18129,7 @@
-
- # This can be used to rebuild libtool when needed
- LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
-+$ac_aux_dir/ltconfig $LIBTOOL_DEPS
-
- # Always use our own libtool.
- LIBTOOL='$(SHELL) $(top_builddir)/libtool'
-@@ -20408,12 +20409,12 @@
-
- YELP_MODULES="gnome-vfs-2.0 libgnomeui-2.0 libbonobo-2.0"
-
--YELP_IDL_INCLUDES="`$PKG_CONFIG --variable=idldir gnome-vfs-2.0 libgnomeui-2.0 libbonobo-2.0 bonobo-activation-2.0| sed -e 's/^/ /' -e 's/ \+$//' -e 's/ \+/ -I /g' -e 's/^ \+//'`"
-+YELP_IDL_INCLUDES="`$PKG_CONFIG --variable=idldir libgtkhtml-2.0 gnome-vfs-2.0 libgnomeui-2.0 libbonobo-2.0 bonobo-activation-2.0| xargs -n1 echo -n ' -I '`"
-
-
-
- case $host in
-- *-linux-gnu | *-irix6*)
-+ *-linux-gnu | *-irix6* | *-freebsd*)
- cat >>confdefs.h <<\_ACEOF
- #define HAVE_MAN_WHEREIS 1
- _ACEOF
diff --git a/x11/yelp/files/patch-src_man2html_yelp-man2html.c b/x11/yelp/files/patch-src_man2html_yelp-man2html.c
deleted file mode 100644
index e30c81ba0..000000000
--- a/x11/yelp/files/patch-src_man2html_yelp-man2html.c
+++ /dev/null
@@ -1,55 +0,0 @@
---- src/man2html/yelp-man2html.c.orig Tue Jun 24 05:03:50 2003
-+++ src/man2html/yelp-man2html.c Thu Aug 14 15:47:14 2003
-@@ -129,6 +129,7 @@
- #include <string.h>
- #include <sys/stat.h>
- #include <dirent.h>
-+#include <sys/param.h>
- #include <sys/types.h>
- #include <time.h>
- #include <sys/time.h>
-@@ -3727,6 +3728,9 @@
- main(int argc, char **argv)
- {
- char *t=NULL;
-+#ifdef __FreeBSD__
-+ char *source=NULL;
-+#endif
- int i,len;
- char *buf;
- char *h = '\0';
-@@ -3845,6 +3849,24 @@
- * right.
- */
-
-+#ifdef __FreeBSD__
-+ if ((source = strstr(output, "source: ")) != NULL)
-+ {
-+ int j;
-+ for(i = 8, j = 0; i < strlen(source); i++)
-+ {
-+ if (!g_ascii_isspace((unsigned char)source[i]) && source[i] != ')')
-+ {
-+ output[j++] = source[i];
-+ }
-+ }
-+ output[j] = '\0';
-+ } else {
-+ i = strlen(output) - 1;
-+ while (g_ascii_isspace((unsigned char)output[i]))
-+ output[i--] = '\0';
-+ }
-+#else
- len = strlen(output);
- for(i = 0; i < len; i++)
- {
-@@ -3855,8 +3877,7 @@
- i = strlen(output) - 1;
- while (g_ascii_isspace((unsigned char)output[i]))
- output[i--] = '\0';
--
--
-+#endif
- if (output[0]) {
- #ifdef HAVE_LIBBZ2
- if(strstr(output,".bz2"))
diff --git a/x11/yelp/pkg-descr b/x11/yelp/pkg-descr
deleted file mode 100644
index 5267ad53b..000000000
--- a/x11/yelp/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-Yelp is a help browser for GNOME 2.0. The name Yelp was suggested by Daniel
-Lundin. Yelp is pronounced the same as the swedish word for 'help'.
-
-WWW: http://www.gnome.org/
diff --git a/x11/yelp/pkg-plist b/x11/yelp/pkg-plist
deleted file mode 100644
index 8d2e137be..000000000
--- a/x11/yelp/pkg-plist
+++ /dev/null
@@ -1,214 +0,0 @@
-bin/gnome-help
-bin/yelp
-bin/yelp-pregenerate
-libdata/bonobo/servers/GNOME_Yelp.server
-libexec/yelp-db2html
-libexec/yelp-info2html
-libexec/yelp-man2html
-share/gnome/applications/yelp.desktop
-share/gnome/images/yelp/bcg.png
-share/gnome/images/yelp/empty.png
-share/gnome/images/yelp/gnome2-button.png
-share/gnome/sgml/docbook/yelp/docbook/VERSION
-share/gnome/sgml/docbook/yelp/docbook/common/af.xml
-share/gnome/sgml/docbook/yelp/docbook/common/ca.xml
-share/gnome/sgml/docbook/yelp/docbook/common/common.xsl
-share/gnome/sgml/docbook/yelp/docbook/common/cs.xml
-share/gnome/sgml/docbook/yelp/docbook/common/da.xml
-share/gnome/sgml/docbook/yelp/docbook/common/de.xml
-share/gnome/sgml/docbook/yelp/docbook/common/el.xml
-share/gnome/sgml/docbook/yelp/docbook/common/en.xml
-share/gnome/sgml/docbook/yelp/docbook/common/es.xml
-share/gnome/sgml/docbook/yelp/docbook/common/et.xml
-share/gnome/sgml/docbook/yelp/docbook/common/eu.xml
-share/gnome/sgml/docbook/yelp/docbook/common/fi.xml
-share/gnome/sgml/docbook/yelp/docbook/common/fr.xml
-share/gnome/sgml/docbook/yelp/docbook/common/gentext.xsl
-share/gnome/sgml/docbook/yelp/docbook/common/hu.xml
-share/gnome/sgml/docbook/yelp/docbook/common/id.xml
-share/gnome/sgml/docbook/yelp/docbook/common/it.xml
-share/gnome/sgml/docbook/yelp/docbook/common/ja.xml
-share/gnome/sgml/docbook/yelp/docbook/common/ko.xml
-share/gnome/sgml/docbook/yelp/docbook/common/l10n.dtd
-share/gnome/sgml/docbook/yelp/docbook/common/l10n.xml
-share/gnome/sgml/docbook/yelp/docbook/common/l10n.xsl
-share/gnome/sgml/docbook/yelp/docbook/common/labels.xsl
-share/gnome/sgml/docbook/yelp/docbook/common/nl.xml
-share/gnome/sgml/docbook/yelp/docbook/common/nn.xml
-share/gnome/sgml/docbook/yelp/docbook/common/no.xml
-share/gnome/sgml/docbook/yelp/docbook/common/pl.xml
-share/gnome/sgml/docbook/yelp/docbook/common/pt.xml
-share/gnome/sgml/docbook/yelp/docbook/common/pt_br.xml
-share/gnome/sgml/docbook/yelp/docbook/common/ro.xml
-share/gnome/sgml/docbook/yelp/docbook/common/ru.xml
-share/gnome/sgml/docbook/yelp/docbook/common/sk.xml
-share/gnome/sgml/docbook/yelp/docbook/common/sl.xml
-share/gnome/sgml/docbook/yelp/docbook/common/sr.xml
-share/gnome/sgml/docbook/yelp/docbook/common/subtitles.xsl
-share/gnome/sgml/docbook/yelp/docbook/common/sv.xml
-share/gnome/sgml/docbook/yelp/docbook/common/table.xsl
-share/gnome/sgml/docbook/yelp/docbook/common/th.xml
-share/gnome/sgml/docbook/yelp/docbook/common/titles.xsl
-share/gnome/sgml/docbook/yelp/docbook/common/tr.xml
-share/gnome/sgml/docbook/yelp/docbook/common/uk.xml
-share/gnome/sgml/docbook/yelp/docbook/common/xh.xml
-share/gnome/sgml/docbook/yelp/docbook/common/zh_cn.xml
-share/gnome/sgml/docbook/yelp/docbook/common/zh_tw.xml
-share/gnome/sgml/docbook/yelp/docbook/dtd/calstblx.dtd
-share/gnome/sgml/docbook/yelp/docbook/dtd/catalog
-share/gnome/sgml/docbook/yelp/docbook/dtd/dbcentx.mod
-share/gnome/sgml/docbook/yelp/docbook/dtd/dbgenent.mod
-share/gnome/sgml/docbook/yelp/docbook/dtd/dbhierx.mod
-share/gnome/sgml/docbook/yelp/docbook/dtd/dbnotnx.mod
-share/gnome/sgml/docbook/yelp/docbook/dtd/dbpoolx.mod
-share/gnome/sgml/docbook/yelp/docbook/dtd/docbookx.dtd
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-amsa.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-amsb.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-amsc.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-amsn.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-amso.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-amsr.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-box.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-cyr1.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-cyr2.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-dia.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-grk1.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-grk2.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-grk3.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-grk4.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-lat1.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-lat2.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-num.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-pub.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/ent/iso-tech.ent
-share/gnome/sgml/docbook/yelp/docbook/dtd/soextblx.dtd
-share/gnome/sgml/docbook/yelp/docbook/html/admon.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/autoidx.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/autotoc.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/biblio.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/block.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/calc-chunks.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/callout.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/changebars.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/chunk-experimental.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/chunk.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/chunker.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/component.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/division.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/docbook.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/ebnf.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/expchunk.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/footnote.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/formal.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/glossary.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/graphics.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/html.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/index.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/info.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/inline.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/keywords.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/lists.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/math.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/oldchunker.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/onechunk.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/param.xml
-share/gnome/sgml/docbook/yelp/docbook/html/param.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/pi.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/qandaset.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/refentry.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/sections.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/synop.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/table.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/titlepage.templates.xml
-share/gnome/sgml/docbook/yelp/docbook/html/titlepage.templates.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/titlepage.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/toc.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/verbatim.xsl
-share/gnome/sgml/docbook/yelp/docbook/html/xref.xsl
-share/gnome/sgml/docbook/yelp/docbook/images/blank.png
-share/gnome/sgml/docbook/yelp/docbook/images/caution.png
-share/gnome/sgml/docbook/yelp/docbook/images/home.png
-share/gnome/sgml/docbook/yelp/docbook/images/important.png
-share/gnome/sgml/docbook/yelp/docbook/images/next.png
-share/gnome/sgml/docbook/yelp/docbook/images/note.png
-share/gnome/sgml/docbook/yelp/docbook/images/prev.png
-share/gnome/sgml/docbook/yelp/docbook/images/tip.png
-share/gnome/sgml/docbook/yelp/docbook/images/up.png
-share/gnome/sgml/docbook/yelp/docbook/images/warning.png
-share/gnome/sgml/docbook/yelp/docbook/lib/lib.xsl
-share/gnome/sgml/docbook/yelp/l10n.xml
-share/gnome/sgml/docbook/yelp/yelp-custom.xsl
-share/gnome/sgml/docbook/yelp/yelp-customization.xsl
-share/gnome/sgml/docbook/yelp/yelp-functions.xsl
-share/gnome/yelp/catalog
-share/gnome/yelp/important_docs.xml
-share/gnome/yelp/ui/yelp.glade
-share/locale/am/LC_MESSAGES/yelp.mo
-share/locale/ar/LC_MESSAGES/yelp.mo
-share/locale/az/LC_MESSAGES/yelp.mo
-share/locale/be/LC_MESSAGES/yelp.mo
-share/locale/bg/LC_MESSAGES/yelp.mo
-share/locale/bn/LC_MESSAGES/yelp.mo
-share/locale/ca/LC_MESSAGES/yelp.mo
-share/locale/cs/LC_MESSAGES/yelp.mo
-share/locale/cy/LC_MESSAGES/yelp.mo
-share/locale/da/LC_MESSAGES/yelp.mo
-share/locale/de/LC_MESSAGES/yelp.mo
-share/locale/el/LC_MESSAGES/yelp.mo
-share/locale/eo/LC_MESSAGES/yelp.mo
-share/locale/es/LC_MESSAGES/yelp.mo
-share/locale/et/LC_MESSAGES/yelp.mo
-share/locale/fa/LC_MESSAGES/yelp.mo
-share/locale/fi/LC_MESSAGES/yelp.mo
-share/locale/fr/LC_MESSAGES/yelp.mo
-share/locale/ga/LC_MESSAGES/yelp.mo
-share/locale/gl/LC_MESSAGES/yelp.mo
-share/locale/he/LC_MESSAGES/yelp.mo
-share/locale/hi/LC_MESSAGES/yelp.mo
-share/locale/hu/LC_MESSAGES/yelp.mo
-share/locale/id/LC_MESSAGES/yelp.mo
-share/locale/is/LC_MESSAGES/yelp.mo
-share/locale/it/LC_MESSAGES/yelp.mo
-share/locale/ja/LC_MESSAGES/yelp.mo
-share/locale/kn/LC_MESSAGES/yelp.mo
-share/locale/ko/LC_MESSAGES/yelp.mo
-share/locale/li/LC_MESSAGES/yelp.mo
-share/locale/lv/LC_MESSAGES/yelp.mo
-share/locale/mk/LC_MESSAGES/yelp.mo
-share/locale/ml/LC_MESSAGES/yelp.mo
-share/locale/mn/LC_MESSAGES/yelp.mo
-share/locale/ms/LC_MESSAGES/yelp.mo
-share/locale/ne/LC_MESSAGES/yelp.mo
-share/locale/nl/LC_MESSAGES/yelp.mo
-share/locale/nn/LC_MESSAGES/yelp.mo
-share/locale/no/LC_MESSAGES/yelp.mo
-share/locale/pl/LC_MESSAGES/yelp.mo
-share/locale/pt/LC_MESSAGES/yelp.mo
-share/locale/pt_BR/LC_MESSAGES/yelp.mo
-share/locale/ro/LC_MESSAGES/yelp.mo
-share/locale/ru/LC_MESSAGES/yelp.mo
-share/locale/sk/LC_MESSAGES/yelp.mo
-share/locale/sl/LC_MESSAGES/yelp.mo
-share/locale/sq/LC_MESSAGES/yelp.mo
-share/locale/sr/LC_MESSAGES/yelp.mo
-share/locale/sr@Latn/LC_MESSAGES/yelp.mo
-share/locale/sv/LC_MESSAGES/yelp.mo
-share/locale/ta/LC_MESSAGES/yelp.mo
-share/locale/th/LC_MESSAGES/yelp.mo
-share/locale/tr/LC_MESSAGES/yelp.mo
-share/locale/uk/LC_MESSAGES/yelp.mo
-share/locale/vi/LC_MESSAGES/yelp.mo
-share/locale/wa/LC_MESSAGES/yelp.mo
-share/locale/zh_CN/LC_MESSAGES/yelp.mo
-share/locale/zh_TW/LC_MESSAGES/yelp.mo
-@dirrm share/gnome/yelp/ui
-@dirrm share/gnome/yelp
-@dirrm share/gnome/sgml/docbook/yelp/docbook/lib
-@dirrm share/gnome/sgml/docbook/yelp/docbook/images
-@dirrm share/gnome/sgml/docbook/yelp/docbook/html
-@dirrm share/gnome/sgml/docbook/yelp/docbook/dtd/ent
-@dirrm share/gnome/sgml/docbook/yelp/docbook/dtd
-@dirrm share/gnome/sgml/docbook/yelp/docbook/common
-@dirrm share/gnome/sgml/docbook/yelp/docbook
-@dirrm share/gnome/sgml/docbook/yelp
-@dirrm share/gnome/images/yelp