From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 18 15:44:00 2006 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1502416A40F for ; Wed, 18 Oct 2006 15:44:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85BC143DAA for ; Wed, 18 Oct 2006 15:40:30 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k9IFeJFZ020969 for ; Wed, 18 Oct 2006 15:40:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k9IFeJfW020968; Wed, 18 Oct 2006 15:40:19 GMT (envelope-from gnats) Resent-Date: Wed, 18 Oct 2006 15:40:19 GMT Resent-Message-Id: <200610181540.k9IFeJfW020968@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Thomas Abthorpe Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B90DB16A492 for ; Wed, 18 Oct 2006 15:30:39 +0000 (UTC) (envelope-from tabthorpe@goodking.goodking.ca) Received: from tbaytel.net (front3-g.tbaytel.net [216.211.26.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5AD7343D75 for ; Wed, 18 Oct 2006 15:30:27 +0000 (GMT) (envelope-from tabthorpe@goodking.goodking.ca) Received: from goodking.goodking.ca ([216.211.72.166] verified) by front3.tbaytel.net (CommuniGate Pro SMTP 5.0.8) with ESMTPS id 32451294 for FreeBSD-gnats-submit@freebsd.org; Wed, 18 Oct 2006 11:30:19 -0400 Received: from goodking.goodking.ca (localhost [127.0.0.1]) by goodking.goodking.ca (8.13.8/8.13.8) with ESMTP id k9IFTw04011400 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 18 Oct 2006 11:29:59 -0400 (EDT) (envelope-from tabthorpe@goodking.goodking.ca) Received: (from root@localhost) by goodking.goodking.ca (8.13.8/8.13.8/Submit) id k9IFTw03011365; Wed, 18 Oct 2006 11:29:58 -0400 (EDT) (envelope-from tabthorpe) Message-Id: <200610181529.k9IFTw03011365@goodking.goodking.ca> Date: Wed, 18 Oct 2006 11:29:58 -0400 (EDT) From: Thomas Abthorpe To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: thomas@goodking.ca Subject: ports/104541: [PATCH] textproc/ltxml: user needs to agree to EULA before download X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Oct 2006 15:44:00 -0000 >Number: 104541 >Category: ports >Synopsis: [PATCH] textproc/ltxml: user needs to agree to EULA before download >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Oct 18 15:40:19 GMT 2006 >Closed-Date: >Last-Modified: >Originator: Thomas Abthorpe >Release: FreeBSD 6.2-PRERELEASE i386 >Organization: GoodKing.Ca >Environment: System: FreeBSD goodking.goodking.ca 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #2: Mon Oct 2 02:05:54 EDT >Description: - user needs to agree to EULA before download - remove MASTER_SITES - reformat pkg-descr, update WWW - pet portlint Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- ltxml-1.2.7.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/ltxml/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- Makefile 18 Apr 2005 15:41:52 -0000 1.10 +++ Makefile 18 Oct 2006 15:21:47 -0000 @@ -8,7 +8,6 @@ PORTNAME= ltxml PORTVERSION= 1.2.7 CATEGORIES= textproc -MASTER_SITES= ftp://ftp.cogsci.ed.ac.uk/pub/LTXML/ MAINTAINER= ports@FreeBSD.org COMMENT= XML Toolkit @@ -34,12 +33,21 @@ .include +.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) +ECHO_MSG=/usr/bin/printf +IGNORE= :\n\ +You have to download the distribution manually from \n\ +http://www.inf.ed.ac.uk/research/isdd/admin/package?download=74.\n\ +Download the file ${DISTNAME}${EXTRACT_SUFX}, and place it in\n\ +${DISTDIR}.\n +.endif + .ifdef WITH_OPTIMIZED_CFLAGS CFLAGS+= -Wuninitialized -ffast-math -finline-functions -fomit-frame-pointer -fexpensive-optimizations -O3 .endif .if ${ARCH} == "amd64" || ${ARCH} == "ia64" -CFLAGS+= -fPIC +CFLAGS+= -fPIC .endif post-install: Index: pkg-descr =================================================================== RCS file: /home/ncvs/ports/textproc/ltxml/pkg-descr,v retrieving revision 1.1 diff -u -r1.1 pkg-descr --- pkg-descr 1 Nov 2000 02:32:33 -0000 1.1 +++ pkg-descr 18 Oct 2006 15:21:47 -0000 @@ -1,23 +1,24 @@ -LT XML is an integrated set of XML tools and a developers' tool-kit, including -a C-based API. +LT XML is an integrated set of XML tools and a developers' tool-kit, +including a C-based API. -The LT XML tool-kit includes stand-alone tools for a wide range of processing -of well-formed XML documents, including searching and extracting, -down-translation (e.g. report generation, formatting), tokenising and sorting. +The LT XML tool-kit includes stand-alone tools for a wide range of +processing of well-formed XML documents, including searching and +extracting, down-translation (e.g. report generation, formatting), +tokenising and sorting. -Sequences of tool applications can be pipelined together to achieve complex -results. +Sequences of tool applications can be pipelined together to achieve +complex results. -For special purposes beyond what the pre-constructed tools can achieve, -extending their functionality and/or creating new tools is easy using the -LT XML API. Minimal applications require less than one-half page of C code -to express. +For special purposes beyond what the pre-constructed tools can +achieve, extending their functionality and/or creating new tools +is easy using the LT XML API. Minimal applications require less +than one-half page of C code to express. -LT XML provides two views of an XML file; one as a flat stream of markup -elements and text; a second as a sequence of tree-structured XML elements. -The two views can be mixed, allowing great flexibility in the manipulation -of XML documents. It also includes a powerful, yet simple, querying language, -which allows the user to quickly and easily select those parts of an XML -document which are of interest. +LT XML provides two views of an XML file; one as a flat stream of +markup elements and text; a second as a sequence of tree-structured +XML elements. The two views can be mixed, allowing great flexibility +in the manipulation of XML documents. It also includes a powerful, +yet simple, querying language, which allows the user to quickly and +easily select those parts of an XML document which are of interest. -WWW: http://www.ltg.ed.ac.uk/software/xml/ +WWW: http://www.ltg.ed.ac.uk/software/ltxml/ --- ltxml-1.2.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: