blob: 00a19f56c0f2784e926d2d64767f44006e0d1c0e (
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
36
37
38
39
40
41
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/audtty/audtty-0.1.7.ebuild,v 1.7 2008/04/26 16:32:53 nixnut Exp $
inherit eutils
DESCRIPTION="Control Audacious from the command line with a friendly ncurses interface"
HOMEPAGE="http://audtty.alioth.debian.org"
SRC_URI="http://${PN}.alioth.debian.org/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 ppc x86"
IUSE=""
RDEPEND="sys-libs/ncurses
>=media-sound/audacious-1.4.4"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
pkg_setup() {
if has_version "=media-sound/audacious-1.4*"; then
if ! built_with_use media-sound/audacious dbus; then
die "Re-emerge media-sound/audacious with USE dbus."
fi
fi
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc ChangeLog README
}
pkg_postinst() {
elog "In order to run audtty over ssh or on a seperate TTY locally you need"
elog "to download and run the following script in a terminal on your desktop:"
elog ""
elog "http://${PN}.alioth.debian.org/dbus.sh"
elog ""
elog "Once run you will need to add ~/.dbus-session to your ~/.bashrc file."
}
|