diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-07-25 10:15:31 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-07-25 10:18:15 +0100 |
commit | bd8aeb7c2a51480fde2de97e7aad62b09e3e2736 (patch) | |
tree | ae4666eef56ea6ca8339d09473c38f038ba06198 /media-fonts/terminus-font | |
parent | dev-util/diffoscope: drop old (diff) | |
download | gentoo-bd8aeb7c2a51480fde2de97e7aad62b09e3e2736.tar.gz gentoo-bd8aeb7c2a51480fde2de97e7aad62b09e3e2736.tar.bz2 gentoo-bd8aeb7c2a51480fde2de97e7aad62b09e3e2736.zip |
media-fonts/terminus-font: drop old
Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'media-fonts/terminus-font')
-rw-r--r-- | media-fonts/terminus-font/terminus-font-4.48.ebuild | 91 |
1 files changed, 0 insertions, 91 deletions
diff --git a/media-fonts/terminus-font/terminus-font-4.48.ebuild b/media-fonts/terminus-font/terminus-font-4.48.ebuild deleted file mode 100644 index b64d4da43516..000000000000 --- a/media-fonts/terminus-font/terminus-font-4.48.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{6,7,8} ) -inherit font python-any-r1 - -DESCRIPTION="A clean fixed font for the console and X11" -HOMEPAGE="http://terminus-font.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}/${P}.tar.gz" - -LICENSE="OFL-1.1 GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="a-like-o +center-tilde distinct-l +pcf +pcf-unicode-only +psf quote - ru-dv +ru-g ru-i ru-k" - -DEPEND="app-arch/gzip - ${PYTHON_DEPS} - virtual/awk - pcf? ( x11-apps/bdftopcf )" -RDEPEND="" - -FONTDIR=/usr/share/fonts/terminus -FONT_CONF=( 75-yes-terminus.conf ) -DOCS=( README README-BG AUTHORS CHANGES ) - -REQUIRED_USE="X? ( pcf )" - -pkg_setup() { - python_setup -} - -src_prepare() { - default - - # Upstream patches. Some of them are suggested to be applied by default - # dv - de NOT like latin g, but like caps greek delta - # ve NOT like greek beta, but like caps latin B - # ge - ge NOT like "mirrored" latin s, but like caps greek gamma - # ka - small ka NOT like minimised caps latin K, but like small latin k - use a-like-o && eapply "${S}"/alt/ao2.diff - use center-tilde && eapply "${S}"/alt/td1.diff - use distinct-l && eapply "${S}"/alt/ll2.diff - use ru-i && eapply "${S}"/alt/ij1.diff - use ru-k && eapply "${S}"/alt/ka2.diff - use ru-dv && eapply "${S}"/alt/dv1.diff - use ru-g && eapply "${S}"/alt/ge2.diff - use quote && eapply "${S}"/alt/gq2.diff -} - -src_configure() { - local configure_args=( - --prefix="${EPREFIX}"/usr - --psfdir="${EPREFIX}"/usr/share/consolefonts - --x11dir="${EPREFIX}"/${FONTDIR} - ) - # selfwritten configure script - ./configure "${configure_args[@]}" || die -} - -src_compile() { - local args=( - $(usex psf 'psf psf-vgaw' '') - $(usex pcf 'pcf pcf-8bit' '') - ) - [[ ${#args[@]} -gt 0 ]] && emake "${args[@]}" -} - -src_install() { - local args=( - $(usex psf 'install-psf install-psf-vgaw install-psf-ref' '') - $(usex pcf 'install-pcf' '') - ) - # Set the CHECKDIR to a dummy location so we always get the same set of - # files installed regardless of what is in / or ROOT or wherever. - [[ ${#args[@]} -gt 0 ]] && emake DESTDIR="${D}" CHECKDIR="${D}" "${args[@]}" - - # Remove trans files that the kbd package takes care of installing. - rm -f "${ED}"/usr/share/consoletrans/*.trans - - if use pcf-unicode-only; then - # Only the ter-x* fonts are unicode (ISO-10646-1) based - rm -f "${ED}"/usr/share/fonts/terminus/ter-[0-9a-wy-z]* || die - fi - - font_src_install - - einstalldocs -} |