diff options
author | 2015-11-15 14:34:57 -0500 | |
---|---|---|
committer | 2015-11-15 14:34:57 -0500 | |
commit | 2e197ba407044d0df69b4c391e6f21f02faef6b5 (patch) | |
tree | b32cacb62b259e58448faf5d36e4b708b11b22b8 /games-util/wxchtdecoder/wxchtdecoder-1.5a-r1.ebuild | |
parent | dev-util/perf: Add ~alpha. (diff) | |
download | gentoo-2e197ba407044d0df69b4c391e6f21f02faef6b5.tar.gz gentoo-2e197ba407044d0df69b4c391e6f21f02faef6b5.tar.bz2 gentoo-2e197ba407044d0df69b4c391e6f21f02faef6b5.zip |
rev bump to work with wxGTK:3.0 (bug #564090)
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'games-util/wxchtdecoder/wxchtdecoder-1.5a-r1.ebuild')
-rw-r--r-- | games-util/wxchtdecoder/wxchtdecoder-1.5a-r1.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/games-util/wxchtdecoder/wxchtdecoder-1.5a-r1.ebuild b/games-util/wxchtdecoder/wxchtdecoder-1.5a-r1.ebuild new file mode 100644 index 000000000000..71c838660d4b --- /dev/null +++ b/games-util/wxchtdecoder/wxchtdecoder-1.5a-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +WX_GTK_VER="3.0" +inherit eutils wxwidgets + +DESCRIPTION="A program to decode .CHT files in Snes9x and ZSNES to plain text" +HOMEPAGE="http://games.technoplaza.net/chtdecoder/" +SRC_URI="mirror://gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="x11-libs/wxGTK:${WX_GTK_VER}[X]" +RDEPEND=${DEPEND} + +src_prepare() { + epatch "${FILESDIR}"/${P}-wxgtk.patch +} + +src_configure() { + econf --with-wx-config=${WX_CONFIG} +} + +src_install() { + dobin source/wxchtdecoder + dodoc docs/wxchtdecoder.txt +} |