diff options
author | Tony Vroon <chainsaw@gentoo.org> | 2005-10-10 22:07:19 +0000 |
---|---|---|
committer | Tony Vroon <chainsaw@gentoo.org> | 2005-10-10 22:07:19 +0000 |
commit | ad20cb85c6480f125fdcec237aa0f749dfea618c (patch) | |
tree | b145b1ac1ce71f78cd838324ecc729f15bfbe538 /media-libs/libnjb/libnjb-2.2.4.ebuild | |
parent | New version. (diff) | |
download | gentoo-2-ad20cb85c6480f125fdcec237aa0f749dfea618c.tar.gz gentoo-2-ad20cb85c6480f125fdcec237aa0f749dfea618c.tar.bz2 gentoo-2-ad20cb85c6480f125fdcec237aa0f749dfea618c.zip |
Version bump. Adds support for Creative Zen (Micro-like unit with 20GB capacity) and makes turbo speed optional. 2.2.3 stable on amd64.
(Portage version: 2.0.53_rc4)
Diffstat (limited to 'media-libs/libnjb/libnjb-2.2.4.ebuild')
-rw-r--r-- | media-libs/libnjb/libnjb-2.2.4.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/media-libs/libnjb/libnjb-2.2.4.ebuild b/media-libs/libnjb/libnjb-2.2.4.ebuild new file mode 100644 index 000000000000..21f5c8883a76 --- /dev/null +++ b/media-libs/libnjb/libnjb-2.2.4.ebuild @@ -0,0 +1,41 @@ +# 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.2.4.ebuild,v 1.1 2005/10/10 22:07:19 chainsaw Exp $ + +inherit eutils + + +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/${P}.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 compatability + dosym libnjb.so /usr/$(get_libdir)/libnjb.so.0 + + dodoc HACKING FAQ INSTALL ChangeLog README + exeinto /etc/hotplug/usb/ + doexe nomadjukebox +} |