blob: 6bd367d1d566a1d3719d0b47bfc80951c829106a (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/litecoind/litecoind-0.10.2.2-r1.ebuild,v 1.1 2015/07/14 12:01:02 blueness Exp $
EAPI=5
DB_VER="4.8"
inherit autotools db-use eutils systemd user
MyPV="${PV/_/-}"
MyPN="litecoin"
MyP="${MyPN}-${MyPV}"
DESCRIPTION="P2P Internet currency based on Bitcoin but easier to mine"
HOMEPAGE="https://litecoin.org/"
SRC_URI="https://github.com/${MyPN}-project/${MyPN}/archive/v${MyPV}.tar.gz -> ${MyP}.tar.gz"
LICENSE="MIT ISC GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="logrotate upnp"
RDEPEND="
dev-libs/boost[threads(+)]
dev-libs/openssl:0[-bindist]
logrotate? ( app-admin/logrotate )
upnp? ( net-libs/miniupnpc )
sys-libs/db:$(db_ver_to_slot "${DB_VER}")[cxx]
virtual/bitcoin-leveldb
"
DEPEND="${RDEPEND}
>=app-shells/bash-4.1
sys-apps/sed
"
S="${WORKDIR}/${MyP}"
pkg_setup() {
local UG='litecoin'
enewgroup "${UG}"
enewuser "${UG}" -1 -1 /var/lib/litecoin "${UG}"
}
src_prepare() {
epatch "${FILESDIR}/0.9.0-sys_leveldb.patch"
eautoreconf
rm -r src/leveldb
}
src_configure() {
local my_econf=
if use upnp; then
my_econf="${my_econf} --with-miniupnpc --enable-upnp-default"
else
my_econf="${my_econf} --without-miniupnpc --disable-upnp-default"
fi
econf \
--disable-wallet \
--disable-ccache \
--disable-static \
--disable-tests \
--with-system-leveldb \
--with-system-libsecp256k1 \
--without-libs \
--with-daemon \
--without-gui \
--without-qrencode \
${my_econf}
}
src_install() {
default
insinto /etc/litecoin
doins "${FILESDIR}/litecoin.conf"
fowners litecoin:litecoin /etc/litecoin/litecoin.conf
fperms 600 /etc/litecoin/litecoin.conf
newconfd "${FILESDIR}/litecoin.confd" ${PN}
newinitd "${FILESDIR}/litecoin.initd-r1" ${PN}
systemd_dounit "${FILESDIR}/litecoin.service"
keepdir /var/lib/litecoin/.litecoin
fperms 700 /var/lib/litecoin
fowners litecoin:litecoin /var/lib/litecoin/
fowners litecoin:litecoin /var/lib/litecoin/.litecoin
dosym /etc/litecoin/litecoin.conf /var/lib/litecoin/.litecoin/litecoin.conf
dodoc doc/README.md doc/release-notes.md
newman contrib/debian/manpages/bitcoind.1 litecoind.1
newman contrib/debian/manpages/bitcoin.conf.5 litecoin.conf.5
if use logrotate; then
insinto /etc/logrotate.d
newins "${FILESDIR}/litecoind.logrotate" litecoind
fi
}
|