Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B837284D2A for ; Fri, 1 Sep 2023 05:57:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id zg8hDZHFnoqv for ; Fri, 1 Sep 2023 05:57:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 319FA84C13 for ; Fri, 1 Sep 2023 05:57:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2535DFBDB; Fri, 1 Sep 2023 05:57:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1693547842225640" MIME-Version: 1.0 Date: Fri, 1 Sep 2023 05:57:22 +0000 From: "Paolo Vincenzo Olivo" Subject: CVS commit: pkgsrc/wm/fvwm-themes To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: vins@netbsd.org X-Mailer: log_accum Message-Id: <20230901055722.2535DFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1693547842225640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: vins Date: Fri Sep 1 05:57:22 UTC 2023 Modified Files: pkgsrc/wm/fvwm-themes: Makefile Log Message: wm/fvwm-themes: fix PKGREVISION + minor changes * Clean old PKGREVISION left from last update. * Add missing dependency on libXpm. * Add missing used tools in USE_TOOLS. * Replace perl path in additional script. * Address final pkglint warning. * Bump revision to 1. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 pkgsrc/wm/fvwm-themes/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1693547842225640 Content-Disposition: inline Content-Length: 1825 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/wm/fvwm-themes/Makefile diff -u pkgsrc/wm/fvwm-themes/Makefile:1.24 pkgsrc/wm/fvwm-themes/Makefile:1.25 --- pkgsrc/wm/fvwm-themes/Makefile:1.24 Thu Aug 31 21:18:10 2023 +++ pkgsrc/wm/fvwm-themes/Makefile Fri Sep 1 05:57:21 2023 @@ -1,32 +1,35 @@ -# $NetBSD: Makefile,v 1.24 2023/08/31 21:18:10 vins Exp $ +# $NetBSD: Makefile,v 1.25 2023/09/01 05:57:21 vins Exp $ # DISTNAME= fvwm-themes-${THEM_VER} -PKGREVISION= 18 +PKGREVISION= 1 CATEGORIES= wm MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fvwm-themes/} EXTRACT_SUFX= .tar.bz2 DISTFILES+= ${DISTNAME}${EXTRACT_SUFX} \ fvwm-themes-extra-${THEM_VER}.tar.bz2 -LICENSE= gnu-gpl-v2 MAINTAINER= gendalia@NetBSD.org HOMEPAGE= http://fvwm-themes.sourceforge.net/ COMMENT= Configuration framework for fvwm2 with samples +LICENSE= gnu-gpl-v2 DEPENDS+= {fvwm,fvwm2}>=2.4.8:../../wm/fvwm +DEPENDS+= ImageMagick-[0-9]*:../../graphics/ImageMagick THEM_VER= 0.7.0 EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} USE_TOOLS+= aclocal automake autoconf autoreconf -USE_TOOLS+= perl:run +USE_TOOLS+= bsdtar bzip2 gzip lex perl:run yacc GNU_CONFIGURE= YES +CONFIGURE_ENV+= PERL=${PERL5} CONFIGURE_ARGS+= --with-ft-datadir=${PREFIX}/share/fvwm2 CONFIGURE_ARGS+= --x-includes=${X11BASE}/include --x-libraries=${X11BASE}/lib REPLACE_PERL+= themes/cde/modules/create-buttonbar-config +REPLACE_PERL+= themes/redmondxp/modules/FvwmThemesPanelManager #### 1 #### SUBST_CLASSES+= Makefile @@ -92,5 +95,5 @@ post-install: ${FIND} ${DESTDIR}${PREFIX}/share/fvwm2/sounds -name \*au -exec ${CHMOD} -x,g-w '{}' \; ${FIND} ${DESTDIR}${PREFIX}/share/fvwm2/sounds -type d -exec ${CHMOD} g-w '{}' \; -DEPENDS+= ImageMagick-[0-9]*:../../graphics/ImageMagick +.include "../../x11/libXpm/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1693547842225640--