summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2019-10-19 22:48:40 +0200
committerDavid Seifert <soap@gentoo.org>2019-10-19 22:48:40 +0200
commita66593a6c22ea4194703ce468ac07290f49e0bd9 (patch)
tree45e960e84dd06ad25fce5580644f3bc27072ac90 /media-fonts/cronyx-fonts
parentmedia-fonts/cronyx-fonts: Port to EAPI 7 (diff)
downloadgentoo-a66593a6c22ea4194703ce468ac07290f49e0bd9.tar.gz
gentoo-a66593a6c22ea4194703ce468ac07290f49e0bd9.tar.bz2
gentoo-a66593a6c22ea4194703ce468ac07290f49e0bd9.zip
media-fonts/cronyx-fonts: Remove old
Bug: https://bugs.gentoo.org/696312 Package-Manager: Portage-2.3.77, Repoman-2.3.17 Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-fonts/cronyx-fonts')
-rw-r--r--media-fonts/cronyx-fonts/Manifest1
-rw-r--r--media-fonts/cronyx-fonts/cronyx-fonts-2.3.1-r2.ebuild64
2 files changed, 0 insertions, 65 deletions
diff --git a/media-fonts/cronyx-fonts/Manifest b/media-fonts/cronyx-fonts/Manifest
index 600da0ba89b7..3157ed14cfa5 100644
--- a/media-fonts/cronyx-fonts/Manifest
+++ b/media-fonts/cronyx-fonts/Manifest
@@ -1,3 +1,2 @@
-DIST x6rus-2.3.1-bin.tgz 602902 BLAKE2B a42ea9ce78e16533bdd7c0336825d3361b1a655cf2dd39a6928b1a606d0fd68eaed5b1f815519d1bb9ec6d2f4109c9ffe4ac3d6ee632404cd8cf700bebefdc6c SHA512 0bc585724fa13edb27f8f0d275620fa01f35f885835a017428f12ca5cd30111942d7422efbc2a7e6b055325e1e8fb54bf58caadf2e981c56fc7f6deb96a75717
DIST xfonts-cronyx_2.3.8-6.diff.gz 14285 BLAKE2B 91021cb3033fb6acd96b2f8fd12f4c621f066aabe7226b90d8a6a8da98fbfbfcb765a8a4cc7397b764b7b4c1f196c6e8a8df8cae1b7ae8c8f8981920f9b8ce42 SHA512 15703eda0e612b2cc29b16a4668fbe3efbfc3ffcea9bfa25ee47c4b3a7e1f0f8f5637b0f3c9b1239ab192f7229d56a433b8ff1b4366131d8d4c722f4451a1288
DIST xfonts-cronyx_2.3.8.orig.tar.gz 269169 BLAKE2B e867a78511b744ca1b4fd95581c820b8932f8c17b336cc467f894324817b223b94179fe9cd5de46fd85445044e20c78ff067b650495eb0ba6e4781b05484f0bc SHA512 ac6e0d18977fb36ee255c57114f333dc5962c5a3f30dea8a6dccadd3831baa0d1b940c9a2fc40c56c043c8cb276c7a1bc039b555a68dab05e00139884b6b4696
diff --git a/media-fonts/cronyx-fonts/cronyx-fonts-2.3.1-r2.ebuild b/media-fonts/cronyx-fonts/cronyx-fonts-2.3.1-r2.ebuild
deleted file mode 100644
index 1a59d99508c4..000000000000
--- a/media-fonts/cronyx-fonts/cronyx-fonts-2.3.1-r2.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-DESCRIPTION="Cronyx Cyrillic bitmap fonts for X"
-HOMEPAGE="http://koi8.pp.ru/frame.html?xwin.html#xwin_fonts"
-S="${WORKDIR}/cyrillic"
-SRC_URI="http://koi8.pp.ru/dist/x6rus-${PV}-bin.tgz"
-KEYWORDS="alpha amd64 arm ia64 ppc s390 sh sparc x86"
-SLOT="0"
-LICENSE="freedist"
-DEPEND=">=x11-apps/mkfontscale-1.2.0"
-RDEPEND=""
-IUSE=""
-
-FONT_ROOT=/usr/share/fonts/cronyx
-FONT_TARGETS="75dpi 100dpi misc"
-
-src_install() {
- for dir in ${FONT_TARGETS}; do
- insinto ${FONT_ROOT}/$dir
- doins ${dir}/*.pcf.gz
- done
- # our install dir is still ${FONT_ROOT}/misc, so
- doins misc/fonts.alias
- dodoc xrus.info
-}
-
-rebuild_fontfiles() {
- einfo "Refreshing fonts.scale and fonts.dir..."
- cd ${FONT_ROOT}
- mkfontdir -- ${FONT_TARGETS}
- if [ "${ROOT}" = "/" ] && [ -x /usr/bin/fc-cache ]
- then
- einfo "Updating font cache..."
- HOME="/root" /usr/bin/fc-cache -f ${FONT_TARGETS}
- fi
-}
-
-pkg_postinst() {
- if use X > /dev/null ; then
- rebuild_fontfiles
- elog "In order to make X see the fonts, you need to add the"
- elog "following lines to the files section of your "
- elog "/etc/X11/XF86Config (or the XOrg equivalent):"
- elog " FontPath \"${FONT_ROOT}/100dpi/:unscaled\""
- elog " FontPath \"${FONT_ROOT}/misc/:unscaled\""
- elog " FontPath \"${FONT_ROOT}/75dpi/:unscaled\""
- elog ""
- elog "In order to make them accessible to your current X"
- elog "session, run:"
- elog " xset fp+ ${FONT_ROOT}/100dpi/:unscaled,\\"
- elog "${FONT_ROOT}/misc/:unscaled,\\"
- elog "${FONT_ROOT}/75dpi/:unscaled"
- elog " xset fp rehash"
- fi
-}
-
-pkg_postrm() {
- if use X > /dev/null ; then
- rebuild_fontfiles
- fi
-}