27 lines
644 B
Bash
27 lines
644 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="4"
|
|
|
|
inherit eutils
|
|
|
|
GITHUB_USER="ago"
|
|
PV_COMMIT='0deb9c7e135e9380a6d09e9d2e938a146bb698c8'
|
|
|
|
DESCRIPTION="User-space tools for LinuxPPS"
|
|
HOMEPAGE="http://wiki.enneenne.com/index.php/LinuxPPS_installation"
|
|
SRC_URI="https://github.com/${GITHUB_USER}/${PN}/tarball/${PV_COMMIT} -> ${PN}-git-${PV}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE=""
|
|
|
|
S="${WORKDIR}/${GITHUB_USER}-${PN}-${PV_COMMIT:0:7}"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-build.patch
|
|
epatch "${FILESDIR}"/${P}-install.patch
|
|
tc-export CC
|
|
}
|