From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Mar 19 18:40:10 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A2F9A773 for ; Wed, 19 Mar 2014 18:40:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8366EC91 for ; Wed, 19 Mar 2014 18:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s2JIeAd5002708 for ; Wed, 19 Mar 2014 18:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s2JIeAmA002707; Wed, 19 Mar 2014 18:40:10 GMT (envelope-from gnats) Resent-Date: Wed, 19 Mar 2014 18:40:10 GMT Resent-Message-Id: <201403191840.s2JIeAmA002707@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, KATO Tsuguru Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 72C714B7 for ; Wed, 19 Mar 2014 18:30:59 +0000 (UTC) Received: from omta01.auone-net.jp (mail-or0-f67.auone-net.jp [106.187.230.67]) by mx1.freebsd.org (Postfix) with ESMTP id 4660BBF0 for ; Wed, 19 Mar 2014 18:30:59 +0000 (UTC) Received: from coppermine.my.domain (ZT028161.ppp.dion.ne.jp [59.128.28.161]) by omta01.auone-net.jp (au one net mail) with ESMTP id 88056980004 for ; Thu, 20 Mar 2014 03:30:56 +0900 (JST) Message-Id: <20140320032556.dd459241a8d86a3f1865d844@yahoo.com> Date: Thu, 20 Mar 2014 03:25:56 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/187768: mail/libsieve: Support USE_GITHUB X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2014 18:40:10 -0000 >Number: 187768 >Category: ports >Synopsis: mail/libsieve: Support USE_GITHUB >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 Mar 19 18:40:10 UTC 2014 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 8.4-RELEASE-p7 i386 >Organization: >Environment: >Description: - Support USE_GITHUB - Support pathfix USES macro - Fix pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/mail/libsieve/Makefile mail/libsieve/Makefile --- /usr/ports/mail/libsieve/Makefile 2014-02-11 05:02:47.000000000 +0900 +++ mail/libsieve/Makefile 2014-03-20 00:00:00.000000000 +0900 @@ -3,17 +3,22 @@ PORTNAME= libsieve PORTVERSION= 2.3.1 +PORTREVISION= 1 CATEGORIES= mail -MASTER_SITES= http://cloud.github.com/downloads/sodabrew/libsieve/ +MASTER_SITES= GHC MAINTAINER= ports@FreeBSD.org COMMENT= Library for parsing, sorting, and filtering mail -LICENSE=LGPL21 +LICENSE= LGPL21 +WRKSRC= ${WRKDIR}/${DISTNAME} + +USE_GITHUB= yes +GH_ACCOUNT= sodabrew + +USES= bison gmake pathfix GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--prefix=${PREFIX} -USES= bison gmake USE_LDCONFIG= yes .include diff -urN /usr/ports/mail/libsieve/pkg-descr mail/libsieve/pkg-descr --- /usr/ports/mail/libsieve/pkg-descr 2014-01-23 03:21:45.000000000 +0900 +++ mail/libsieve/pkg-descr 2014-03-20 00:00:00.000000000 +0900 @@ -1,8 +1,8 @@ -libSieve provides a library to interpret Sieve scripts, and to execute those -scripts over a given set of messages. The return codes from the libSieve -functions let your program know how to handle the message, and then it's up to -you to make it so. libSieve makes no attempt to have knowledge of how SMTP, -IMAP, or anything else work; just how to parse and deal with a buffer full of -emails. The rest is up to you! +libSieve provides a library to interpret Sieve scripts, and to execute +those scripts over a given set of messages. The return codes from the +libSieve functions let your program know how to handle the message, and +then it's up to you to make it so. libSieve makes no attempt to have +knowledge of how SMTP, IMAP, or anything else work; just how to parse +and deal with a buffer full of emails. The rest is up to you! WWW: http://sodabrew.com/libsieve/ diff -urN /usr/ports/mail/libsieve/pkg-plist mail/libsieve/pkg-plist --- /usr/ports/mail/libsieve/pkg-plist 2014-01-23 03:21:45.000000000 +0900 +++ mail/libsieve/pkg-plist 2014-03-20 00:00:00.000000000 +0900 @@ -3,10 +3,4 @@ lib/libsieve.la lib/libsieve.so lib/libsieve.so.1 -lib/pkgconfig/libsieve.pc -share/licenses/libsieve-2.3.1/LGPL21 -share/licenses/libsieve-2.3.1/LICENSE -share/licenses/libsieve-2.3.1/catalog.mk -@dirrm share/licenses/libsieve-2.3.1 -@dirrmtry share/licenses -@dirrmtry lib/pkgconfig +libdata/pkgconfig/libsieve.pc >Release-Note: >Audit-Trail: >Unformatted: