diff options
author | David Seifert <soap@gentoo.org> | 2019-10-19 22:48:53 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-10-19 22:48:53 +0200 |
commit | b3ac16957df09ff8197c62700ef0c467188f1663 (patch) | |
tree | 702f64859174e494a0b84ba7b8f55dc675ae9f9b /media-fonts/konfont | |
parent | media-fonts/x11fonts-jmk: Remove old (diff) | |
download | gentoo-b3ac16957df09ff8197c62700ef0c467188f1663.tar.gz gentoo-b3ac16957df09ff8197c62700ef0c467188f1663.tar.bz2 gentoo-b3ac16957df09ff8197c62700ef0c467188f1663.zip |
media-fonts/konfont: Port to EAPI 7
Bug: https://bugs.gentoo.org/697292
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-fonts/konfont')
-rw-r--r-- | media-fonts/konfont/konfont-0.1.ebuild | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/media-fonts/konfont/konfont-0.1.ebuild b/media-fonts/konfont/konfont-0.1.ebuild index f0040e33c07d..f9378906ce61 100644 --- a/media-fonts/konfont/konfont-0.1.ebuild +++ b/media-fonts/konfont/konfont-0.1.ebuild @@ -1,28 +1,24 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 MY_P="${P/-/_}.orig" DESCRIPTION="Fontset for KON2" -SRC_URI="mirror://debian/dists/potato/main/source/utils/${MY_P}.tar.gz" # There seems to be no real homepage for this package -HOMEPAGE="http://packages.debian.org/stable/utils/konfont" +HOMEPAGE="https://packages.debian.org/stable/utils/konfont" +SRC_URI="mirror://debian/dists/potato/main/source/utils/${MY_P}.tar.gz" LICENSE="public-domain" SLOT=0 KEYWORDS="alpha amd64 arm hppa ia64 ppc s390 sh sparc x86" -IUSE="" - -DEPEND="" - -S="${WORKDIR}/${MY_P/_/-}/fonts" - # Only installs fonts RESTRICT="strip binchecks" -src_install(){ +S="${WORKDIR}/${MY_P/_/-}/fonts" + +src_install() { insinto /usr/share/fonts - doins pubfont.*.gz || die + doins pubfont.*.gz } |