blob: 10581cb2fa3c640d005d735e83b2ba9434bf702c (
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.1 2009/11/30 18:53:53 scarabeus 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
}
|