From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Feb 28 23:58:51 2015 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 41E2E4D1 for ; Sat, 28 Feb 2015 23:58:51 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 22EDDBF5 for ; Sat, 28 Feb 2015 23:58:51 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1SNwpu1033380 for ; Sat, 28 Feb 2015 23:58:51 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 197786] [PATCH] math/pspp: Bump PORTREVISION, take maintainership Date: Sat, 28 Feb 2015 23:58:51 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jbeich@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc flagtypes.name attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 28 Feb 2015 23:58:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D197786 Jan Beich changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |cpm@fbsd.es Attachment #153632| |maintainer-approval?(cpm@fb Flags| |sd.es) --- Comment #5 from Jan Beich --- Created attachment 153632 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D153632&action= =3Dedit alternative version Maybe also install Emacs mode for syntax highlightling and facilitating indentation/commenting in .sps files. >+OPTIONS_DEFAULT=3D DOCS NLS Already there, see Mk/bsd.options.mk. >+post-install: >+.for f in libpspp libpspp-core >+ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/${f}-${PORTVERSION}.so >+.endfor >+ >+.if ${PORT_OPTIONS:MGUI} >+ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/glade3/modules/libglade-psppire.so= .0.0.0 Why? install-strip is enough or you can simplify the following GUI_INSTALL_TARGET=3D install-strip ... GUI_INSTALL_TARGET_OFF=3D install-strip into INSTALL_TARGET=3D install-strip GUI_INSTALL_TARGET=3D ... > +DOCS=3D ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS ONEWS \ > + README THANKS TODO > + [...] > + ${MKDIR} ${STAGEDIR}${DOCSDIR} > + cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR} [...] > +%%PORTDOCS%%%%DOCSDIR%%/ABOUT-NLS > +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS > +%%PORTDOCS%%%%DOCSDIR%%/COPYING > +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog > +%%PORTDOCS%%%%DOCSDIR%%/INSTALL > +%%PORTDOCS%%%%DOCSDIR%%/NEWS > +%%PORTDOCS%%%%DOCSDIR%%/ONEWS > +%%PORTDOCS%%%%DOCSDIR%%/README > +%%PORTDOCS%%%%DOCSDIR%%/THANKS > +%%PORTDOCS%%%%DOCSDIR%%/TODO Unless you want to keep everything in one place at the expense of listing installed files several times the above can be simplified to: PORTDOCS=3D AUTHORS ChangeLog NEWS ONEWS README THANKS TODO (cd ${WRKSRC} && ${COPYTREE_SHARE} \ "${PORTDOCS}" ${STAGEDIR}${DOCSDIR}) ABOUT-NLS is generic help-file from gettext. COPYING is redundant because LICENSE=3DGPLv3 already installs /usr/ports/Templates/Licenses/GPLv3. INSTALL is pointless for people using the FreeBSD port/package and not trying to figure out how to compile pspp themselves. --=20 You are receiving this mail because: You are the assignee for the bug.=