Received: by mail.netbsd.org (Postfix, from userid 605) id 4C5B984DF9; Sun, 22 Mar 2020 18:28:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C8A1C84D6C for ; Sun, 22 Mar 2020 18:28:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id RGmw9KP6_rub for ; Sun, 22 Mar 2020 18:28:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5011784CF7 for ; Sun, 22 Mar 2020 18:28:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 49E34FB27; Sun, 22 Mar 2020 18:28:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158490169576770" MIME-Version: 1.0 Date: Sun, 22 Mar 2020 18:28:15 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/mail/metamail To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200322182815.49E34FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_158490169576770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sun Mar 22 18:28:15 UTC 2020 Modified Files: pkgsrc/mail/metamail: Makefile Log Message: mail/metamail: fix nonexistent files in REPLACE_CSH To generate a diff of this commit: cvs rdiff -u -r1.53 -r1.54 pkgsrc/mail/metamail/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158490169576770 Content-Disposition: inline Content-Length: 1928 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/metamail/Makefile diff -u pkgsrc/mail/metamail/Makefile:1.53 pkgsrc/mail/metamail/Makefile:1.54 --- pkgsrc/mail/metamail/Makefile:1.53 Wed Jul 4 13:40:23 2018 +++ pkgsrc/mail/metamail/Makefile Sun Mar 22 18:28:15 2020 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.53 2018/07/04 13:40:23 jperkin Exp $ +# $NetBSD: Makefile,v 1.54 2020/03/22 18:28:15 rillig Exp $ DISTNAME= mm2.7 PKGNAME= metamail-2.7 -PKGREVISION= 11 +PKGREVISION= 12 CATEGORIES= mail MASTER_SITES= http://ftp.funet.fi/pub/unix/mail/metamail/ MASTER_SITES+= ftp://ftp.research.telcordia.com/pub/nsb/ @@ -11,9 +11,9 @@ EXTRACT_SUFX= .tar.Z MAINTAINER= pkgsrc-users@NetBSD.org COMMENT= Implementation of MIME, the Multipurpose Internet Mail Extensions -CONFLICTS+= mm-2.7 +CONFLICTS+= mm-2.7{,nb*} -WRKSRC= ${WRKDIR}/${DISTNAME}/src +WRKSRC= ${WRKDIR}/${DISTNAME}/src CFLAGS.Linux+= -DLINUX CFLAGS.SunOS+= -DSYSV @@ -23,21 +23,17 @@ EGDIR= ${PREFIX}/share/examples/metamai CONF_FILES= ${EGDIR}/mailcap ${PKG_SYSCONFDIR}/mailcap USE_TOOLS+= bdftopcf csh:run -REPLACE_CSH= bin/audiocompose bin/audiosend bin/extcompose -REPLACE_CSH+= bin/getfilename bin/mailserver bin/mailto-hebrew -REPLACE_CSH+= bin/metasend bin/patch-metamail bin/showaudio -REPLACE_CSH+= bin/showexternal bin/shownonascii bin/showpartial -REPLACE_CSH+= bin/showpicture bin/sun-audio-file bin/sun-message.csh -REPLACE_CSH+= bin/sun-to-mime -REPLACE_CSH+= fonts/Xmailto-hebrew fonts/Xshownonascii +REPLACE_CSH= bin/* fonts/* INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man4 ${EGDIR} -SUBST_CLASSES+= awk sys +SUBST_CLASSES+= awk SUBST_STAGE.awk= pre-configure SUBST_MESSAGE.awk= Adjusting the path to awk SUBST_FILES.awk= bin/sun2mime SUBST_SED.awk= -e "s|/bin/nawk|${AWK}|" + +SUBST_CLASSES+= sys SUBST_STAGE.sys= pre-configure SUBST_MESSAGE.sys= Adjusting the path for PKG_SYSCONFDIR. SUBST_FILES.sys= config.h --_----------=_158490169576770--