Received: by mail.netbsd.org (Postfix, from userid 605) id 8383584DB3; Thu, 4 Apr 2019 07:34:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0950784DB2 for ; Thu, 4 Apr 2019 07:34:43 +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 276QdNl6RXPj for ; Thu, 4 Apr 2019 07:34:42 +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 606F184D32 for ; Thu, 4 Apr 2019 07:34:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5E430FB16; Thu, 4 Apr 2019 07:34:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1554363282132110" MIME-Version: 1.0 Date: Thu, 4 Apr 2019 07:34:42 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/fonts/overpass To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20190404073442.5E430FB16@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. --_----------=_1554363282132110 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Thu Apr 4 07:34:42 UTC 2019 Modified Files: pkgsrc/fonts/overpass: Makefile Log Message: overpass: use fonts.mk To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/fonts/overpass/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1554363282132110 Content-Disposition: inline Content-Length: 1114 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/fonts/overpass/Makefile diff -u pkgsrc/fonts/overpass/Makefile:1.2 pkgsrc/fonts/overpass/Makefile:1.3 --- pkgsrc/fonts/overpass/Makefile:1.2 Tue Mar 5 21:17:17 2019 +++ pkgsrc/fonts/overpass/Makefile Thu Apr 4 07:34:42 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2019/03/05 21:17:17 tnn Exp $ +# $NetBSD: Makefile,v 1.3 2019/04/04 07:34:42 maya Exp $ DISTNAME= Overpass-3.0.3 CATEGORIES= fonts @@ -9,23 +9,5 @@ HOMEPAGE= https://github.com/RedHatBrand COMMENT= Font family inspired by Highway Gothic LICENSE= ofl-v1.1 AND gnu-lgpl-v2.1 -USE_LANGUAGES= # none -NO_CONFIGURE= yes -NO_BUILD= yes - -TTF_FONTS_DIR= ${PREFIX}/share/fonts/X11/TTF -OTF_FONTS_DIR= ${PREFIX}/share/fonts/X11/OTF - -INSTALLATION_DIRS= ${TTF_FONTS_DIR} ${OTF_FONTS_DIR} - -do-install: - for font in `find ${WRKSRC} -name '*.ttf'`; \ - do \ - ${INSTALL_DATA} $${font} ${DESTDIR}${TTF_FONTS_DIR}; \ - done; \ - for font in `find ${WRKSRC} -name '*.otf'`; \ - do \ - ${INSTALL_DATA} $${font} ${DESTDIR}${OTF_FONTS_DIR}; \ - done; - +.include "../../mk/fonts.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1554363282132110--