blob: d2bfa2bb9045f9dad589f7fec14baf4fb46f6845 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
inherit unpacker multilib versionator eutils
MY_PN="LinuxTycoon"
MY_PV=$(replace_version_separator 2 '-')
MY_P="${MY_PN}-${MY_PV}"
DESCRIPTION="Lunduke made Linux Tycoon"
HOMEPAGE="http://lunduke.com/?page_id=2646"
SRC_URI="http://www.lunduke.com/linuxtycoon/${MY_PN}.tar.gz -> ${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
RESTRICT="fetch strip"
RDEPEND="x11-libs/pango
media-libs/libpng:2
x11-libs/pixman
amd64? (
app-emulation/emul-linux-x86-gtklibs
app-emulation/emul-linux-x86-baselibs )"
DEPEND=""
S="${WORKDIR}"
|