blob: 2d047446a31ac0dd9dfb375b00917c0b4e5f744e (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/endpoint/endpoint-0.1.0.ebuild,v 1.6 2008/04/19 23:06:12 vapier Exp $
inherit eutils
DESCRIPTION="Endpoint turns a Linux machine with one or more firewire cards into an SBP-2 device."
HOMEPAGE="http://oss.oracle.com/projects/endpoint/"
SRC_URI="http://oss.oracle.com/projects/endpoint/dist/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
RDEPEND=">=sys-libs/libraw1394-0.9
>=dev-libs/glib-2"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-errormessages.patch
}
src_install() {
emake -j1 install DESTDIR="${D}"
insinto /etc
newins docs/sample-endpoint.conf endpoint.conf
dodoc README AUTHORS ChangeLog
}
|