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

EAPI=5
inherit eutils toolchain-funcs

DESCRIPTION="Tool to change the parameters of a Plextor CD-ROM drive"
HOMEPAGE="http://plextor-tool.sourceforge.net/"
SRC_URI="mirror://sourceforge/plextor-tool/${P}.src.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static"

S=${WORKDIR}/${PN}/src

src_prepare() {
	epatch "${FILESDIR}"/${P}-build.patch
	gunzip plextor-tool.8.gz || die
}

src_compile() {
	local targets="plextor-tool"
	use static && targets="${targets} pt-static"
	echo ${targets} > my-make-targets
	emake CC="$(tc-getCC)" ${targets}
}

src_install() {
	local targets=$(<my-make-targets)
	dodoc ../doc/{NEWS,README} TODO
	dobin ${targets}
	doman plextor-tool.8
}