Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Dec 2002 23:30:03 -0800 (PST)
From:      "Daniel O'Connor" <doconnor@gsoft.com.au>
To:        freebsd-ports@FreeBSD.org
Subject:   Re: ports/45952: [patch] fix fetch and update version for www/swish-e
Message-ID:  <200212090730.gB97U39f071643@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/45952; it has been noted by GNATS.

From: "Daniel O'Connor" <doconnor@gsoft.com.au>
To: freebsd-gnats-submit@FreeBSD.org, linimon@lonesome.com
Cc:  
Subject: Re: ports/45952: [patch] fix fetch and update version for
	www/swish-e
Date: 09 Dec 2002 17:50:43 +1030

 --=-/WL41zJyjHvwuqiBPtgt
 Content-Type: text/plain
 Content-Transfer-Encoding: 7bit
 
 I have a more comprehensive patch but I forgot to submit it :-/
 http://www.gsoft.com.au/~doconnor/swish-e-2.2.2.diff
 
 -- 
 Daniel O'Connor software and network engineer
 for Genesis Software - http://www.gsoft.com.au
 "The nice thing about standards is that there
 are so many of them to choose from."
   -- Andrew Tanenbaum
 GPG Fingerprint - 9A8C 569F 685A D928 5140  AE4B 319B 41F4 5D17 FDD5
 
 --=-/WL41zJyjHvwuqiBPtgt
 Content-Disposition: attachment; filename=swish-e-2.2.2.diff
 Content-Type: text/x-patch; name=swish-e-2.2.2.diff; charset=ISO-8859-1
 Content-Transfer-Encoding: 7bit
 
 diff -ur /usr/ports/www/swish-e/Makefile swish-e/Makefile
 --- /usr/ports/www/swish-e/Makefile	Thu Jun 20 17:30:02 2002
 +++ swish-e/Makefile	Mon Dec  9 17:43:02 2002
 @@ -6,22 +6,55 @@
  #
  
  PORTNAME=	swish-e
 -PORTVERSION=	1.3.2
 +PORTVERSION=	2.2.2
  CATEGORIES=	www textproc
  MASTER_SITES=	http://swish-e.org/Download/
 -DISTNAME=	swish-efiles.1.3.2
  
  MAINTAINER=	doconnor@gsoft.com.au
  
 -WRKSRC=		${WRKDIR}/src
  USE_GMAKE=	yes
 +GNU_CONFIGURE=	yes
 +
 +LIB_DEPENDS=	xml2:${PORTSDIR}/textproc/libxml2
  
  do-install:
 -	$(INSTALL_PROGRAM) ${WRKSRC}/swish-e ${PREFIX}/bin
 +	$(INSTALL_PROGRAM) ${WRKSRC}/src/swish-e ${PREFIX}/bin
  	$(MKDIR) -p $(PREFIX)/share/examples/swish-e
 -	$(INSTALL_DATA) ${WRKSRC}/user.config ${PREFIX}/share/examples/swish-e
 -	$(INSTALL_DATA) ${WRKSRC}/test.html ${PREFIX}/share/examples/swish-e
 -	$(INSTALL_DATA) ${WRKSRC}/swishspider ${PREFIX}/share/examples/swish-e
 -	$(INSTALL_DATA) ${WRKSRC}/README-SWISH-E ${PREFIX}/share/examples/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/README ${PREFIX}/share/examples/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/conf/example1.config ${PREFIX}/share/examples/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/conf/example2.config ${PREFIX}/share/examples/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/conf/example3.config ${PREFIX}/share/examples/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/conf/example4.config ${PREFIX}/share/examples/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/conf/example5.config ${PREFIX}/share/examples/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/conf/example6.config ${PREFIX}/share/examples/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/conf/example7.config ${PREFIX}/share/examples/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/conf/example8.config ${PREFIX}/share/examples/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/conf/example9.pl ${PREFIX}/share/examples/swish-e
 +	$(MKDIR) -p $(PREFIX)/share/examples/swish-e/stopwords
 +	$(INSTALL_DATA) ${WRKSRC}/conf/stopwords/dutch.txt ${PREFIX}/share/examples/swish-e/stopwords
 +	$(INSTALL_DATA) ${WRKSRC}/conf/stopwords/english.txt ${PREFIX}/share/examples/swish-e/stopwords
 +	$(INSTALL_DATA) ${WRKSRC}/conf/stopwords/german.txt ${PREFIX}/share/examples/swish-e/stopwords
 +	$(INSTALL_DATA) ${WRKSRC}/conf/stopwords/spanish.txt ${PREFIX}/share/examples/swish-e/stopwords
 +	$(MKDIR) -p $(PREFIX)/share/doc/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/html/CHANGES.html ${PREFIX}/share/doc/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/html/INSTALL.html ${PREFIX}/share/doc/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/html/README.html ${PREFIX}/share/doc/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/html/SWISH-3.0.html ${PREFIX}/share/doc/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/html/SWISH-BUGS.html ${PREFIX}/share/doc/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/html/SWISH-CONFIG.html ${PREFIX}/share/doc/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/html/SWISH-FAQ.html ${PREFIX}/share/doc/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/html/SWISH-LIBRARY.html ${PREFIX}/share/doc/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/html/SWISH-PERL.html ${PREFIX}/share/doc/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/html/SWISH-RUN.html ${PREFIX}/share/doc/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/html/SWISH-SEARCH.html ${PREFIX}/share/doc/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/html/index.html ${PREFIX}/share/doc/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/html/index_long.html ${PREFIX}/share/doc/swish-e
 +	$(INSTALL_DATA) ${WRKSRC}/html/style.css ${PREFIX}/share/doc/swish-e
 +	$(MKDIR) -p $(PREFIX)/share/doc/swish-e/images
 +	$(INSTALL_DATA) ${WRKSRC}/html/images/dotrule1.gif ${PREFIX}/share/doc/swish-e/images
 +	$(INSTALL_DATA) ${WRKSRC}/html/images/swish.gif ${PREFIX}/share/doc/swish-e/images
 +	$(INSTALL_DATA) ${WRKSRC}/html/images/swish2.gif ${PREFIX}/share/doc/swish-e/images
 +	$(INSTALL_DATA) ${WRKSRC}/html/images/swish2b.gif ${PREFIX}/share/doc/swish-e/images
 +	$(INSTALL_DATA) ${WRKSRC}/html/images/swishbanner1.gif ${PREFIX}/share/doc/swish-e/images
  
  .include <bsd.port.mk>
 diff -ur /usr/ports/www/swish-e/distinfo swish-e/distinfo
 --- /usr/ports/www/swish-e/distinfo	Thu Dec 16 12:57:27 1999
 +++ swish-e/distinfo	Mon Dec  9 17:47:47 2002
 @@ -1 +1 @@
 -MD5 (swish-efiles.1.3.2.tar.gz) = d718824165a4af150a47b072889a0f16
 +MD5 (swish-e-2.2.2.tar.gz) = 5a3ba1f5d980da2c2eb8059ae1cd7095
 Only in /usr/ports/www/swish-e/files: patch-aa
 Only in /usr/ports/www/swish-e/files: patch-ab
 diff -ur /usr/ports/www/swish-e/pkg-plist swish-e/pkg-plist
 --- /usr/ports/www/swish-e/pkg-plist	Sun Sep 24 12:38:21 2000
 +++ swish-e/pkg-plist	Fri Nov  8 10:13:08 2002
 @@ -1,6 +1,38 @@
 -share/examples/swish-e/user.config
 -share/examples/swish-e/test.html
 -share/examples/swish-e/swishspider
 -share/examples/swish-e/README-SWISH-E
 -bin/swish-e
 +share/doc/swish-e/CHANGES.html
 +share/doc/swish-e/INSTALL.html
 +share/doc/swish-e/README.html
 +share/doc/swish-e/SWISH-3.0.html
 +share/doc/swish-e/SWISH-BUGS.html
 +share/doc/swish-e/SWISH-CONFIG.html
 +share/doc/swish-e/SWISH-FAQ.html
 +share/doc/swish-e/SWISH-LIBRARY.html
 +share/doc/swish-e/SWISH-PERL.html
 +share/doc/swish-e/SWISH-RUN.html
 +share/doc/swish-e/SWISH-SEARCH.html
 +share/doc/swish-e/index.html
 +share/doc/swish-e/index_long.html
 +share/doc/swish-e/style.css
 +share/doc/swish-e/images/dotrule1.gif
 +share/doc/swish-e/images/swish.gif
 +share/doc/swish-e/images/swish2.gif
 +share/doc/swish-e/images/swish2b.gif
 +share/doc/swish-e/images/swishbanner1.gif
 +@dirrm share/doc/swish-e/images
 +@dirrm share/doc/swish-e
 +share/examples/swish-e/README
 +share/examples/swish-e/example1.config
 +share/examples/swish-e/example2.config
 +share/examples/swish-e/example3.config
 +share/examples/swish-e/example4.config
 +share/examples/swish-e/example5.config
 +share/examples/swish-e/example6.config
 +share/examples/swish-e/example7.config
 +share/examples/swish-e/example8.config
 +share/examples/swish-e/example9.pl
 +share/examples/swish-e/stopwords/dutch.txt
 +share/examples/swish-e/stopwords/english.txt
 +share/examples/swish-e/stopwords/german.txt
 +share/examples/swish-e/stopwords/spanish.txt
 +@dirrm share/examples/swish-e/stopwords
  @dirrm share/examples/swish-e
 +bin/swish-e
 
 --=-/WL41zJyjHvwuqiBPtgt--
 

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?200212090730.gB97U39f071643>