From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 22 20:20:02 2013 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]) by hub.freebsd.org (Postfix) with ESMTP id 79032A0C for ; Fri, 22 Mar 2013 20:20:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 5C06B345 for ; Fri, 22 Mar 2013 20:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2MKK2VJ042265 for ; Fri, 22 Mar 2013 20:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2MKK2vN042264; Fri, 22 Mar 2013 20:20:02 GMT (envelope-from gnats) Resent-Date: Fri, 22 Mar 2013 20:20:02 GMT Resent-Message-Id: <201303222020.r2MKK2vN042264@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, nemysis Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 0804B9AF for ; Fri, 22 Mar 2013 20:18:37 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mout.gmx.net (mout.gmx.net [212.227.17.21]) by mx1.freebsd.org (Postfix) with ESMTP id 3F0D4328 for ; Fri, 22 Mar 2013 20:18:35 +0000 (UTC) Received: from mailout-de.gmx.net ([10.1.76.31]) by mrigmx.server.lan (mrigmx002) with ESMTP (Nemesis) id 0MJHUa-1UHTij2DWc-002otF for ; Fri, 22 Mar 2013 21:18:19 +0100 Received: (qmail invoked by alias); 22 Mar 2013 20:18:18 -0000 Received: from 38-21.104-92.cust.bluewin.ch (EHLO something.email.com) [92.104.21.38] by mail.gmx.net (mp031) with SMTP; 22 Mar 2013 21:18:18 +0100 Received: by something.email.com (sSMTP sendmail emulation); Fri, 22 Mar 2013 21:18:17 +0100 Message-Id: <20130322201837.0804B9AF@hub.freebsd.org> Date: Fri, 22 Mar 2013 21:18:17 +0100 From: nemysis To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/177284: [PATCH] graphics/libboard: [SUMMARIZE CHANGES] 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: Fri, 22 Mar 2013 20:20:02 -0000 >Number: 177284 >Category: ports >Synopsis: [PATCH] graphics/libboard: [SUMMARIZE CHANGES] >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: Fri Mar 22 20:20:02 UTC 2013 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.1-RELEASE amd64 >Organization: >Environment: System: FreeBSD FreeBSD_Ports 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 >Description: - Convert to OptionsNG - Makefile tweaks - EXAMPLES removed from pkg-plist Port maintainer (thierry@FreeBSD.org) is cc'd. Generated and tested manually, tested with port test, sent with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- libboard-0.9.0_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/graphics/libboard/Makefile ./Makefile --- /usr/ports/graphics/libboard/Makefile 2013-01-14 17:57:03.000000000 +0100 +++ ./Makefile 2013-03-22 20:58:38.000000000 +0100 @@ -1,9 +1,5 @@ -# New ports collection makefile for: libboard -# Date created: Fri 24 aug 2007 -# Whom: thierry@pompo.net -# +# Created by: thierry@pompo.net # $FreeBSD: head/graphics/libboard/Makefile 300896 2012-07-14 13:54:48Z beat $ -# PORTNAME= libboard DISTVERSION= 0.9.0 @@ -12,7 +8,7 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} MAINTAINER= thierry@FreeBSD.org -COMMENT= A vector graphics C++ library +COMMENT= Vector graphics C++ library LICENSE= LGPL3 @@ -28,6 +24,7 @@ WRKSRC= ${WRKDIR}/${DISTNAME:C/-.$//} PORTDOCS= * +PORTEXAMPLES= * .include @@ -41,16 +38,16 @@ post-install: ${MV} ${PREFIX}/lib/libboard.so ${PREFIX}/lib/libboard.so.0 ${LN} -sf ${PREFIX}/lib/libboard.so.0 ${PREFIX}/lib/libboard.so -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - cd ${WRKSRC}/doc/html/ && ${COPYTREE_SHARE} . ${DOCSDIR}/ - ${RM} -rf ${DOCSDIR}/.svn +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${DOCSDIR} + (cd ${WRKSRC}/doc/html/ && ${COPYTREE_SHARE} . ${DOCSDIR}) + @${RM} -rf ${DOCSDIR}/.svn .endif -.if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR} - cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR}/ - cd ${WRKSRC}/bin/ && ${COPYTREE_BIN} . ${EXAMPLESDIR}/ - ${RM} -rf ${EXAMPLESDIR}/.svn +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${EXAMPLESDIR} + (cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${EXAMPLESDIR}) + (cd ${WRKSRC}/bin/ && ${COPYTREE_BIN} . ${EXAMPLESDIR}) + @${RM} -rf ${EXAMPLESDIR}/.svn .endif regression-test: diff -ruN --exclude=CVS /usr/ports/graphics/libboard/pkg-descr ./pkg-descr --- /usr/ports/graphics/libboard/pkg-descr 2013-01-14 17:57:03.000000000 +0100 +++ ./pkg-descr 2013-03-22 21:02:25.000000000 +0100 @@ -1,7 +1,7 @@ The board library allows simple drawings in: - * Encapsulated Postcript files (EPS); - * XFig files (FIG); - * Scalable Vector Graphics files (SVG). + * Encapsulated Postcript files (EPS); + * XFig files (FIG); + * Scalable Vector Graphics files (SVG). WWW: http://www.greyc.ensicaen.fr/~seb/board/ diff -ruN --exclude=CVS /usr/ports/graphics/libboard/pkg-plist ./pkg-plist --- /usr/ports/graphics/libboard/pkg-plist 2013-01-14 17:57:03.000000000 +0100 +++ ./pkg-plist 2013-03-22 20:24:54.000000000 +0100 @@ -15,35 +15,4 @@ lib/libboard.a lib/libboard.so lib/libboard.so.0 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arithmetic -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arithmetic.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arrows -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/arrows.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/clipping -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/clipping.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ellipse -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ellipse.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example1 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example1.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example2 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example2.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example3 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example3.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example4 -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example4.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flag -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/flag.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/graph.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/koch -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/koch.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/logo -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/logo.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruler -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ruler.cpp -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scale_ellipse -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/scale_ellipse.cpp -%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%% @dirrm include/board --- libboard-0.9.0_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: