diff options
author | sobomax <sobomax@FreeBSD.org> | 2000-07-26 20:55:44 +0800 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2000-07-26 20:55:44 +0800 |
commit | b1df116bb80e06097dbe0d5e9d04ba0948b65014 (patch) | |
tree | feb51f1d7971c6ef5bbbe4fed24961781d8ac3f0 /www | |
parent | 1c76abd49e19c14fd7c4ea0130658b404fb1c622 (diff) | |
download | freebsd-ports-gnome-b1df116bb80e06097dbe0d5e9d04ba0948b65014.tar.gz freebsd-ports-gnome-b1df116bb80e06097dbe0d5e9d04ba0948b65014.tar.zst freebsd-ports-gnome-b1df116bb80e06097dbe0d5e9d04ba0948b65014.zip |
Add encompass - a lightweight web browser for the Gnome Desktop Environment
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/encompass/Makefile | 27 | ||||
-rw-r--r-- | www/encompass/distinfo | 1 | ||||
-rw-r--r-- | www/encompass/files/patch-aa | 43 | ||||
-rw-r--r-- | www/encompass/files/patch-ab | 12 | ||||
-rw-r--r-- | www/encompass/pkg-comment | 1 | ||||
-rw-r--r-- | www/encompass/pkg-descr | 9 | ||||
-rw-r--r-- | www/encompass/pkg-plist | 14 |
8 files changed, 108 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 458200de7f9e..2bca7372a3cb 100644 --- a/www/Makefile +++ b/www/Makefile @@ -40,6 +40,7 @@ SUBDIR += decss SUBDIR += demoroniser SUBDIR += djvuplugin + SUBDIR += encompass SUBDIR += erwn SUBDIR += evg SUBDIR += fcgi diff --git a/www/encompass/Makefile b/www/encompass/Makefile new file mode 100644 index 000000000000..685ed8c9a1f4 --- /dev/null +++ b/www/encompass/Makefile @@ -0,0 +1,27 @@ +# Ports collection Makefile for: encompass +# Date created: 26 July 2000 +# Whom: Maxim Sobolev <sobomax@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= encompass +PORTVERSION= 0.1.0 +CATEGORIES= www gnome +MASTER_SITES= http://www.geocities.com/lordzephyroth/ + +MAINTAINER= sobomax@FreeBSD.org + +LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs \ + gtkhtml.3:${PORTSDIR}/www/gtkhtml \ + glibwww.1:${PORTSDIR}/www/glibwww2 \ + gconf.8:${PORTSDIR}/devel/gconf +RUN_DEPENDS= gnomecc:${PORTSDIR}/sysutils/gnomecontrolcenter + +WRKSRC= ${WRKDIR}/${DISTNAME}/src + +USE_X_PREFIX= yes + +MAKE_ENV= MKDIR="${MKDIR}" + +.include <bsd.port.mk> diff --git a/www/encompass/distinfo b/www/encompass/distinfo new file mode 100644 index 000000000000..398de5187824 --- /dev/null +++ b/www/encompass/distinfo @@ -0,0 +1 @@ +MD5 (encompass-0.1.0.tar.gz) = b6629256d0355a877ae03ae87915d380 diff --git a/www/encompass/files/patch-aa b/www/encompass/files/patch-aa new file mode 100644 index 000000000000..af779810800a --- /dev/null +++ b/www/encompass/files/patch-aa @@ -0,0 +1,43 @@ +--- Makefile.orig Mon Jul 24 01:21:31 2000 ++++ Makefile Wed Jul 26 15:39:07 2000 +@@ -1,11 +1,11 @@ +-CC = gcc ++#CC = gcc + RM = rm -rf +-CFLAGS = -g `gnome-config --cflags gtk gnome gnomeui gtkhtml glibwww oaf` \ +- `libwww-config --cflags` ++CFLAGS += `$(X11BASE)/bin/gnome-config --cflags gtk gnome gnomeui gtkhtml glibwww oaf` \ ++ `$(LOCALBASE)/bin/libwww-config --cflags` + LDFLAGS = +-LIBS = `gnome-config --libs gtk gnome gnomeui gtkhtml glibwww oaf` \ +- `libwww-config --libs` `gconf-config --libs gconf` +-prefix = `gnome-config --prefix` ++LIBS = `$(X11BASE)/bin/gnome-config --libs gtk gnome gnomeui gtkhtml glibwww oaf` \ ++ `$(LOCALBASE)/bin/libwww-config --libs` `$(X11BASE)/bin/gconf-config --libs gconf` ++prefix = $(PREFIX) + INSTALL = $(prefix)/bin/install -c + exec_prefix = ${prefix} + bindir = $(exec_prefix)/bin +@@ -18,13 +18,15 @@ + all: encompass + + install: all +- strip encompass +- $(INSTALL) encompass $(bindir)/encompass +- cp -rf ../encompass.desktop $(prefix)/share/gnome/apps/Internet/encompass.desktop +- cp -rf ../pixmaps/ $(prefix)/share/ +- cp -rf ../help/ $(prefix)/share/gnome/ +- cp -rf ../sounds/ $(prefix)/share/ +- cp -rf ../encompass.soundlist /etc/sound/events/ ++ $(BSD_INSTALL_PROGRAM) encompass $(bindir)/encompass ++ $(BSD_INSTALL_DATA) ../encompass.desktop $(prefix)/share/gnome/apps/Internet/encompass.desktop ++ $(MKDIR) $(prefix)/share/gnome/pixmaps/encompass ++ $(BSD_INSTALL_DATA) ../pixmaps/encompass/* $(prefix)/share/gnome/pixmaps/encompass/ ++ $(MKDIR) $(prefix)/share/gnome/help/encompass/C ++ $(BSD_INSTALL_DATA) ../help/encompass/C/* $(prefix)/share/gnome/help/encompass/C/ ++ $(MKDIR) $(prefix)/share/gnome/sounds/encompass ++ $(BSD_INSTALL_DATA) ../sounds/encompass/* $(prefix)/share/gnome/sounds/encompass/ ++ $(BSD_INSTALL_DATA) ../encompass.soundlist $(prefix)/etc/sound/events/ + + uninstall: + $(RM) $(bindir)/encompass \ diff --git a/www/encompass/files/patch-ab b/www/encompass/files/patch-ab new file mode 100644 index 000000000000..2c4b9be0dee8 --- /dev/null +++ b/www/encompass/files/patch-ab @@ -0,0 +1,12 @@ +--- config.h.orig Wed Jul 26 14:50:21 2000 ++++ config.h Wed Jul 26 14:50:25 2000 +@@ -7,6 +7,9 @@ + + #include <sys/stat.h> + #include <netdb.h> ++#include <sys/types.h> ++#include <sys/socket.h> ++#include <netinet/in.h> + #include <arpa/inet.h> + + #include <libgnomeprint/gnome-print.h> diff --git a/www/encompass/pkg-comment b/www/encompass/pkg-comment new file mode 100644 index 000000000000..b756a1001afa --- /dev/null +++ b/www/encompass/pkg-comment @@ -0,0 +1 @@ +A lightweight web browser for the Gnome Desktop Environment diff --git a/www/encompass/pkg-descr b/www/encompass/pkg-descr new file mode 100644 index 000000000000..de13f875d2bb --- /dev/null +++ b/www/encompass/pkg-descr @@ -0,0 +1,9 @@ +Encompass is a web browser for the Gnome Desktop Environment. + +It is designed to be a small fast browser using the GtkHTML engine. It will be +able to share cookies with other apps. It will handle all special URIs and MIME +types. All of this functionality will be provided by the latest version of +Gnome. Bonobo components will also be used, as well as plugins. No file-manager +functions will be implemented. + +WWW: http://www.geocities.com/lordzephyroth/encompass.html diff --git a/www/encompass/pkg-plist b/www/encompass/pkg-plist new file mode 100644 index 000000000000..3bf0ac62c3f7 --- /dev/null +++ b/www/encompass/pkg-plist @@ -0,0 +1,14 @@ +bin/encompass +etc/sound/events/encompass.soundlist +share/gnome/apps/Internet/encompass.desktop +share/gnome/help/encompass/C/docbook.css +share/gnome/help/encompass/C/index.html +share/gnome/help/encompass/C/topic.dat +share/gnome/pixmaps/encompass/32.png +share/gnome/pixmaps/encompass/bookmarks.png +share/gnome/sounds/encompass/clicked.wav +share/gnome/sounds/encompass/urldone.wav +@dirrm share/gnome/sounds/encompass +@dirrm share/gnome/pixmaps/encompass +@dirrm share/gnome/help/encompass/C +@dirrm share/gnome/help/encompass |