diff options
author | Austin English <wizardedit@gentoo.org> | 2016-08-04 14:28:21 -0500 |
---|---|---|
committer | Austin English <wizardedit@gentoo.org> | 2016-08-04 19:22:35 -0500 |
commit | 252a7f7cb16281b5cab6d793cce38399fef66575 (patch) | |
tree | 5f7cc5a07d1437bb520d8a878c478bc61607d772 /games-board/kcheckers | |
parent | games-board/holdingnuts: remove deprecated games eclass (diff) | |
download | gentoo-252a7f7cb16281b5cab6d793cce38399fef66575.tar.gz gentoo-252a7f7cb16281b5cab6d793cce38399fef66575.tar.bz2 gentoo-252a7f7cb16281b5cab6d793cce38399fef66575.zip |
games-board/kcheckers: remove deprecated games eclass
Also update to EAPI 6
Gentoo-Bug: https://bugs.gentoo.org/574082
Package-Manager: portage-2.3.0
Diffstat (limited to 'games-board/kcheckers')
-rw-r--r-- | games-board/kcheckers/kcheckers-0.8.1-r1.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/games-board/kcheckers/kcheckers-0.8.1-r1.ebuild b/games-board/kcheckers/kcheckers-0.8.1-r1.ebuild new file mode 100644 index 000000000000..8f96902fff3d --- /dev/null +++ b/games-board/kcheckers/kcheckers-0.8.1-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils qmake-utils + +DESCRIPTION="Qt version of the classic boardgame checkers" +HOMEPAGE="http://qcheckers.sourceforge.net/" +SRC_URI="mirror://gentoo/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" +IUSE="" + +DEPEND="dev-qt/qtgui:4" +RDEPEND=${DEPEND} + +src_prepare() { + default + + sed -i \ + -e "s:/usr/local:/usr:" \ + common.h || die +} + +src_configure() { + eqmake4 +} + +src_install() { + dobin kcheckers + + insinto /usr/share/${PN} + doins -r i18n/* themes + + newicon icons/biglogo.png ${PN}.png + make_desktop_entry ${PN} KCheckers + + dodoc AUTHORS ChangeLog FAQ README TODO +} |