Bug 75075 - update: lang/munger - new port revision to eliminate use of DEPENDS_TARGET
Summary: update: lang/munger - new port revision to eliminate use of DEPENDS_TARGET
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Edwin Groothuis
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-12-14 21:20 UTC by James Bailie
Modified: 2005-01-12 23:12 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description James Bailie 2004-12-14 21:20:30 UTC
 # 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:
 #
 #	munger
 #	munger/pkg-plist
 #	munger/pkg-descr
 #	munger/distinfo
 #	munger/Makefile
 #	munger/pkg-message
 #
 echo c - munger
 mkdir -p munger > /dev/null 2>&1
 echo x - munger/pkg-plist
 sed 's/^X//' >munger/pkg-plist << 'END-of-munger/pkg-plist'
 Xbin/munger
 Xbin/httpf
 Xbin/xml2munger
 Xshare/munger-%%MUNGER_VERSION%%/mbox2munger.munger
 Xshare/munger-%%MUNGER_VERSION%%/mime2munger.munger
 Xshare/munger-%%MUNGER_VERSION%%/google.munger
 Xshare/munger-%%MUNGER_VERSION%%/google.template
 Xshare/munger-%%MUNGER_VERSION%%/ed.munger
 Xshare/munger-%%MUNGER_VERSION%%/xml2lisp.munger
 Xshare/munger-%%MUNGER_VERSION%%/xml2lisp2.munger
 Xshare/munger-%%MUNGER_VERSION%%/xmlquery.munger
 Xshare/munger-%%MUNGER_VERSION%%/filter.munger
 Xshare/munger-%%MUNGER_VERSION%%/tags.munger
 Xshare/munger-%%MUNGER_VERSION%%/fcgi.munger
 Xshare/munger-%%MUNGER_VERSION%%/client.fcgi
 Xshare/munger-%%MUNGER_VERSION%%/err.munger
 Xshare/munger-%%MUNGER_VERSION%%/options.munger
 Xshare/munger-%%MUNGER_VERSION%%/fmt.munger
 Xshare/munger-%%MUNGER_VERSION%%/cat.munger
 Xshare/munger-%%MUNGER_VERSION%%/grep.munger
 Xshare/munger-%%MUNGER_VERSION%%/library.munger
 Xshare/munger-%%MUNGER_VERSION%%/transform.munger
 Xshare/munger-%%MUNGER_VERSION%%/view.munger
 X@dirrm share/munger-%%MUNGER_VERSION%%
 END-of-munger/pkg-plist
 echo x - munger/pkg-descr
 sed 's/^X//' >munger/pkg-descr << 'END-of-munger/pkg-descr'
 XMunger is a simple, statically-scoped, interpreted lisp that has
 Xline-editor-like access to multiple text buffers.  Lines can be inserted,
 Xremoved, overwritten, retrieved in whole or in part, with or without tabs
 Xexpanded, searched for matches on regular expressions, read from and written
 Xto files, and piped to and from, or filtered through external processes.
 X
 XUsing regular expressions to search through or transform strings is easy in
 XMunger.  Basic facilities for doing line-oriented I/O and cursor-addressing
 Xare provided.  Munger also has interfaces to the FastCGI devkit
 X(http://www.fastcgi.com), and the SQLite library (http://www.sqlite.org).
 X
 XWWW: http://jamesbailie.com/munger.html
 X
 X--
 XJames Bailie <jimmy@jamesbailie.com>
 Xhttp://jamesbailie.com
 END-of-munger/pkg-descr
 echo x - munger/distinfo
 sed 's/^X//' >munger/distinfo << 'END-of-munger/distinfo'
 XMD5 (munger-4.39.tar.gz) = b9ad9dff19584a6eb91215ba5125103d
 XSIZE (munger-4.39.tar.gz) = 168756
 END-of-munger/distinfo
 echo x - munger/Makefile
 sed 's/^X//' >munger/Makefile << 'END-of-munger/Makefile'
 X# New ports collection makefile for:  munger
 X# Date created:                       Thu, 03 Jul 2003 20:05:06 EDT
 X# Whom:                               James Bailie (jimmy@jamesbailie.com)
 X#
 X# $FreeBSD$
 X#
 X
 XPORTNAME=munger
 XPORTVERSION=4.39
 XPORTREVISION=
 XCATEGORIES=lang
 XMASTER_SITES=http://jamesbailie.com/
 X
 XMAINTAINER=jimmy@jamesbailie.com
 XCOMMENT=Static lisp interpreter with text processing abilities
 X
 XPLIST_SUB=MUNGER_VERSION=${PORTVERSION}
 X
 XLIB_DEPENDS=expat.4:${PORTSDIR}/textproc/expat2
 X
 XMAN1=munger.1 httpf.1 xml2munger.1
 XMANCOMPRESSED=yes
 X
 X.if !defined(PACKAGE_BUILDING)
 XIS_INTERACTIVE=yes
 XOPTIONS=FCGI "include FastCGI interface" on \
 X		  SQL  "include SQLite interface"  on \
 X		  TERM "include character-I/O functions" on
 X.else
 XWITH_SQL=1
 XWITH_FCGI=1
 XWITH_TERM=1
 X.endif
 X
 X# Prevents SQLite from obnoxiously installing Tcl/Tk merely to build its docs.
 X
 XNOPORTDOCS=yes
 X
 X.include <bsd.port.pre.mk>
 X
 X.if defined(WITH_SQL)
 XLIB_DEPENDS+=sqlite.2:${PORTSDIR}/databases/sqlite
 XMAKE_ARGS+=-DWITH_SQL
 X.endif
 X
 X.if defined(WITH_FCGI)
 XLIB_DEPENDS+=fcgi.0:${PORTSDIR}/www/fcgi
 XMAKE_ARGS+=-DWITH_FCGI
 X.endif
 X
 X.if defined(WITH_TERM)
 XMAKE_ARGS+=-DWITH_TERM
 X.endif
 X
 Xpost-build:
 X.if defined(WITH_FCGI)
 X	@${CAT} ${PKGMESSAGE}
 X.endif
 X
 X.include <bsd.port.post.mk>
 END-of-munger/Makefile
 echo x - munger/pkg-message
 sed 's/^X//' >munger/pkg-message << 'END-of-munger/pkg-message'
 X******************************************************************
 X*                                                                *
 X*    To use the FastCGI interface with Apache one must also      *
 X*    install and configfure mod_fastcgi from                     *
 X*    ${PORTSDIR}/www/mod_fastcgi                                 *
 X*                                                                *
 X******************************************************************
 END-of-munger/pkg-message
 exit
Comment 1 Mark Linimon freebsd_committer freebsd_triage 2004-12-16 08:17:16 UTC
Responsible Changed
From-To: gnats-admin->freebsd-ports-bugs

Rescue this from 'pending', where it was languishing because of the 
missing tag in the Synopsis line. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=75075 

Adding to audit trail from misfiled PR ports/75161:

Date: Thu, 16 Dec 2004 12:26:49 -0500
Comment 2 Volker Stolz freebsd_committer freebsd_triage 2004-12-17 12:52:39 UTC
State Changed
From-To: open->feedback

Please provide updates in unified diff format! 


Comment 3 Volker Stolz freebsd_committer freebsd_triage 2004-12-17 12:52:39 UTC
Class Changed
From-To: sw-bug->maintainer-update

Fix class
Comment 4 Edwin Groothuis freebsd_committer freebsd_triage 2005-01-12 22:59:07 UTC
Responsible Changed
From-To: freebsd-ports-bugs->edwin

fetch: http://jamesbailie.com/munger-4.39.tar.gz: Host not found 
fetch: http://www.jamesbailie.com/munger-4.39.tar.gz: Not Found
Comment 5 Edwin Groothuis freebsd_committer freebsd_triage 2005-01-12 23:10:15 UTC
State Changed
From-To: feedback->closed

Commited 4.44 

- Next time please submit it in diff format (diff -u) 
- Next time please don't change master_sites :-) 
- Next time please don't remove old versions from your website 
- Next time please please make sure you have the latest version of expat :-) 

Committed, thanks!