blob: 8e8dc85cbb38d39fa58f9358b8ae601b5be4db52 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/bemused/bemused-1.73.ebuild,v 1.1 2005/05/16 17:51:52 mrness Exp $
MY_P=${PN}linuxserver-${PV/./_}
DESCRIPTION="Bemused is a system which allows you to control your music collection from your phone, using Bluetooth."
HOMEPAGE="http://bemused.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
S="${WORKDIR}/${PN}linuxserver${PV}"
DEPEND="media-sound/xmms
net-wireless/bluez-libs"
src_compile() {
make || die
}
src_install() {
dobin bemusedlinuxserver
insinto /etc
doins bemused.conf
dodoc ChangeLog authors copying readme todo
einfo "Please note that due to the specific hardware nature"
einfo "of this package, only upstream support can be"
einfo "provided!"
}
|