Date: Fri, 21 May 2021 11:36:06 GMT From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 93715fdbe16f - main - graphics/goocanvas: the port had been improved (+) Message-ID: <202105211136.14LBa6RL044747@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by danfe: URL: https://cgit.FreeBSD.org/ports/commit/?id=93715fdbe16f18738c781d0ed73ce96a09fae239 commit 93715fdbe16f18738c781d0ed73ce96a09fae239 Author: Alexey Dokuchaev <danfe@FreeBSD.org> AuthorDate: 2021-05-21 11:30:42 +0000 Commit: Alexey Dokuchaev <danfe@FreeBSD.org> CommitDate: 2021-05-21 11:33:54 +0000 graphics/goocanvas: the port had been improved (+) - Define LICENSE (LGPL20) - Do not manually set CPPFLAGS and LDFLAGS, USES+=localbase does the job nicely and is only needed in the NLS case anyways - Convert to option helpers and INSTALL_TARGET=install-strip - Fix documentation path (/usr/local/share/doc/goocanvas/goocanvas -> /usr/local/share/doc/goocanvas) --- graphics/goocanvas/Makefile | 30 ++++++++++-------------------- 1 file changed, 10 insertions(+), 20 deletions(-) diff --git a/graphics/goocanvas/Makefile b/graphics/goocanvas/Makefile index 5e57bc7066fa..6d1a87fa89ef 100644 --- a/graphics/goocanvas/Makefile +++ b/graphics/goocanvas/Makefile @@ -1,5 +1,4 @@ # Created by: Michael Johnson <ahze@FreeBSD.org> -# $MCom: ports/trunk/graphics/goocanvas/Makefile 17268 2013-04-01 05:13:11Z marcus $ PORTNAME= goocanvas PORTVERSION= 1.0.0 @@ -10,6 +9,8 @@ MASTER_SITES= GNOME MAINTAINER= kwm@FreeBSD.org COMMENT= Canvas widget for GTK+ +LICENSE= LGPL20 + PORTSCOUT= ignore:1 LIB_DEPENDS= libfreetype.so:print/freetype2 \ @@ -19,35 +20,24 @@ USES= gnome libtool pathfix pkgconfig tar:bzip2 USE_GNOME= cairo gdkpixbuf2 gtk20 GNU_CONFIGURE= yes USE_LDCONFIG= yes - -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +INSTALL_TARGET= install-strip LIBS= -lm PORTDOCS= * OPTIONS_DEFINE= DOCS NLS +OPTIONS_SUB= yes -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MNLS} -USES+= gettext -PLIST_SUB+= NLS="" -.else -PLIST_SUB+= NLS="@comment " -.endif +NLS_USES= gettext localbase post-patch: - @${REINPLACE_CMD} -e 's|$${datadir}/gtk-doc/html|${DOCSDIR}|' \ + @${REINPLACE_CMD} -e 's|$${datadir}/gtk-doc/html|${DOCSDIR:H}|' \ ${WRKSRC}/configure -.if ! ${PORT_OPTIONS:MDOCS} + +post-patch-DOCS-off: @${REINPLACE_CMD} -e '/^SUBDIRS/s|docs||g' ${WRKSRC}/Makefile.in -.endif -.if ! ${PORT_OPTIONS:MNLS} - @${REINPLACE_CMD} -e '/^SUBDIRS/s|po||g' ${WRKSRC}/Makefile.in -.endif -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgoocanvas.so.* +post-patch-NLS-off: + @${REINPLACE_CMD} -e '/^SUBDIRS/s|po||g' ${WRKSRC}/Makefile.in .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202105211136.14LBa6RL044747>