blob: 12d3df30ce6ffc4c044e48f3b5077415265683a1 (
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
29
30
31
32
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-util/agistudio/agistudio-1.2.4.ebuild,v 1.1 2009/08/10 22:36:10 mr_bones_ Exp $
EAPI=2
inherit qt3
DESCRIPTION="QT AGI Studio allows you to view, create and edit AGI games"
HOMEPAGE="http://agistudio.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="x11-libs/qt:3"
S=${WORKDIR}/${P}/src
src_prepare() {
eqmake3 agistudio.pro -o Makefile || die "eqmake3 failed"
}
src_install() {
dobin agistudio || die "dobin failed"
cd ..
insinto /usr/share/${PN}
doins -r help template || die "doins failed"
doman agistudio.1
dodoc README relnotes
}
|