blob: bf3c5dd4464cd307acbda3e05113b162a43415ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils qt4-r2
DESCRIPTION="Utility to encode and decode Game Genie (tm) codes"
HOMEPAGE="http://games.technoplaza.net/ggencoder/qt/"
SRC_URI="http://games.technoplaza.net/ggencoder/qt/history/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="doc"
DEPEND="dev-qt/qtcore:4
dev-qt/qtgui:4"
RDEPEND=${DEPEND}
S=${WORKDIR}/${P}/source
src_install() {
dobin ${PN}
dodoc ../docs/ggencoder.txt
if use doc ; then
dohtml -r ../apidocs/html/*
fi
}
|