summaryrefslogtreecommitdiff
blob: 575f7327778c6bf9c42cbf5c52ba31289f20228a (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
33
34
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5

DESCRIPTION="Online command-line translator"
HOMEPAGE="https://www.soimort.org/translate-shell/"
SRC_URI="https://github.com/soimort/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+curl fribidi test tts"

RDEPEND="
	app-misc/rlwrap
	>=sys-apps/gawk-4.0.2
	curl? ( net-misc/curl[ssl] )
	fribidi? ( dev-libs/fribidi )
	tts? ( || (
		media-sound/mpg123
		app-accessibility/espeak
		media-video/mpv
		media-video/mplayer
		)
	)"
DEPEND="${RDEPEND}
	test? ( app-editors/emacs )
	"

src_install() {
	emake PREFIX="${D}/usr" install
}