blob: 06ffa2528b63f747507b18b0c9c630db896b685a (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/pxlinux/pxlinux-0.0.4-r1.ebuild,v 1.2 2006/01/29 19:50:58 cryos Exp $
inherit eutils
DESCRIPTION="PlexTools-like app for Plextor drives in linux"
HOMEPAGE="http://www-user.tu-chemnitz.de/~noe/Plextor/"
SRC_URI="http://www-user.tu-chemnitz.de/~noe/Plextor/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="gnuplot"
RDEPEND="gnuplot? ( dev-lang/python sci-visualization/gnuplot )"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-cleanups.patch
rm -f Makefile
}
src_compile() {
emake ta pif pisum8 jitterbeta || die "compile failed"
}
src_install() {
dobin ta pif pisum8 jitterbeta || die "dobin failed"
use gnuplot && dobin *.py
dodoc CHANGELOG
dohtml -r doc_html/*
}
|