Fix maintainer line and drop leftover Makefile.template comments.
Noticed by jasper@
This commit is contained in:
parent
8f37032243
commit
e18c6df90b
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.inc,v 1.1 2021/03/20 12:44:25 bentley Exp $
|
||||
# $OpenBSD: Makefile.inc,v 1.2 2021/03/23 07:17:04 bentley Exp $
|
||||
|
||||
PKGNAME ?= ${LEAGUE_FONT}-$V
|
||||
|
||||
@ -6,140 +6,18 @@ CATEGORIES ?= fonts
|
||||
|
||||
HOMEPAGE ?= https://www.theleagueofmoveabletype.com/${LEAGUE_FONT}
|
||||
|
||||
MAINTAINER ?= ???
|
||||
MAINTAINER ?= Anthony J. Bentley <anthony@anjbe.name>
|
||||
|
||||
# SIL OFL 1.1
|
||||
PERMIT_PACKAGE ?= Yes
|
||||
|
||||
MASTER_SITES ?= https://github.com/theleagueof/${LEAGUE_FONT}/releases/download/$V/
|
||||
MASTER_SITES ?= https://github.com/theleagueof/${LEAGUE_FONT}/releases/download/$V/
|
||||
|
||||
EXTRACT_SUFX ?= .tar.xz
|
||||
EXTRACT_SUFX ?= .tar.xz
|
||||
|
||||
# Fix dos line-endings in files needing patches
|
||||
#FIX_CRLF_FILES = ???
|
||||
NO_BUILD ?= Yes
|
||||
NO_TEST ?= Yes
|
||||
|
||||
# Optional subdirectory of DISTDIR where distfiles and patches will be placed
|
||||
#DIST_SUBDIR = ???
|
||||
PKG_ARCH ?= *
|
||||
|
||||
# PATCHFILES are also retrieved from MASTER_SITES*
|
||||
#PATCHFILES = ???
|
||||
#PATCH_DIST_STRIP = -p0
|
||||
|
||||
# Standard for C++ ports:
|
||||
#COMPILER = base-clang ports-gcc base-gcc
|
||||
# Standard for C++11 or newer:
|
||||
#COMPILER = base-clang ports-gcc
|
||||
# Ports that require a non-default compiler that do *not* use C++ should set this:
|
||||
#COMPILER_LANGS = c
|
||||
|
||||
# Any modules we may be using
|
||||
#MODULES = ???
|
||||
|
||||
#
|
||||
# MODPY_ settings for when using lang/python module
|
||||
#
|
||||
# Get source from pypi.org
|
||||
#MODPY_PI = Yes
|
||||
#MODPY_SETUPTOOLS = Yes
|
||||
# If port is python2 only
|
||||
#MODPY_VERSION = ${MODPY_DEFAULT_VERSION_2}
|
||||
# If port is a Python module (py-*) that is or might be used by other Python
|
||||
# ports, set FLAVOR=python3 and FLAVORS=python3
|
||||
|
||||
#
|
||||
# MODGO_ settings for when using lang/go module
|
||||
#
|
||||
# Get source from proxy.golang.org
|
||||
#MODGO_MODULES = modulename version
|
||||
# These are needed for dependency resolution. We don't actually need the
|
||||
# coresponding code
|
||||
#MODGO_MODFILES = modulename version
|
||||
|
||||
# Dependencies
|
||||
#BUILD_DEPENDS = ???
|
||||
#RUN_DEPENDS = ???
|
||||
#LIB_DEPENDS = ???
|
||||
#TEST_DEPENDS = ???
|
||||
|
||||
#MAKE_FLAGS = ???
|
||||
#MAKE_ENV = ???
|
||||
#FAKE_FLAGS = ???
|
||||
#TEST_FLAGS = ???
|
||||
|
||||
# build/configuration variables
|
||||
#
|
||||
#SEPARATE_BUILD = Yes (build in a directory other than WRKSRC)
|
||||
#SEPARATE_BUILD = flavored (distinct flavors may share a common WRKSRC)
|
||||
#USE_GMAKE = Yes
|
||||
#USE_GROFF = Yes
|
||||
# Programs that require GNU libtool to build instead of the OpenBSD one
|
||||
# should use this option. Add a comment explaining why. Don't use this if
|
||||
# a port requires libtool's .m4 files but otherwise can use OpenBSD libtool,
|
||||
# in that case use "BUILD_DEPENDS=devel/libtool" instead.
|
||||
#USE_LIBTOOL= gnu
|
||||
# Set CONFIGURE_STYLE to value corresponding to some standard configuration
|
||||
# perl [modbuild]: perl's MakeMaker Makefile.PL (modbuild: perl's
|
||||
# Module::Build Build.PL)
|
||||
# gnu [autoconf] [old] [dest]: gnu style configure (old: no
|
||||
# sysconfdir), (dest: add DESTDIR, does not handle it),
|
||||
# autoconf: run autoconf to regenerate configure script. implies gnu.
|
||||
# (see also "do-gen" target below).
|
||||
# XXX: cygnus products do NOT use autoconf for making the main
|
||||
# configure from configure.in
|
||||
# imake [noman]: port uses imake for configuration.
|
||||
# (noman: no man page installation)
|
||||
# simple: port has its own configure script
|
||||
# none: override default CONFIGURE_STYLE coming from a module
|
||||
# (needed for some ports using lang/python, etc.)
|
||||
#CONFIGURE_STYLE =
|
||||
#CONFIGURE_SCRIPT = ??? (if other than configure)
|
||||
#CONFIGURE_ARGS = ???
|
||||
#CONFIGURE_ENV = ???
|
||||
|
||||
# if debug packages are a good idea, extra configure args may be necessary
|
||||
# and DEBUG_PACKAGES will commonly be set to ${BUILD_PACKAGES}
|
||||
# DEBUG_CONFIGURE_ARGS = ???
|
||||
# DEBUG_PACKAGES = ${BUILD_PACKAGES}
|
||||
|
||||
# for gnu stuff
|
||||
#AUTOCONF_VERSION = ??? (defaults to 2.13)
|
||||
#AUTOMAKE_VERSION = ??? (defaults to 1.4)
|
||||
# config.guess and others are copied here
|
||||
#MODGNU_CONFIG_GUESS_DIRS = ??? (defaults to ${WRKSRC})
|
||||
|
||||
# Is the build automagic or is it interactive
|
||||
#
|
||||
#IS_INTERACTIVE = Yes
|
||||
#TEST_IS_INTERACTIVE = Yes
|
||||
|
||||
# Assume you have one multiple choice flavor: 1 2 3 and switches a b.
|
||||
# You would write
|
||||
#
|
||||
#FLAVORS = 1 2 3 a b
|
||||
#FLAVOR ?=
|
||||
# grab multiple choice value
|
||||
#CHOICE = ${FLAVOR:Na:Nb}
|
||||
# check that CHOICE is 1 OR 2 OR 3, or error out
|
||||
#.if ${CHOICE} == "1"
|
||||
# code for 1
|
||||
#.elif ${CHOICE} == "2"
|
||||
# code for 2
|
||||
#.elif ${CHOICE} == "3"
|
||||
# code for 3
|
||||
#.else
|
||||
#ERRORS += "Fatal: Conflicting flavor: ${FLAVOR}"
|
||||
#.endif
|
||||
# check for switches
|
||||
#.if ${FLAVOR:Ma}
|
||||
# code for a
|
||||
#.endif
|
||||
#.if ${FLAVOR:Mb}
|
||||
# code for b
|
||||
#.endif
|
||||
|
||||
NO_BUILD ?= Yes
|
||||
NO_TEST ?= Yes
|
||||
|
||||
PKG_ARCH ?= *
|
||||
|
||||
FONTDIR ?= ${PREFIX}/share/fonts/league-fonts
|
||||
FONTDIR ?= ${PREFIX}/share/fonts/league-fonts
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:28:08 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:04 bentley Exp $
|
||||
|
||||
COMMENT = stencil sans-serif typeface without holes
|
||||
|
||||
V = 2.002pre1
|
||||
DISTNAME = Blackout-$V
|
||||
LEAGUE_FONT = blackout
|
||||
REVISION = 0
|
||||
|
||||
MASTER_SITES = https://distfiles.roadrunner.page/
|
||||
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:28:26 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:04 bentley Exp $
|
||||
|
||||
COMMENT = ultra-bold slab serif typeface
|
||||
|
||||
V = 1.001pre1
|
||||
DISTNAME = Chunk-$V
|
||||
LEAGUE_FONT = chunk
|
||||
REVISION = 0
|
||||
|
||||
MASTER_SITES = https://distfiles.roadrunner.page/
|
||||
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:28:44 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:04 bentley Exp $
|
||||
|
||||
COMMENT = serif based on the work of Rudolph Ruzicka
|
||||
|
||||
V = 1.1
|
||||
DISTNAME = fanwood-$V
|
||||
LEAGUE_FONT = fanwood
|
||||
REVISION = 0
|
||||
|
||||
MASTER_SITES = https://crudfactory.com/
|
||||
EXTRACT_SUFX = .zip
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:29:15 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:05 bentley Exp $
|
||||
|
||||
COMMENT = font based on Kennerley Oldstyle
|
||||
|
||||
@ -6,6 +6,7 @@ V = 2010.07.03
|
||||
DISTNAME = gb1911-$V
|
||||
PKGNAME = gb1911-$V
|
||||
LEAGUE_FONT = goudy-bookletter-1911
|
||||
REVISION = 0
|
||||
|
||||
MASTER_SITES = https://crudfactory.com/
|
||||
EXTRACT_SUFX = .zip
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:29:34 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:05 bentley Exp $
|
||||
|
||||
COMMENT = revival of Goudy Oldstyle and Italic
|
||||
|
||||
@ -6,6 +6,7 @@ V = 3.1
|
||||
DISTNAME = goudy-$V
|
||||
PKGNAME = goudy-$V
|
||||
LEAGUE_FONT = sorts-mill-goudy
|
||||
REVISION = 0
|
||||
|
||||
MASTER_SITES = https://crudfactory.com/
|
||||
EXTRACT_SUFX = .zip
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:30:01 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:05 bentley Exp $
|
||||
|
||||
COMMENT = humanist sans-serif typeface
|
||||
|
||||
V = 1.001pre1
|
||||
DISTNAME = Junction-$V
|
||||
LEAGUE_FONT = junction
|
||||
REVISION = 0
|
||||
|
||||
MASTER_SITES = https://distfiles.roadrunner.page/
|
||||
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:30:22 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:05 bentley Exp $
|
||||
|
||||
COMMENT = bold, painted typeface for the rocker within
|
||||
|
||||
V = 2.000pre1
|
||||
DISTNAME = Knewave-$V
|
||||
LEAGUE_FONT = knewave
|
||||
REVISION = 0
|
||||
|
||||
MASTER_SITES = https://distfiles.roadrunner.page/
|
||||
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:30:46 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:05 bentley Exp $
|
||||
|
||||
COMMENT = revival of classic gothic typeface
|
||||
|
||||
V = 1.601
|
||||
DISTNAME = LeagueGothic-$V
|
||||
LEAGUE_FONT = league-gothic
|
||||
REVISION = 0
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA_DIR} ${FONTDIR}
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:31:10 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:05 bentley Exp $
|
||||
|
||||
COMMENT = mashup of beautiful monospace font forms
|
||||
|
||||
V = 2.220
|
||||
DISTNAME = LeagueMono-$V
|
||||
LEAGUE_FONT = league-mono
|
||||
REVISION = 0
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA_DIR} ${FONTDIR}
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:31:45 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:05 bentley Exp $
|
||||
|
||||
COMMENT = modern, coquettish script font
|
||||
|
||||
V = 1.001pre1
|
||||
DISTNAME = LeagueScriptNumberOne-$V
|
||||
LEAGUE_FONT = league-script-number-one
|
||||
REVISION = 0
|
||||
|
||||
HOMEPAGE = https://www.theleagueofmoveabletype.com/league-script
|
||||
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:32:10 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:05 bentley Exp $
|
||||
|
||||
COMMENT = revival of ATF's Spartan sans-serif
|
||||
|
||||
V = 2.220
|
||||
DISTNAME = LeagueSpartan-$V
|
||||
LEAGUE_FONT = league-spartan
|
||||
REVISION = 0
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA_DIR} ${FONTDIR}
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:32:40 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:05 bentley Exp $
|
||||
|
||||
COMMENT = digital version of Frederic Goudy's Deepdene
|
||||
|
||||
@ -6,6 +6,7 @@ V = 1.2
|
||||
DISTNAME = lindenhill-$V
|
||||
PKGNAME = lindenhill-$V
|
||||
LEAGUE_FONT = linden-hill
|
||||
REVISION = 0
|
||||
|
||||
MASTER_SITES = https://crudfactory.com/
|
||||
EXTRACT_SUFX = .zip
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:33:02 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:05 bentley Exp $
|
||||
|
||||
COMMENT = geometric sans-serif from the future
|
||||
|
||||
V = 1.000pre1
|
||||
DISTNAME = Orbitron-$V
|
||||
LEAGUE_FONT = orbitron
|
||||
REVISION = 0
|
||||
|
||||
MASTER_SITES = https://distfiles.roadrunner.page/
|
||||
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:33:27 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:05 bentley Exp $
|
||||
|
||||
COMMENT = gorgeous modern sans-serif with a very long neck
|
||||
|
||||
V = 1.000pre1
|
||||
DISTNAME = OstrichSans-$V
|
||||
LEAGUE_FONT = ostrich-sans
|
||||
REVISION = 0
|
||||
|
||||
MASTER_SITES = https://distfiles.roadrunner.page/
|
||||
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:33:53 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:05 bentley Exp $
|
||||
|
||||
COMMENT = roman serif with blackletter elements
|
||||
|
||||
V = 2.3
|
||||
DISTNAME = prociono-$V
|
||||
LEAGUE_FONT = prociono
|
||||
REVISION = 0
|
||||
|
||||
MASTER_SITES = https://crudfactory.com/
|
||||
EXTRACT_SUFX = .zip
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:34:13 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:05 bentley Exp $
|
||||
|
||||
COMMENT = elegant variable sans-serif
|
||||
|
||||
V = 4.101
|
||||
DISTNAME = Raleway-$V
|
||||
LEAGUE_FONT = raleway
|
||||
REVISION = 0
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA_DIR} ${FONTDIR}
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2021/03/20 12:34:39 bentley Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2021/03/23 07:17:06 bentley Exp $
|
||||
|
||||
COMMENT = fun rounded display face that's great for headlines
|
||||
|
||||
V = 1.000pre1
|
||||
DISTNAME = Sniglet-$V
|
||||
LEAGUE_FONT = sniglet
|
||||
REVISION = 0
|
||||
|
||||
MASTER_SITES = https://distfiles.roadrunner.page/
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user