From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 7 04:40:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7F37980A for ; Sat, 7 Sep 2013 04:40:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) 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 5E37629E3 for ; Sat, 7 Sep 2013 04:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r874e0Gb037326 for ; Sat, 7 Sep 2013 04:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r874e0MZ037282; Sat, 7 Sep 2013 04:40:00 GMT (envelope-from gnats) Resent-Date: Sat, 7 Sep 2013 04:40:00 GMT Resent-Message-Id: <201309070440.r874e0MZ037282@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, Danilo Egêa Gondolfo 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 ESMTP id E67A07E1 for ; Sat, 7 Sep 2013 04:35:12 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from oldred.freebsd.org (oldred.freebsd.org [8.8.178.121]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B93FB29CC for ; Sat, 7 Sep 2013 04:35:12 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id r874ZCFP098355 for ; Sat, 7 Sep 2013 04:35:12 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id r874ZCWn098347; Sat, 7 Sep 2013 04:35:12 GMT (envelope-from nobody) Message-Id: <201309070435.r874ZCWn098347@oldred.freebsd.org> Date: Sat, 7 Sep 2013 04:35:12 GMT From: Danilo Egêa Gondolfo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/181903: editors/tea update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Sep 2013 04:40:00 -0000 >Number: 181903 >Category: ports >Synopsis: editors/tea update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Sep 07 04:40:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Danilo Egêa Gondolfo >Release: FreeBSD 9.2-RC3 >Organization: >Environment: FreeBSD mac 9.2-RC3 FreeBSD 9.2-RC3 #3 r254983: Tue Aug 27 23:55:24 BRT 2013 root@mac:/usr/obj/usr/src/sys/MAC amd64 >Description: Changes - Updated from 36.0.2 to 36.0.3 - Added DOCS option - Converted to new LIB_DEPENDS format Changelog: http://semiletov.org/tea/ >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 326568) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tea -PORTVERSION= 36.0.2 +PORTVERSION= 36.0.3 CATEGORIES= editors MASTER_SITES= http://semiletov.org/tea/dloads/ @@ -11,6 +11,7 @@ LICENSE= GPLv3 +OPTIONS_DEFINE= DOCS OPTIONS_RADIO= SPELL OPTIONS_RADIO_SPELL= ASPELL HUNSPELL OPTIONS_DEFAULT= ASPELL @@ -19,6 +20,7 @@ USE_QT4= gui moc_build qmake_build rcc_build PLIST_FILES= bin/tea share/pixmaps/tea_icon_v2.png +PORTDOCS= * DESKTOP_ENTRIES="TEA" "" "${PREFIX}/share/pixmaps/tea_icon_v2.png" \ "${PORTNAME}" "" "" @@ -26,7 +28,7 @@ .include .if ${PORT_OPTIONS:MASPELL} -LIB_DEPENDS+= aspell:${PORTSDIR}/textproc/aspell +LIB_DEPENDS+= libaspell.so:${PORTSDIR}/textproc/aspell QMAKEFLAGS+= USE_ASPELL=true .else QMAKEFLAGS+= USE_ASPELL=false @@ -33,7 +35,7 @@ .endif .if ${PORT_OPTIONS:MHUNSPELL} -LIB_DEPENDS+= hunspell:${PORTSDIR}/textproc/hunspell +LIB_DEPENDS+= libhunspell-1.3.so:${PORTSDIR}/textproc/hunspell QMAKEFLAGS+= USE_HUNSPELL=true .else QMAKEFLAGS+= USE_HUNSPELL=false @@ -53,5 +55,9 @@ && ${INSTALL_PROGRAM} tea ${PREFIX}/bin) (cd ${WRKSRC}/icons \ && ${INSTALL_DATA} tea_icon_v2.png ${PREFIX}/share/pixmaps) +.if ${PORT_OPTIONS:MDOCS} + (cd ${WRKSRC}/manuals \ + && ${COPYTREE_SHARE} . ${DOCSDIR}) +.endif .include Index: distinfo =================================================================== --- distinfo (revision 326568) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (tea-36.0.2.tar.bz2) = 6541b645451de3f6eefce58b55a302224b925bdbdb9efcfa1491bcf867baad6f -SIZE (tea-36.0.2.tar.bz2) = 315046 +SHA256 (tea-36.0.3.tar.bz2) = 402152bfa3ea155833784c19ca677fb2983c136b7a683a15b78af1d0b63d4658 +SIZE (tea-36.0.3.tar.bz2) = 314850 >Release-Note: >Audit-Trail: >Unformatted: