mirror of
https://github.com/gryf/gryf-overlay.git
synced 2025-12-28 17:32:32 +01:00
47 lines
1.1 KiB
Bash
47 lines
1.1 KiB
Bash
# Copyright 1999-2006 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-imms/xmms-imms-2.0.3.ebuild,v 1.5 2006/03/06 13:57:03 flameeyes Exp $
|
|
|
|
inherit eutils
|
|
|
|
MY_P=${P/xmms-/}
|
|
DESCRIPTION="Intelligent playlist plug-in that tracks your listening patterns
|
|
and dynamically adapts to your taste"
|
|
HOMEPAGE="http://www.luminal.org/phpwiki/index.php/IMMS"
|
|
SRC_URI="mirror://sourceforge/imms/${MY_P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc sparc x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="=dev-db/sqlite-3*
|
|
>=media-sound/xmms-1.2.7
|
|
>=media-libs/taglib-1.1
|
|
>=dev-libs/libpcre-4.3
|
|
=sci-libs/fftw-3*
|
|
media-sound/sox"
|
|
DEPEND="${RDEPEND}
|
|
>=sys-devel/autoconf-2.5
|
|
>=sys-apps/sed-4.0.7"
|
|
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
src_unpack() {
|
|
unpack ${A} && cd ${S}
|
|
epatch ${FILESDIR}/${PV}-xorg.patch
|
|
}
|
|
|
|
src_install () {
|
|
dobin build/immsd || die
|
|
dobin build/immstool || die
|
|
dobin build/analyzer || die
|
|
|
|
exeinto "$(xmms-config --general-plugin-dir)"
|
|
doexe build/libxmmsimms*.so || die
|
|
|
|
dodoc README
|
|
}
|
|
|
|
src_test() { :; }
|