blob: 8aa83dae4a4c0498ec92c69319b91eddb7d8fbe0 (
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
39
40
41
42
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libnjb/libnjb-2.1.2.ebuild,v 1.5 2005/11/21 19:58:40 chainsaw Exp $
inherit eutils
MY_PV=${PV/_pre/-0.}
DESCRIPTION="libnjb is a C library and API for communicating with the Creative Nomad JukeBox digital audio player under BSD and Linux."
HOMEPAGE="http://libnjb.sourceforge.net/"
SRC_URI="mirror://sourceforge/libnjb/${PN}-${MY_PV}.tar.gz"
IUSE=""
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
DEPEND=">=dev-libs/libusb-0.1.7"
S=${WORKDIR}/${PN}-${PV/_*}
src_unpack() {
unpack ${A}
cd ${S}
sed -i "s:SUBDIRS = src sample doc:SUBDIRS = src doc:" Makefile.in || die "sed failed"
}
src_compile() {
econf --enable-hotplugging || die "./configure failed."
emake -j1 || die "make failed."
}
src_install() {
make DESTDIR=${D} install || die "failed to install"
# Backwards compatibility
dosym libnjb.so /usr/$(get_libdir)/libnjb.so.0
dodoc FAQ INSTALL CHANGES README
exeinto /etc/hotplug/usb/
doexe nomadjukebox
}
|