blob: bba4cd597dc5a1496e71e469c9ade7b788bcfed7 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-mud/kmuddy/kmuddy-1.0.1.ebuild,v 1.3 2009/12/23 21:04:49 ssuominen Exp $
EAPI=2
KDE_LINGUAS="es"
KDE_DOC_DIRS="doc/${PN}"
inherit kde4-base
DESCRIPTION="MUD client for KDE"
HOMEPAGE="http://www.kmuddy.com/"
SRC_URI="http://www.kmuddy.com/releases/stable/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="debug handbook"
DOC="AUTHORS README CHANGELOG Scripting-HOWTO TODO DESIGN"
src_configure() {
# not in portage yet
mycmakeargs+="
-DWITH_MXP=OFF
"
kde4-base_src_configure
}
|