From owner-freebsd-ports Fri Feb 23 8: 0:14 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D06637B65D for ; Fri, 23 Feb 2001 08:00:02 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1NG02i96558; Fri, 23 Feb 2001 08:00:02 -0800 (PST) (envelope-from gnats) Received: from mta02-svc.ntlworld.com (mta02-svc.ntlworld.com [62.253.162.42]) by hub.freebsd.org (Postfix) with ESMTP id 4647137B401 for ; Fri, 23 Feb 2001 07:54:29 -0800 (PST) (envelope-from greid@ukug.uk.freebsd.org) Received: from m62-mp1-cvx1b.gui.ntl.com ([62.252.8.62]) by mta02-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20010223155426.BERO290.mta02-svc.ntlworld.com@m62-mp1-cvx1b.gui.ntl.com> for ; Fri, 23 Feb 2001 15:54:26 +0000 Message-Id: Date: Fri, 23 Feb 2001 16:03:34 +0000 (GMT) From: George Reid To: FreeBSD-gnats-submit@freebsd.org Subject: ports/25312: New port: dillo: A fast, small graphical Web browser built upon GTK+ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 25312 >Category: ports >Synopsis: New port: dillo: A fast, small graphical Web browser built upon GTK+ >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Feb 23 08:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Dillo is a web browser project completely written in C (currently the code is based on gzilla-0.2.2's widget, and a new improved network engine written from scratch). Dillo is small; source and binary are less than 220 Kb each. Dillo aims to be a multiplataform browser alternative that's small, stable, developer-friendly, usable, fast, and extensible. Dillo is mainly based on GTK+ (GNOME is NOT required!) Dillo is very fast! WWW: http://dillo.sourceforge.net/ - George Reid greid@ukug.uk.freebsd.org >How-To-Repeat: n/a >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # dillo # dillo/Makefile # dillo/distinfo # dillo/files # dillo/files/patch-aa # dillo/pkg-descr # dillo/pkg-comment # dillo/pkg-plist # echo c - dillo mkdir -p dillo > /dev/null 2>&1 echo x - dillo/Makefile sed 's/^X//' >dillo/Makefile << 'END-of-dillo/Makefile' X# New ports collection makefile for: dillo X# Date created: 23 February 2001 X# Whom: George Reid X# X# $FreeBSD$ X# X XPORTNAME= dillo XPORTVERSION= 0.3.2 XCATEGORIES= www XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME} X XMAINTAINER= greid@ukug.uk.freebsd.org X XLIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ X intl.1:${PORTSDIR}/devel/gettext X XUSE_GTK= yes XGNU_CONFIGURE= yes XCONFIGURE_ARGS+=--includedir="${LOCALBASE}/include" \ X --libdir="${LOCALBASE}/lib" XUSE_GMAKE= yes X X.include END-of-dillo/Makefile echo x - dillo/distinfo sed 's/^X//' >dillo/distinfo << 'END-of-dillo/distinfo' XMD5 (dillo-0.3.2.tar.gz) = 224c2d7cd7bb77457b6aaec28ed19af6 END-of-dillo/distinfo echo c - dillo/files mkdir -p dillo/files > /dev/null 2>&1 echo x - dillo/files/patch-aa sed 's/^X//' >dillo/files/patch-aa << 'END-of-dillo/files/patch-aa' X--- configure.orig Wed Dec 27 22:36:16 2000 X+++ configure Fri Feb 23 15:51:30 2001 X@@ -1617,7 +1617,7 @@ X jpeg_ok=no X fi X done X- X+jpeg_ok=yes X fi X echo "$ac_t""$jpeg_ok" 1>&6 X if test "$jpeg_ok" = yes; then X@@ -1627,14 +1627,14 @@ X fi X fi X X-echo $ac_n "checking for pthread_create in -lpthread""... $ac_c" 1>&6 X-echo "configure:1632: checking for pthread_create in -lpthread" >&5 X+echo $ac_n "checking for pthread_create in -lc_r""... $ac_c" 1>&6 X+echo "configure:1632: checking for pthread_create in -lc_r" >&5 X ac_lib_var=`echo pthread'_'pthread_create | sed 'y%./+-%__p_%'` X if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then X echo $ac_n "(cached) $ac_c" 1>&6 X else X ac_save_LIBS="$LIBS" X-LIBS="-lpthread $LIBS" X+LIBS="-lc_r $LIBS" X cat > conftest.$ac_ext <&6 END-of-dillo/files/patch-aa echo x - dillo/pkg-descr sed 's/^X//' >dillo/pkg-descr << 'END-of-dillo/pkg-descr' XDillo is a web browser project completely written in C (currently the code Xis based on gzilla-0.2.2's widget, and a new improved network engine Xwritten from scratch). X XDillo is small; source and binary are less than 220 Kb each. X XDillo aims to be a multiplataform browser alternative that's small, Xstable, developer-friendly, usable, fast, and extensible. X XDillo is mainly based on GTK+ (GNOME is NOT required!) X XDillo is very fast! X XWWW: http://dillo.sourceforge.net/ X X- George Reid Xgreid@ukug.uk.freebsd.org END-of-dillo/pkg-descr echo x - dillo/pkg-comment sed 's/^X//' >dillo/pkg-comment << 'END-of-dillo/pkg-comment' XA fast, small graphical Web browser built upon GTK+ END-of-dillo/pkg-comment echo x - dillo/pkg-plist sed 's/^X//' >dillo/pkg-plist << 'END-of-dillo/pkg-plist' Xbin/dillo END-of-dillo/pkg-plist exit >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message