blob: 9707b54d22e0d29e93fbdab7252f545be944a365 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
GIT_HASH="7fd7d045fd4b4cdeebf4d07c1c5cd9649c2172b8"
DESCRIPTION="Simplified BOOTP/DHCP/PXE/TFTP server"
HOMEPAGE="https://github.com/eblot/pybootd"
SRC_URI="https://github.com/eblot/pybootd/archive/${GIT_HASH:0:6}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-python/netifaces-0.5"
DEPEND=""
S="${WORKDIR}/pybootd-${GIT_HASH}"
PATCHES=(
"${FILESDIR}"/${PN}-scripts.patch
)
|