pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/fonts/overpass overpass: add overpass version 3.0.3



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9c84a70308d5
branches:  trunk
changeset: 330769:9c84a70308d5
user:      maya <maya%pkgsrc.org@localhost>
date:      Tue Mar 05 21:02:03 2019 +0000

description:
overpass: add overpass version 3.0.3

Open source web font family, inspired by Highway Gothic.
Sponsored by Red Hat and designed by Delve Fonts.

diffstat:

 fonts/overpass/DESCR    |   1 +
 fonts/overpass/Makefile |  35 +++++++++++++++++++++++++++++++++++
 fonts/overpass/PLIST    |  41 +++++++++++++++++++++++++++++++++++++++++
 fonts/overpass/distinfo |   6 ++++++
 4 files changed, 83 insertions(+), 0 deletions(-)

diffs (99 lines):

diff -r 3be4a8f90185 -r 9c84a70308d5 fonts/overpass/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/fonts/overpass/DESCR      Tue Mar 05 21:02:03 2019 +0000
@@ -0,0 +1,1 @@
+Open source web font family, inspired by Highway Gothic
diff -r 3be4a8f90185 -r 9c84a70308d5 fonts/overpass/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/fonts/overpass/Makefile   Tue Mar 05 21:02:03 2019 +0000
@@ -0,0 +1,35 @@
+# $NetBSD: Makefile,v 1.1 2019/03/05 21:02:03 maya Exp $
+
+GITHUB_PROJECT=        Overpass
+DISTNAME=      3.0.3
+PKGNAME=       ${GITHUB_PROJECT}-${DISTNAME}
+CATEGORIES=    fonts
+MASTER_SITES=  ${MASTER_SITE_GITHUB:=RedHatBrand/}
+DIST_SUBDIR=   ${GITHUB_PROJECT}
+
+MAINTAINER=    maya%NetBSD.org@localhost
+HOMEPAGE=      https://github.com/RedHatBrand/Overpass/
+COMMENT=       Font family inspired by Highway Gothic
+LICENSE=       ofl-v1.1 AND gnu-lgpl-v2.1
+
+WRKSRC=                ${WRKDIR}/Overpass-3.0.3
+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/bsd.pkg.mk"
diff -r 3be4a8f90185 -r 9c84a70308d5 fonts/overpass/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/fonts/overpass/PLIST      Tue Mar 05 21:02:03 2019 +0000
@@ -0,0 +1,41 @@
+@comment $NetBSD: PLIST,v 1.1 2019/03/05 21:02:03 maya Exp $
+share/fonts/X11/OTF/overpass-bold-italic.otf
+share/fonts/X11/OTF/overpass-bold.otf
+share/fonts/X11/OTF/overpass-extrabold-italic.otf
+share/fonts/X11/OTF/overpass-extrabold.otf
+share/fonts/X11/OTF/overpass-extralight-italic.otf
+share/fonts/X11/OTF/overpass-extralight.otf
+share/fonts/X11/OTF/overpass-heavy-italic.otf
+share/fonts/X11/OTF/overpass-heavy.otf
+share/fonts/X11/OTF/overpass-italic.otf
+share/fonts/X11/OTF/overpass-light-italic.otf
+share/fonts/X11/OTF/overpass-light.otf
+share/fonts/X11/OTF/overpass-mono-bold.otf
+share/fonts/X11/OTF/overpass-mono-light.otf
+share/fonts/X11/OTF/overpass-mono-regular.otf
+share/fonts/X11/OTF/overpass-mono-semibold.otf
+share/fonts/X11/OTF/overpass-regular.otf
+share/fonts/X11/OTF/overpass-semibold-italic.otf
+share/fonts/X11/OTF/overpass-semibold.otf
+share/fonts/X11/OTF/overpass-thin-italic.otf
+share/fonts/X11/OTF/overpass-thin.otf
+share/fonts/X11/TTF/overpass-bold-italic.ttf
+share/fonts/X11/TTF/overpass-bold.ttf
+share/fonts/X11/TTF/overpass-extrabold-italic.ttf
+share/fonts/X11/TTF/overpass-extrabold.ttf
+share/fonts/X11/TTF/overpass-extralight-italic.ttf
+share/fonts/X11/TTF/overpass-extralight.ttf
+share/fonts/X11/TTF/overpass-heavy-italic.ttf
+share/fonts/X11/TTF/overpass-heavy.ttf
+share/fonts/X11/TTF/overpass-italic.ttf
+share/fonts/X11/TTF/overpass-light-italic.ttf
+share/fonts/X11/TTF/overpass-light.ttf
+share/fonts/X11/TTF/overpass-mono-bold.ttf
+share/fonts/X11/TTF/overpass-mono-light.ttf
+share/fonts/X11/TTF/overpass-mono-regular.ttf
+share/fonts/X11/TTF/overpass-mono-semibold.ttf
+share/fonts/X11/TTF/overpass-regular.ttf
+share/fonts/X11/TTF/overpass-semibold-italic.ttf
+share/fonts/X11/TTF/overpass-semibold.ttf
+share/fonts/X11/TTF/overpass-thin-italic.ttf
+share/fonts/X11/TTF/overpass-thin.ttf
diff -r 3be4a8f90185 -r 9c84a70308d5 fonts/overpass/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/fonts/overpass/distinfo   Tue Mar 05 21:02:03 2019 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2019/03/05 21:02:03 maya Exp $
+
+SHA1 (Overpass/3.0.3.tar.gz) = 429e705d4c24bb97966bb399a28ec5cdac699b64
+RMD160 (Overpass/3.0.3.tar.gz) = 2bce42c8e45f7324e4d78a1673428d3095fbc6bb
+SHA512 (Overpass/3.0.3.tar.gz) = d2a3284f6f82e80e46af23064a374da2926a3563ee668683aa1a8db7a9163cc80c4fa8a3077876dc552a36e9d621c45218df44485b7b6a6adc3fc6df62c448d0
+Size (Overpass/3.0.3.tar.gz) = 6532060 bytes



Home | Main Index | Thread Index | Old Index