blob: 5d42f6e6eb721babec061c25693adb3e42ecdb15 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit golang-vcs-snapshot
inherit systemd
EGO_PN=github.com/snapcore/snapd
EGO_SRC=github.com/snapcore/snapd/...
EGIT_COMMIT="181f66ac30bc3a2bfb8e83c809019c037d34d1f3"
DESCRIPTION="Service and tools for management of snap packages"
HOMEPAGE="http://snapcraft.io/"
SRC_URI="https://github.com/snapcore/${PN}/archive/${PV}.tar.gz -> ${PF}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64"
RESTRICT="mirror"
RDEPEND="sys-apps/snap-confine
sys-fs/squashfs-tools:*"
DEPEND="${RDEPEND}
dev-vcs/git
dev-vcs/bzr"
src_compile() {
cp -sR "$(go env GOROOT)" "${T}/goroot" || die
rm -rf "${T}/goroot/src/${EGO_SRC}" || die
rm -rf "${T}/goroot/pkg/$(go env GOOS)_$(go env GOARCH)/${EGO_SRC}" || die
export GOROOT="${T}/goroot"
export GOPATH="${WORKDIR}/${P}"
cd src/${EGO_PN} && ./get-deps.sh
go install -v "${EGO_PN}/cmd/snapd" || die
go install -v "${EGO_PN}/cmd/snap" || die
}
src_install() {
export GOPATH="${WORKDIR}/${P}"
exeinto /usr/bin
dobin "$GOPATH/bin/snap"
exeinto /usr/lib/snapd/
doexe "$GOPATH/bin/snapd"
cd "src/${EGO_PN}" || die
systemd_dounit debian/snapd.{service,socket}
systemd_dounit debian/snapd.refresh.{service,timer}
sed -i -e 's/RandomizedDelaySec=/#RandomizedDelaySec=/' debian/snapd.refresh.timer
systemd_dounit debian/snapd.frameworks.target
systemd_dounit debian/snapd.frameworks-pre.target
dodir /etc/profile.d/
echo 'PATH=$PATH:/snap/bin' > ${D}/etc/profile.d/snapd.sh
}
pkg_postinst() {
systemctl enable snapd.socket
systemctl enable snapd.refresh.timer
}
pkg_postrm() {
systemctl disable snapd.service
systemctl stop snapd.service
systemctl disable snapd.socket
systemctl disable snapd.refresh.timer
}
|