blob: c7b7246b286c9b6935b047be55039831c2bdfe74 (
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
35
36
37
38
39
40
41
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/transmission/transmission-0.6.ebuild,v 1.1 2006/06/28 01:22:39 squinky86 Exp $
inherit eutils
MY_P=${PN/t/T}-${PV}
DESCRIPTION="Transmission is a free, lightweight BitTorrent client."
HOMEPAGE="http://transmission.m0k.org"
SRC_URI="http://download.m0k.org/transmission/files/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gtk ssl"
DEPEND="sys-devel/gettext
gtk? ( >=x11-libs/gtk+-2.6 )
ssl? ( dev-libs/openssl )"
S="${WORKDIR}/${MY_P}"
src_compile() {
econf $(use_enable ssl openssl) \
$(use_enable gtk) || die "configure failed"
emake || die "make failed"
}
src_install() {
dobin cli/transmissioncli
if use gtk ; then
dobin gtk/transmission-gtk
insinto /usr/share/applications/
doins "${FILESDIR}"/transmission.desktop
insinto /usr/share/pixmaps/
doins "${FILESDIR}"/transmission.png
fi
dodoc AUTHORS NEWS README
}
|