# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header:$ IUSE="oss nls" DESCRIPTION="BMP plugins that have been ported, but are not included in the BMP main tree." HOMEPAGE="http://www.sosdg.org/~larne/w/Plugin_list" SRC_URI="http://www.t17.ikarnet.pl/~wiget/bmp-extra-plugins/download/${P}.tar.bz2" SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86" DEPEND="media-sound/beep-media-player" src_unpack() { unpack ${A} } src_compile() { local myconf="" if useq !oss; then myconf="${myconf} --disable-oss" fi if useq !nls; then myconf="${myconf} --disable-nls" fi econf ${myconf} || die emake || die } src_install () { make DESTDIR=${D} install || die rm -f ${D}/usr/lib/bmp/Input/mplayer.* }