Lack of file /usr/share/fonts/jmk/.uuid
causes sandbox violation issues in other packages.
font_pkg_postinst take care of its creation now.
Also bumped to EAPI 7 and "Unquoted Variable" warnings addressed.
Closes: https://bugs.gentoo.org/665008
Package-Manager: Portage-2.3.49, Repoman-2.3.10
---- Imakefile 1999-08-24 00:09:41.000000000 -0400
-+++ Imakefile 2005-02-21 01:40:20.000000000 -0500
+--- a/Imakefile 1999-08-24 00:09:41.000000000 -0400
++++ b/Imakefile 2005-02-21 01:40:20.000000000 -0500
@@ -22,7 +22,6 @@
CAT = cat
--- /dev/null
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+FONT_PN=jmk
+
+inherit font
+
+MY_P=jmk-x11-fonts-${PV}
+S=${WORKDIR}/${MY_P}
+DESCRIPTION="This package contains character-cell fonts for use with X"
+SRC_URI="http://www.pobox.com/~jmknoble/fonts/${MY_P}.tar.gz"
+HOMEPAGE="http://www.jmknoble.net/fonts/"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
+IUSE=""
+
+DEPEND="x11-misc/imake
+ x11-apps/mkfontdir
+ x11-apps/bdftopcf"
+RDEPEND=""
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ eapply "${FILESDIR}"/gzip.patch
+}
+
+src_compile() {
+ xmkmf || die
+ emake || die
+}
+
+src_install() {
+ make install INSTALL_DIR="${D}${FONTDIR}" || die
+ dodoc README NEWS
+}