diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-03-05 10:33:47 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-03-05 10:33:47 +0000 |
commit | 4ca1b578a05a44141ec869944ea17710bf5c88f9 (patch) | |
tree | 23961e4982fa80f17643f836ef1b2ae9f0193dbc /media-sound/waif | |
parent | Mark stable (diff) | |
download | historical-4ca1b578a05a44141ec869944ea17710bf5c88f9.tar.gz historical-4ca1b578a05a44141ec869944ea17710bf5c88f9.tar.bz2 historical-4ca1b578a05a44141ec869944ea17710bf5c88f9.zip |
version bump and stable for x86
Diffstat (limited to 'media-sound/waif')
-rw-r--r-- | media-sound/waif/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/waif/files/digest-waif-0.59.6 | 2 | ||||
-rw-r--r-- | media-sound/waif/waif-0.59.5.ebuild | 4 | ||||
-rw-r--r-- | media-sound/waif/waif-0.59.6.ebuild | 67 |
4 files changed, 79 insertions, 3 deletions
diff --git a/media-sound/waif/ChangeLog b/media-sound/waif/ChangeLog index b0819879eb61..cb0b456b5d3e 100644 --- a/media-sound/waif/ChangeLog +++ b/media-sound/waif/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-sound/waif # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/waif/ChangeLog,v 1.6 2003/02/24 12:28:13 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/waif/ChangeLog,v 1.7 2003/03/05 10:33:47 seemant Exp $ + +*waif-0.59.6 (05 Mar 2003) + + 05 Mar 2003; Seemant Kulleen <seemant@gentoo.org> waif-0.59.6.ebuild: + version bump, thanks to Matthew Levine via e-mail. This release contains + more bugfixes: improved reshuffling and justified display on the waifsh + show command. Feed it a playlist of 100's to see what this means :P. *waif-0.59.5 (24 Feb 2003) diff --git a/media-sound/waif/files/digest-waif-0.59.6 b/media-sound/waif/files/digest-waif-0.59.6 new file mode 100644 index 000000000000..6a46b5ca71f0 --- /dev/null +++ b/media-sound/waif/files/digest-waif-0.59.6 @@ -0,0 +1,2 @@ +MD5 1e15f3ff309fbb86bdd44ade30025295 waif-0.59.6.tar.gz 61661 +MD5 563a36a809ff3e422f41ed5cc90c8a69 wfxmms-0.6.tgz 5192 diff --git a/media-sound/waif/waif-0.59.5.ebuild b/media-sound/waif/waif-0.59.5.ebuild index 2ee090a1461a..c64d29e803c5 100644 --- a/media-sound/waif/waif-0.59.5.ebuild +++ b/media-sound/waif/waif-0.59.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/waif/waif-0.59.5.ebuild,v 1.1 2003/02/24 12:28:13 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/waif/waif-0.59.5.ebuild,v 1.2 2003/03/05 10:33:47 seemant Exp $ IUSE="X gnome" @@ -13,7 +13,7 @@ SRC_URI="http://www.eds.org/~straycat/${P}.tar.gz SLOT="0" LICENSE="as-is" -KEYWORDS="~x86" +KEYWORDS="x86" DEPEND="dev-lang/tcl dev-tcltk/expect" diff --git a/media-sound/waif/waif-0.59.6.ebuild b/media-sound/waif/waif-0.59.6.ebuild new file mode 100644 index 000000000000..a68727cca0f2 --- /dev/null +++ b/media-sound/waif/waif-0.59.6.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/waif/waif-0.59.6.ebuild,v 1.1 2003/03/05 10:33:47 seemant Exp $ + +IUSE="X gnome" + +S=${WORKDIR}/${PN} +S2=${WORKDIR}/wfxmms +DESCRIPTION="Why Another Infernal Frontend -- console front end for various media-players" +HOMEPAGE="http://eds.org/~straycat" +SRC_URI="http://www.eds.org/~straycat/${P}.tar.gz + xmms? http://www.eds.org/~straycat/wfxmms-0.6.tgz" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="~x86" + +DEPEND="dev-lang/tcl + dev-tcltk/expect" + +RDEPEND="dev-tcltk/expect + media-sound/takcd + media-sound/aumix + media-sound/id3ed + xmms? ( media-sound/xmms ) + oggvorbis? ( media-sound/vorbis-tools )" + + +src_compile() { + cd Waif + ./mkindex.sh || die + + if use xmms + then + cd ${S2} + make || die + fi +} + +src_install() { + + local tclv + tclv=$(grep TCL_VER /usr/include/tcl.h | sed 's:^.*"\(.*\)".*:\1:') + + cd ${S} + insinto /usr/lib/tcl${tclv}/Waif + doins Waif/* + + into /usr + dobin waif-helper waifsh + doman waifsh.1 + + dodoc CHANGES FAQ INSTALL README* TODO WHATSNEW + dodoc ${FILESDIR}/LICENSE + docinto Documentation + dodoc Documentation/* + + if use xmms + then + cd ${S2} + into /usr + dobin wfxmms + + docinto wfxmms + dodoc BUGS CHANGES README + fi +} |