diff options
author | erwin <erwin@FreeBSD.org> | 2009-06-14 00:18:19 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2009-06-14 00:18:19 +0800 |
commit | 76e2eaeb9673ba39070e4b7125748510b6b5fa52 (patch) | |
tree | d968a8780f3d952112d43be98219f1c1eddfb51e /www | |
parent | 067649d186fa1cc4b71875968f075ef47db6bdca (diff) | |
download | freebsd-ports-gnome-76e2eaeb9673ba39070e4b7125748510b6b5fa52.tar.gz freebsd-ports-gnome-76e2eaeb9673ba39070e4b7125748510b6b5fa52.tar.zst freebsd-ports-gnome-76e2eaeb9673ba39070e4b7125748510b6b5fa52.zip |
Remove www/winhelpcgi, does not compile with GCC 4.2
Submitted by: portsmon
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/winhelpcgi/Makefile | 47 | ||||
-rw-r--r-- | www/winhelpcgi/distinfo | 3 | ||||
-rw-r--r-- | www/winhelpcgi/files/patch-Makefile.am | 10 | ||||
-rw-r--r-- | www/winhelpcgi/files/patch-bigend.h | 17 | ||||
-rw-r--r-- | www/winhelpcgi/pkg-descr | 4 | ||||
-rw-r--r-- | www/winhelpcgi/pkg-message | 18 | ||||
-rw-r--r-- | www/winhelpcgi/pkg-plist | 2 |
8 files changed, 0 insertions, 102 deletions
diff --git a/www/Makefile b/www/Makefile index f14f09116db0..4c1080e5c373 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1604,7 +1604,6 @@ SUBDIR += wikicalc SUBDIR += wikindx SUBDIR += wiliki - SUBDIR += winhelpcgi SUBDIR += wml SUBDIR += wnews SUBDIR += woadaptor diff --git a/www/winhelpcgi/Makefile b/www/winhelpcgi/Makefile deleted file mode 100644 index 819fe503b955..000000000000 --- a/www/winhelpcgi/Makefile +++ /dev/null @@ -1,47 +0,0 @@ -# New ports collection makefile for: winhelpcgi -# Date created: 3 May 2004 -# Whom: Robin Schoonover (endx7@users.sf.net) -# -# $FreeBSD$ -# - -PORTNAME= winhelpcgi -PORTVERSION= 1.0r3 -PORTREVISION= 2 -CATEGORIES= www textproc -MASTER_SITES= http://www.herdsoft.com/ftp/ -DISTNAME= ${PORTNAME}_1.0rc3-1 - -MAINTAINER= ports@FreeBSD.org -COMMENT= A winhelp converter cgi program - -LIB_DEPENDS= wmf.2:${PORTSDIR}/graphics/libwmf - -EXPIRATION_DATE= 2009-06-01 - -WRKSRC= ${WRKDIR}/${PORTNAME}-1.0rc3 -GNU_CONFIGURE= yes -USE_AUTOTOOLS= automake:14 -USE_GETTEXT= yes -USE_APACHE= 1.3 -PKGMESSAGE= ${WRKDIR}/pkg-message - -post-build: - @${CAT} ${PKGDIR}/pkg-message | ${SED} -e 's:%%PREFIX%%:${PREFIX}:' > ${PKGMESSAGE} - -do-install: - ${MKDIR} ${PREFIX}/www/winhelpcgi - ${INSTALL_PROGRAM} ${WRKSRC}/winhelpcgi/winhelpcgi.cgi ${PREFIX}/www/winhelpcgi - -post-install: -.if !defined(BATCH) - @${CAT} ${PKGMESSAGE} -.endif - -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 700042 -BROKEN= Does not compile with GCC 4.2 -.endif - -.include <bsd.port.post.mk> diff --git a/www/winhelpcgi/distinfo b/www/winhelpcgi/distinfo deleted file mode 100644 index 79c4afb6ed1a..000000000000 --- a/www/winhelpcgi/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (winhelpcgi_1.0rc3-1.tar.gz) = ffea4a34898b3746184d50f5d2ea38c7 -SHA256 (winhelpcgi_1.0rc3-1.tar.gz) = e48fbadfd6242f145abaf5aa92d0cebc804da2853b8478b79074ea3b2c01d2a3 -SIZE (winhelpcgi_1.0rc3-1.tar.gz) = 338589 diff --git a/www/winhelpcgi/files/patch-Makefile.am b/www/winhelpcgi/files/patch-Makefile.am deleted file mode 100644 index 9ddc698972a8..000000000000 --- a/www/winhelpcgi/files/patch-Makefile.am +++ /dev/null @@ -1,10 +0,0 @@ ---- winhelpcgi/Makefile.am.orig Fri Jun 11 22:31:21 2004 -+++ winhelpcgi/Makefile.am Fri Jun 11 22:31:30 2004 -@@ -10,7 +10,7 @@ - ../libhlpaccess/libhlpaccess.a \ - -lpng -lz \ - @LIBWMF_LIBS@ \ -- @INTLLIBS@ -+ @INTLLIBS@ -lintl - - noinst_HEADERS = dib2png.h winhelpcgi.h wmf2png.h diff --git a/www/winhelpcgi/files/patch-bigend.h b/www/winhelpcgi/files/patch-bigend.h deleted file mode 100644 index 507dcd68da6c..000000000000 --- a/www/winhelpcgi/files/patch-bigend.h +++ /dev/null @@ -1,17 +0,0 @@ ---- libhlpaccess/bigend.h.orig Sun May 16 13:35:18 2004 -+++ libhlpaccess/bigend.h Wed Jan 5 17:00:48 2005 -@@ -4,9 +4,11 @@ - * - */ - --#if defined(__powerpc__) || defined(__ppc__) || defined(__sparc__) || defined(_AIX) -+#include <sys/endian.h> -+ -+#if BYTE_ORDER == BIG_ENDIAN - # define BIGENDIAN /* This is a big-endian machine MSB is the first Byte */ --#elif defined(__i386__) || defined(__alpha__) || defined(__amd64__) -+#elif BYTE_ORDER == LITTLE_ENDIAN - # define LITTLEENDIAN /* This is a little-endian machine MSB is the last Byte */ - #else - # error Endianness undefined - diff --git a/www/winhelpcgi/pkg-descr b/www/winhelpcgi/pkg-descr deleted file mode 100644 index 726f09dc32c1..000000000000 --- a/www/winhelpcgi/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -winhelpcgi is a cgi program that can display winhelp files on the web. -It supports .HLP, .M14, .M13, and .MVP files. - -WWW: http://www.herdsoft.com/linux/produkte/winhelpcgi.html diff --git a/www/winhelpcgi/pkg-message b/www/winhelpcgi/pkg-message deleted file mode 100644 index 54493dac182c..000000000000 --- a/www/winhelpcgi/pkg-message +++ /dev/null @@ -1,18 +0,0 @@ ------------------------------------------------------------------ -winhelpcgi.cgi has been installed into %%PREFIX%%/www/winhelpcgi/ - -You now need to copy winhelp files into %%PREFIX%%/www/winhelpcgi/ - -You also need to somehow make your webserver aware of winhelpcgi. -For example, the following config fragment would make apache aware -of winhelpcgi: - -Alias /winhelpcgi %%PREFIX%%/www/winhelpcgi -<Directory /usr/local/www/winhelpcgi> - AddHandler cgi-script .cgi - AllowOverride All - Options ExecCGI -</Directory> - ------------------------------------------------------------------ - diff --git a/www/winhelpcgi/pkg-plist b/www/winhelpcgi/pkg-plist deleted file mode 100644 index 330c792f4d17..000000000000 --- a/www/winhelpcgi/pkg-plist +++ /dev/null @@ -1,2 +0,0 @@ -www/winhelpcgi/winhelpcgi.cgi -@dirrmtry www/winhelpcgi |