Date: 15 Apr 1999 14:23:59 -0000 From: Tom Hukins <tom@eborcom.com> To: FreeBSD-gnats-submit@freebsd.org Subject: ports/11154: Fix Port: news/dejasearch Message-ID: <19990415142359.11934.qmail@eborcom.com>
next in thread | raw e-mail | index | archive | help
>Number: 11154 >Category: ports >Synopsis: Fix Port: news/dejasearch >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: Thu Apr 15 07:50:00 PDT 1999 >Closed-Date: >Last-Modified: >Originator: Tom Hukins >Release: FreeBSD 2.2.8-STABLE i386 >Organization: eBORcOM >Environment: >Description: The dejasearch port will not run without p5-libwww installed. However, dejasearch's Makefile does not list any dependencies. The patch below fixes this, as well as making a minor change if NOPORTDOCS is defined. No files have been removed. pkg/PLIST.nodocs has been added. >How-To-Repeat: # cd /usr/ports/news/dejasearch # make all # grep LWP work/dejasearch/dejasearch >Fix: diff -ruN dejasearch.old/Makefile dejasearch/Makefile --- dejasearch.old/Makefile Sun Mar 14 12:33:56 1999 +++ dejasearch/Makefile Thu Apr 15 15:10:20 1999 @@ -14,7 +14,13 @@ MAINTAINER= kris@FreeBSD.ORG -WRKSRC= ${WRKDIR}/dejasearch/ +RUN_DEPENDS= ${PREFIX}/lib/perl5/site_perl/${PERL_VER}/LWP/UserAgent.pm:${PORTSDIR}/www/p5-libwww + +.ifdef NOPORTDOCS +PLIST= ${PKGDIR}/PLIST.nodocs +.endif + +WRKSRC= ${WRKDIR}/dejasearch USE_PERL5= yes NO_BUILD= yes diff -ruN dejasearch.old/pkg/PLIST.nodocs dejasearch/pkg/PLIST.nodocs --- dejasearch.old/pkg/PLIST.nodocs Thu Jan 1 01:00:00 1970 +++ dejasearch/pkg/PLIST.nodocs Thu Apr 15 15:08:02 1999 @@ -0,0 +1 @@ +bin/dejasearch >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19990415142359.11934.qmail>