diff options
author | Samuli Suominen <drac@gentoo.org> | 2008-04-11 11:13:19 +0000 |
---|---|---|
committer | Samuli Suominen <drac@gentoo.org> | 2008-04-11 11:13:19 +0000 |
commit | e1e897a2307bdbccb09cbc459a7679b476e4b058 (patch) | |
tree | 75d207402125578d73b512276ff9a9dec6a37c8f /media-sound/audtty | |
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')
-rw-r--r-- | media-sound/audtty/ChangeLog | 6 | ||||
-rw-r--r-- | media-sound/audtty/audtty-0.1.7.ebuild | 21 |
2 files changed, 15 insertions, 12 deletions
diff --git a/media-sound/audtty/ChangeLog b/media-sound/audtty/ChangeLog index 94fa6907d50a..a42e1e4c4e52 100644 --- a/media-sound/audtty/ChangeLog +++ b/media-sound/audtty/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-sound/audtty # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/audtty/ChangeLog,v 1.13 2008/01/14 14:10:10 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/audtty/ChangeLog,v 1.14 2008/04/11 11:13:19 drac Exp $ + + 11 Apr 2008; Samuli Suominen <drac@gentoo.org> audtty-0.1.7.ebuild: + Fixed invalid depend, pkgconfig is only required when building. Marked amd64 + stable for bug 216888. Use emake instead of make. 14 Jan 2008; Tony Vroon <chainsaw@gentoo.org> audtty-0.1.7.ebuild: Add pkgconfig dependency for the Evil Compile Person 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." } |