summaryrefslogtreecommitdiff
blob: e634c7ea3b82c51c87d58b9641fe038ca63aa959 (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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=5

inherit git-r3 multilib

DESCRIPTION="CGO bindings for libusb"
HOMEPAGE="https://github.com/hanwen/usb"
EGIT_REPO_URI="https://github.com/hanwen/usb.git"

LICENSE="BSD"
SLOT="0"
KEYWORDS=""
IUSE=""

DEPEND=">=dev-lang/go-1.4"
RDEPEND=""

# Tests require a connected mtp device
RESTRICT="test"

GO_PN="/usr/lib/go/src/github.com/hanwen/usb"

src_install() {
	insinto "${GO_PN}"
	doins *.go LICENSE || die "Install failed"
}

src_test() {
	go test -ldflags '-extldflags=-fno-PIC' ${GO_PN} || die
}