blob: b24144df958763b538a816d9386bc478f4f00f22 (
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
37
38
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libnjb/libnjb-2.2.6.ebuild,v 1.1 2008/02/15 13:06:50 drac Exp $
inherit libtool
DESCRIPTION="a C library and API for communicating with the Creative Nomad JukeBox digital audio player."
HOMEPAGE="http://libnjb.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
IUSE=""
RDEPEND=">=dev-libs/libusb-0.1.7"
DEPEND="${RDEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e "s:SUBDIRS = src sample doc:SUBDIRS = src doc:" Makefile.in
elibtoolize
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
# what?
# dosym ${PN}.so /usr/$(get_libdir)/${PN}.so.0
dodoc AUTHORS ChangeLog* FAQ HACKING README
insinto /etc/udev/rules.d
newins "${FILESDIR}"/${PN}.rules 80-${PN}.rules
insinto /usr/share/hal/fdi/information/20thirdparty
newins ${PN}.fdi 10-${PN}.fdi
}
|