1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-18 08:02:48 +00:00

As announced on May 6, remove the broken www/viewml port.

This commit is contained in:
Kris Kennaway 2003-08-08 04:01:57 +00:00
parent ff304793f9
commit 075a3dc74d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=86557
9 changed files with 0 additions and 193 deletions

View File

@ -481,7 +481,6 @@
SUBDIR += twiki
SUBDIR += udmsearch
SUBDIR += ump
SUBDIR += viewml
SUBDIR += w3
SUBDIR += w3-4
SUBDIR += w3c-httpd

View File

@ -1,40 +0,0 @@
# Ports collection Makefile for: viewml
# Date created: Black Friday (13 April 2001)
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= viewml
PORTVERSION= 0.21
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= ftp://ftp.viewml.com/pub/viewml/
MAINTAINER= ports@FreeBSD.org
COMMENT= An open source web browser targeted at the embedded platforms
BROKEN= "Does not compile"
BUILD_DEPENDS= makedepend:${PORTSDIR}/devel/makedepend
LIB_DEPENDS= fltk.1:${PORTSDIR}/x11-toolkits/fltk \
wwwzip.1:${PORTSDIR}/www/libwww
WRKSRC= ${WRKDIR}/${DISTNAME}/src
USE_X_PREFIX= yes
USE_GMAKE= yes
USE_GNOME= imlib
USE_BISON= yes
CFLAGS+= -fpermissive -include /usr/include/sys/types.h \
-DPREFIX=\\\"${PREFIX}\\\"
do-configure:
@(cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKEFILE} ${MAKE_ARGS} depend)
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/viewml ${PREFIX}/bin
${MKDIR} ${PREFIX}/share/viewml
${INSTALL_DATA} ${WRKSRC}/khtmlw_dnd.xpm ${PREFIX}/share/viewml
.include <bsd.port.mk>

View File

@ -1 +0,0 @@
MD5 (viewml-0.21.tar.gz) = 0c34bdc70258f34a31f032270299b1f0

View File

@ -1,98 +0,0 @@
--- Makefile.orig Thu Nov 9 01:42:05 2000
+++ Makefile Fri Apr 13 14:18:09 2001
@@ -3,25 +3,25 @@
ifndef _NANOX
# your version of FLTK (1.0.7, please!)
- FLTK = /home/davet/src/fltk/flmwin
+ FLTK = $(X11BASE)
else
# your version of Nano-X FLTK (0.88, please!)
FLTK = /home/jasonk/projects/flnx
endif
# Where your Xlibs are (not needed for Nano-X/Mwin builds)
-XLIBS = -L/usr/X11R6/lib -lX11
+XLIBS = -L$(X11BASE)/lib -lX11
# Where Nano-X is (not needed if building for X only)
NANOX = /home/jasonk/projects/microwin
# Various support libraries
-IMLIBS = `imlib-config --libs`
-WWWLIBS = `/usr/bin/libwww-config --libs`
+IMLIBS = `$(X11BASE)/bin/imlib-config --libs`
+WWWLIBS = `$(LOCALBASE)/bin/libwww-config --libs`
# The everpresent CFLAGS
ifndef _NANOX
- CFLAGS = -g `/usr/bin/libwww-config --cflags`
+ CFLAGS += `$(LOCALBASE)/bin/libwww-config --cflags`
else
CFLAGS = -g -DNANOX -D_NANOX `libwww-config --cflags`
endif
@@ -32,7 +32,7 @@
################################################################
ifndef _NANOX
- LIBS = $(FLTK)/lib/libfltk.a -lfl $(XLIBS) -lpthread $(WWWLIBS) $(IMLIBS)
+ LIBS = $(FLTK)/lib/libfltk.a -lfl $(XLIBS) -pthread $(WWWLIBS) $(IMLIBS)
else
LIBS = $(FLTK)/lib/libfltk.a -lfl -lpthread $(NANOXLIBS) $(WWWLIBS)
endif
@@ -40,7 +40,7 @@
KDEINC = -I../kdecore -I../kimgio -I../kdeui -I../jscript
ifndef _NANOX
- INCLUDES = -I$(FLTK)/FL -I$(FLTK) -I./fltk -I. $(KDEINC)
+ INCLUDES = -I$(LOCALBASE)/include/w3c-libwww -I$(FLTK)/include/FL -I$(X11BASE)/include -I$(X11BASE)/include/X11 -I./fltk -I. $(KDEINC)
else
INCLUDES = -I$(FLTK)/FL -I$(FLTK) -I$(NANOX)/src/include -I./fltk -I. $(KDEINC)
endif
@@ -48,17 +48,18 @@
CPPFILES = html.cpp htmlchain.cpp htmlclue.cpp htmldata.cpp htmlfont.cpp \
htmliter.cpp htmltable.cpp htmltoken.cpp jscript.cpp htmlview.cpp \
htmlframe.cpp htmlobj.cpp debug.cpp htmlform.cpp main.cpp http.cpp \
- http_.cpp
+ http_.cpp vmlapp.cpp
OTHERCPP = ../kdecore/kurl.cpp ../kdeui/kcursor.cpp fltk/qtimer.cpp \
fltk/qobject.cpp fltk/qpainter.cpp fltk/qdrawutil.cpp \
fltk/qfont.cpp fltk/qrect.cpp fltk/qregexp.cpp fltk/qstring.cpp \
fltk/kcharsets.cpp fltk/qcolor.cpp fltk/qpixmap.cpp \
- fltk/qfontinfo.cpp fltk/qwidget.cpp fltk/history.cpp fltk/qscrollbar.cpp
+ fltk/qfontinfo.cpp fltk/qwidget.cpp fltk/history.cpp fltk/qscrollbar.cpp \
+ fltk/drag.cpp fltk/qpushbutton.cpp fltk/qlineedit.cpp
OBJS = html.o htmlchain.o htmlclue.o htmldata.o htmlfont.o htmliter.o \
htmltable.o htmltoken.o jscript.o htmlview.o htmlframe.o htmlobj.o \
- debug.o htmlform.o main.o http.o http_.o
+ debug.o htmlform.o main.o http.o http_.o vmlapp.o
OTHEROBJS = ../kdecore/kurl.o ../jscript/builtin.o ../jscript/cpp2bison.o \
../jscript/jsexec.o ../jscript/jstree.o ../jscript/t2.o \
@@ -66,7 +67,7 @@
fltk/qpainter.o fltk/qdrawutil.o fltk/qfont.o fltk/qrect.o \
fltk/qregexp.o fltk/qstring.o fltk/kcharsets.o fltk/qcolor.o \
fltk/qpixmap.o fltk/qfontinfo.o fltk/qwidget.o fltk/history.o \
- fltk/qscrollbar.o
+ fltk/qscrollbar.o fltk/drag.o fltk/qpushbutton.o fltk/qlineedit.o
################################################################
@@ -75,13 +76,13 @@
all: jscript $(OBJS) $(OTHEROBJS) main
jscript:
- cd ../jscript && make
+ cd ../jscript && $(MAKE)
main: $(OBJS) $(OTHEROBJS)
$(CXX) $(OBJS) $(OTHEROBJS) -o viewml $(LIBS)
depend:
- makedepend -I/usr/include/g++2 -I/usr/include/g++2/std \
+ makedepend -I/usr/include/g++ -I/usr/include/g++/std \
$(INCLUDES) $(CPPFILES) $(OTHERCPP)
.SUFFIXES: .cpp .h .o

View File

@ -1,7 +0,0 @@
$FreeBSD$
--- /dev/null Fri Apr 13 12:29:44 2001
+++ config.h Fri Apr 13 12:29:40 2001
@@ -0,0 +1 @@
+

View File

@ -1,10 +0,0 @@
$FreeBSD$
--- fltk/history.cpp 2001/11/26 17:09:52 1.1
+++ fltk/history.cpp 2001/11/26 17:09:59
@@ -1,4 +1,3 @@
-#include <malloc.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

View File

@ -1,16 +0,0 @@
$FreeBSD$
--- html.cpp 2001/04/13 15:30:05 1.1
+++ html.cpp 2001/04/13 15:31:44
@@ -246,8 +246,8 @@
setBackgroundColor( lightGray );
- QString f = kapp->kde_datadir().copy();
- f += "/khtmlw/pics/khtmlw_dnd.xpm";
+ QString f = PREFIX;
+ f += "/share/viewml/khtmlw_dnd.xpm";
dndDefaultPixmap.load( f.data() );
registerFormats();

View File

@ -1,17 +0,0 @@
ViewML (Viewable Markup Language) is the first freely available, open source
web browser targeted specifically at the embedded platform. The web browser,
known as The ViewML Project will be developed and maintained with source code
made available to the public, as well as with contributions from the embedded
community.
As of now, the ViewML browser along with its interface requires 2.1 MB of RAM,
with a small disk image foot-print requiring only 760K.
The ViewML Project selected the KDE Desktop's kfm HTML display engine because
of its superior design and display capabilities. The HTML engine was extracted,
then ported, using a thin glue layer, to the small but fast FLTK (Fast Light
Tool Kit, www.fltk.org) applications framework to keep the RAM usage extremely
small, but still allows to fully implement all of the necessary user interface
controls.
WWW: http://www.viewml.com/

View File

@ -1,3 +0,0 @@
bin/viewml
share/viewml/khtmlw_dnd.xpm
@dirrm share/viewml