diff options
author | 2008-04-11 11:13:19 +0000 | |
---|---|---|
committer | 2008-04-11 11:13:19 +0000 | |
commit | e1e897a2307bdbccb09cbc459a7679b476e4b058 (patch) | |
tree | 75d207402125578d73b512276ff9a9dec6a37c8f /media-sound/audtty/audtty-0.1.7.ebuild | |
parent | amd64 stable wrt #217146 (diff) | |
download | gentoo-2-e1e897a2307bdbccb09cbc459a7679b476e4b058.tar.gz gentoo-2-e1e897a2307bdbccb09cbc459a7679b476e4b058.tar.bz2 gentoo-2-e1e897a2307bdbccb09cbc459a7679b476e4b058.zip |
Fixed invalid depend, pkgconfig is only required when building. Marked amd64 stable for bug 216888. Use emake instead of make.
(Portage version: 2.1.4.4)
Diffstat (limited to 'media-sound/audtty/audtty-0.1.7.ebuild')
-rw-r--r-- | media-sound/audtty/audtty-0.1.7.ebuild | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/media-sound/audtty/audtty-0.1.7.ebuild b/media-sound/audtty/audtty-0.1.7.ebuild index dc8bc77ae6c1..21b032e8785b 100644 --- a/media-sound/audtty/audtty-0.1.7.ebuild +++ b/media-sound/audtty/audtty-0.1.7.ebuild @@ -1,24 +1,23 @@ # 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.2 2008/01/14 14:10:10 chainsaw Exp $ - -IUSE="" +# $Header: /var/cvsroot/gentoo-x86/media-sound/audtty/audtty-0.1.7.ebuild,v 1.3 2008/04/11 11:13:19 drac Exp $ DESCRIPTION="Control Audacious from the command line with a friendly ncurses interface" -HOMEPAGE="http://audtty.alioth.debian.org/" -SRC_URI="http://audtty.alioth.debian.org/audtty/${P}.tar.gz" +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="" -KEYWORDS="~alpha ~amd64 ~ppc ~x86" - -DEPEND="dev-util/pkgconfig - sys-libs/ncurses +RDEPEND="sys-libs/ncurses >=media-sound/audacious-1.4.4" +DEPEND="${RDEPEND} + dev-util/pkgconfig" src_install() { - make DESTDIR="${D}" install || die + emake DESTDIR="${D}" install || die "emake install failed." dodoc ChangeLog README } @@ -26,7 +25,7 @@ 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://audtty.alioth.debian.org/dbus.sh" + elog "http://${PN}.alioth.debian.org/dbus.sh" elog "" elog "Once run you will need to add ~/.dbus-session to your ~/.bashrc file." } |