diff options
author | David Seifert <soap@gentoo.org> | 2019-12-12 18:31:07 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-12-12 18:31:07 +0100 |
commit | 39b43a800a9e8ec70692e72814e198bec0ac363e (patch) | |
tree | 6783f54d7128ee5f3acd9e72623552ef32cc79a9 /media-libs/compface/compface-1.5.2.ebuild | |
parent | media-libs/libirman: Port to EAPI 7 (diff) | |
download | gentoo-39b43a800a9e8ec70692e72814e198bec0ac363e.tar.gz gentoo-39b43a800a9e8ec70692e72814e198bec0ac363e.tar.bz2 gentoo-39b43a800a9e8ec70692e72814e198bec0ac363e.zip |
media-libs/compface: Port to EAPI 7
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'media-libs/compface/compface-1.5.2.ebuild')
-rw-r--r-- | media-libs/compface/compface-1.5.2.ebuild | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/media-libs/compface/compface-1.5.2.ebuild b/media-libs/compface/compface-1.5.2.ebuild index af03c528e505..db1dd3858f06 100644 --- a/media-libs/compface/compface-1.5.2.ebuild +++ b/media-libs/compface/compface-1.5.2.ebuild @@ -1,9 +1,7 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="4" - -inherit eutils +EAPI=7 DESCRIPTION="Utilities and library to convert to/from X-Face format" HOMEPAGE="http://www.xemacs.org/Download/optLibs.html" @@ -12,15 +10,12 @@ SRC_URI="http://ftp.xemacs.org/pub/xemacs/aux/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="" -src_prepare() { - epatch "${FILESDIR}"/${P}-destdir.diff - sed -i "/strip/d" Makefile.in -} +RDEPEND="dev-lang/perl" + +PATCHES=( "${FILESDIR}"/${P}-fix-build-system.patch ) src_install() { - emake DESTDIR="${D}" install - dodoc ChangeLog README + default newbin xbm2xface{.pl,} } |