summaryrefslogtreecommitdiff
blob: 11f5771bafefecddbd10e1a4019181040b8f39c6 (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
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DESCRIPTION="A cross-platform TCL/TK based MUD client"
HOMEPAGE="https://sourceforge.net/projects/trebuchet/"
SRC_URI="https://downloads.sourceforge.net/trebuchet/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RESTRICT="test"

RDEPEND="
	dev-lang/tcl
	>=dev-lang/tk-8.3.3
"

src_install() {
	emake install \
		prefix="${ED}/usr" \
		ROOT="${ED}/usr/share/${PN}"

	dosym ../share/${PN}/${PN^}.tcl /usr/bin/treb
	dodoc changes.txt README.md trebtodo.txt
}