blob: 817083693f60cac4c767b7f4a3dc6567e13d2477 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-wakeup/xmms-wakeup-0.15.ebuild,v 1.4 2004/07/19 20:17:15 eradicator Exp $
IUSE=""
DESCRIPTION="XMMS Wake-up Call is a client & server program which allows you to run XMMS remotely, intended to be used as a wake-up call."
HOMEPAGE="http://xmms-wake-up.sourceforge.net"
SRC_URI="mirror://sourceforge/xmms-wake-up/xmms-wakeup-0.15.tar.gz"
KEYWORDS="x86 amd64 sparc ~ppc"
SLOT="0"
LICENSE="GPL-2"
DEPEND="media-sound/xmms"
src_compile() {
emake all || die
}
src_install() {
exeinto /usr/bin
doexe xmms-wakeup-client xmms-wakeup-server
dodoc README CHANGELOG
}
pkg_postinst() {
einfo ""
einfo "Server is run with xmms-wakeup-server"
einfo "Client is run with xmms-wakeup-client"
einfo "Make sure to read the README for more information."
einfo ""
}
|