From tkato432@yahoo.com  Sat Jun  2 18:31:13 2012
Return-Path: <tkato432@yahoo.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 6D2AF1065670
	for <FreeBSD-gnats-submit@FreeBSD.org>; Sat,  2 Jun 2012 18:31:04 +0000 (UTC)
	(envelope-from tkato432@yahoo.com)
Received: from msa102lp.auone-net.jp (msa102lp.auone-net.jp [222.3.140.165])
	by mx1.freebsd.org (Postfix) with ESMTP id 1A5748FC19
	for <FreeBSD-gnats-submit@FreeBSD.org>; Sat,  2 Jun 2012 18:31:04 +0000 (UTC)
Received: from msa102lp.auone-net.jp (MSA102lp [172.27.12.180])
	by msa102lp.auone-net.jp (au one net msa) with ESMTP id 704F978258
	for <FreeBSD-gnats-submit@FreeBSD.org>; Sun,  3 Jun 2012 03:31:03 +0900 (JST)
Received: from localhost.localdomain (ZT037195.ppp.dion.ne.jp [59.128.37.195])
	by msa102lp.auone-net.jp (au one net msa) with ESMTP id 977044AC036
	for <FreeBSD-gnats-submit@FreeBSD.org>; Sun,  3 Jun 2012 03:30:55 +0900 (JST)
Message-Id: <20120603032146.e58f0379.tkato432@yahoo.com>
Date: Sun, 3 Jun 2012 03:21:46 +0900
From: KATO Tsuguru <tkato432@yahoo.com>
To: FreeBSD-gnats-submit@FreeBSD.org
Subject: deskutils/recoll: Update to version 1.17.3

>Number:         168597
>Category:       ports
>Synopsis:       deskutils/recoll: Update to version 1.17.3
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    sylvio
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jun 02 18:40:16 UTC 2012
>Closed-Date:    Tue Jun 05 20:48:34 UTC 2012
>Last-Modified:  Tue Jun  5 20:50:17 UTC 2012
>Originator:     KATO Tsuguru
>Release:        FreeBSD 7.4-RELEASE-p5 i386
>Organization:
>Environment:
>Description:
- Update to version 1.17.3

>How-To-Repeat:
>Fix:

diff -urN /usr/ports/deskutils/recoll/Makefile deskutils/recoll/Makefile
--- /usr/ports/deskutils/recoll/Makefile	2012-06-01 14:17:12.000000000 +0900
+++ deskutils/recoll/Makefile	2012-06-02 04:25:33.000000000 +0900
@@ -6,8 +6,7 @@
 #
 
 PORTNAME=	recoll
-PORTVERSION=	1.17.2
-PORTREVISION=	1
+PORTVERSION=	1.17.3
 CATEGORIES=	deskutils
 MASTER_SITES=	http://www.lesbonscomptes.com/recoll/
 
@@ -19,10 +18,10 @@
 
 LIB_DEPENDS=	xapian.26:${PORTSDIR}/databases/xapian-core
 
-OPTIONS=	QT "Enable Qt-based GUI support" on \
-		ASPELL "Enable ASpell support" on \
-		PYTHON "Enable Python module support" on \
-		X11MON "Enable X11 session monitoring support" on
+OPTIONS_DEFINE=	QT4 ASPELL PYTHON X11MON
+OPTIONS_DEFAULT=QT4 ASPELL PYTHON X11MON
+ASPELL_DESC=	Enable ASpell support
+X11MON_DESC=	Enable X11 session monitoring support
 
 USE_ICONV=	yes
 USE_GMAKE=	yes
@@ -37,10 +36,7 @@
 
 .include <bsd.port.options.mk>
 
-.if defined(WITHOUT_QT)
-CONFIGURE_ARGS+=--disable-qtgui
-PLIST_SUB+=	QT="@comment "
-.else
+.if ${PORT_OPTIONS:MQT4}
 USE_QT_VER=	4
 QT_COMPONENTS=	webkit moc_build qmake_build rcc_build uic_build
 QT_NONSTANDARD=	yes
@@ -48,30 +44,33 @@
 INSTALLS_ICONS=	yes
 PLIST_SUB+=	QT=""
 MAN1+=		recoll.1
+.else
+CONFIGURE_ARGS+=--disable-qtgui
+PLIST_SUB+=	QT="@comment "
 .endif
 
-.if defined(WITHOUT_ASPELL)
-CONFIGURE_ARGS+=--without-aspell
-.else
+.if ${PORT_OPTIONS:MASPELL}
 LIB_DEPENDS+=	aspell.16:${PORTSDIR}/textproc/aspell
+.else
+CONFIGURE_ARGS+=--without-aspell
 .endif
 
-.if defined(WITHOUT_PYTHON)
-CONFIGURE_ARGS+=--disable-python-module
-PLIST_SUB+=	PYTHON="@comment "
-.else
+.if ${PORT_OPTIONS:MPYTHON}
 USE_PYTHON=	yes
 INSTALLS_EGGINFO=	yes
 PYDISTUTILS_EGGINFO=	Recoll-1.0-py${PYTHON_VER}.egg-info
 PLIST_SUB+=	PYTHON=""
+.else
+CONFIGURE_ARGS+=--disable-python-module
+PLIST_SUB+=	PYTHON="@comment "
 .endif
 
-.if defined(WITHOUT_X11MON)
-CONFIGURE_ARGS+=--disable-x11mon
-.else
+.if ${PORT_OPTIONS:MX11MON}
 USE_XORG+=	ice sm x11
 USE_FAM=	yes
 CONFIGURE_ARGS+=--with-fam
+.else
+CONFIGURE_ARGS+=--disable-x11mon
 .endif
 
 post-patch:
@@ -80,14 +79,12 @@
 	@${REINPLACE_CMD} -e \
 		's|/usr/local/lib|${LOCALBASE}/lib|' ${WRKSRC}/configure
 	@${REINPLACE_CMD} -e \
-		'/--prefix=/s|^|@NOPYTHON@|' ${WRKSRC}/recollinstall.in
-	@${REINPLACE_CMD} -e \
 		's|= -g -O2|=|' ${WRKSRC}/mk/localdefs.in
 	@${REINPLACE_CMD} -e \
 		's|-pthread|${PTHREAD_LIBS}|' ${WRKSRC}/mk/${OPSYS}
 
 post-configure:
-.if !defined(WITHOUT_QT)
+.if ${PORT_OPTIONS:MQT4}
 	@(cd ${WRKSRC}/qtgui && ${SETENV} ${MAKE_ENV} ${QMAKE} ${QMAKEFLAGS})
 .endif
 
diff -urN /usr/ports/deskutils/recoll/distinfo deskutils/recoll/distinfo
--- /usr/ports/deskutils/recoll/distinfo	2012-05-21 12:10:09.000000000 +0900
+++ deskutils/recoll/distinfo	2012-05-26 03:28:00.000000000 +0900
@@ -1,2 +1,2 @@
-SHA256 (recoll-1.17.2.tar.gz) = 8fa0419ca78bdeca4a18e36d252a9e8254112653499c47b407b178c9f2e58a2a
-SIZE (recoll-1.17.2.tar.gz) = 1757337
+SHA256 (recoll-1.17.3.tar.gz) = 7778f80546e6b10ca45bfb7f8bb0876ccf3987dd4e98c5003ff923bd8b5acb1c
+SIZE (recoll-1.17.3.tar.gz) = 1757278
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->sylvio 
Responsible-Changed-By: sylvio 
Responsible-Changed-When: Sat Jun 2 22:04:26 UTC 2012 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=168597 
State-Changed-From-To: open->closed 
State-Changed-By: sylvio 
State-Changed-When: Tue Jun 5 20:48:33 UTC 2012 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/168597: commit references a PR
Date: Tue,  5 Jun 2012 20:48:41 +0000 (UTC)

 sylvio      2012-06-05 20:48:28 UTC
 
   FreeBSD ports repository
 
   Modified files:
     deskutils/recoll     Makefile distinfo 
   Log:
   - Update to version 1.17.3
   
   PR:             ports/168597
   Submitted by:   KATO Tsuguru <tkato432@yahoo.com>
   
   Revision  Changes    Path
   1.56      +20 -23    ports/deskutils/recoll/Makefile
   1.31      +2 -2      ports/deskutils/recoll/distinfo
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
