Received: by mail.netbsd.org (Postfix, from userid 605) id 577A084E4F; Sat, 12 Oct 2019 20:26:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D08D584DBE for ; Sat, 12 Oct 2019 20:26:43 +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 fBNz4OF8bFl4 for ; Sat, 12 Oct 2019 20:26:43 +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 577D384C6C for ; Sat, 12 Oct 2019 20:26:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 519D4FBF4; Sat, 12 Oct 2019 20:26:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1570912003149220" MIME-Version: 1.0 Date: Sat, 12 Oct 2019 20:26:43 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/multimedia/libmpeg3 To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20191012202643.519D4FBF4@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. --_----------=_1570912003149220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Sat Oct 12 20:26:43 UTC 2019 Modified Files: pkgsrc/multimedia/libmpeg3: Makefile PLIST Log Message: multimedia/libmpeg3: fix location of HTML documentation To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/multimedia/libmpeg3/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/multimedia/libmpeg3/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1570912003149220 Content-Disposition: inline Content-Length: 1842 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/multimedia/libmpeg3/Makefile diff -u pkgsrc/multimedia/libmpeg3/Makefile:1.21 pkgsrc/multimedia/libmpeg3/Makefile:1.22 --- pkgsrc/multimedia/libmpeg3/Makefile:1.21 Sun Dec 9 21:05:33 2018 +++ pkgsrc/multimedia/libmpeg3/Makefile Sat Oct 12 20:26:43 2019 @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.21 2018/12/09 21:05:33 adam Exp $ +# $NetBSD: Makefile,v 1.22 2019/10/12 20:26:43 rillig Exp $ # DISTNAME= libmpeg3-1.8-src PKGNAME= ${DISTNAME:S/-src//} +PKGREVISION= 1 CATEGORIES= devel audio graphics multimedia MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=heroines/} EXTRACT_SUFX= .tar.bz2 @@ -42,7 +43,7 @@ VINSTHDRS= idct.h mpeg3video.h slice.h INSTBINS= mpeg3cat mpeg3peek mpeg3toc mpeg3dump INSTALLATION_DIRS= bin include/mpeg3/audio include/mpeg3/video lib \ - share/doc/html/libmpeg3 + share/doc/libmpeg3 do-install: for f in ${INSTBINS}; do \ @@ -61,7 +62,7 @@ do-install: done ${INSTALL_LIB} ${WRKSRC}/work/libmpeg3.a ${DESTDIR}${PREFIX}/lib ${INSTALL_DATA} ${WRKSRC}/docs/index.html \ - ${DESTDIR}${PREFIX}/share/doc/html/libmpeg3 + ${DESTDIR}${PREFIX}/share/doc/libmpeg3 .include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/multimedia/libmpeg3/PLIST diff -u pkgsrc/multimedia/libmpeg3/PLIST:1.4 pkgsrc/multimedia/libmpeg3/PLIST:1.5 --- pkgsrc/multimedia/libmpeg3/PLIST:1.4 Sun Jun 14 18:08:07 2009 +++ pkgsrc/multimedia/libmpeg3/PLIST Sat Oct 12 20:26:43 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2009/06/14 18:08:07 joerg Exp $ +@comment $NetBSD: PLIST,v 1.5 2019/10/12 20:26:43 rillig Exp $ bin/mpeg3cat bin/mpeg3dump bin/mpeg3peek @@ -20,4 +20,4 @@ include/mpeg3/video/idct.h include/mpeg3/video/mpeg3video.h include/mpeg3/video/slice.h lib/libmpeg3.a -share/doc/html/libmpeg3/index.html +share/doc/libmpeg3/index.html --_----------=_1570912003149220--