blob: 0bea92bb957c298e76e1bb226723261e1ab3a120 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit transmission-2.83
DESCRIPTION="A Fast, Easy and Free BitTorrent client - base files"
KEYWORDS="~amd64 ~x86"
IUSE="lightweight xfs"
DEPEND="xfs? ( sys-fs/xfsprogs )"
DOCS="AUTHORS NEWS"
src_install() {
default
rm "${ED}"/usr/share/${MY_PN}/web/LICENSE || die
keepdir /var/{lib/${MY_PN}/{config,downloads},log/${MY_PN}}
fowners -R ${MY_PN}:${MY_PN} /var/{lib/${MY_PN}/{,config,downloads},log/${MY_PN}}
dolib.a "${S}/libtransmission/libtransmission.a"
}
|