summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2006-11-25 14:59:46 +0000
committerAlexis Ballier <aballier@gentoo.org>2006-11-25 14:59:46 +0000
commit8dbd4808cd4aa1478478cdfca0bcc8b5838bae91 (patch)
tree983f240272a7616e48b0b38f6dd20de9186fa50d /media-sound
parentremoved win4lin (diff)
downloadgentoo-2-8dbd4808cd4aa1478478cdfca0bcc8b5838bae91.tar.gz
gentoo-2-8dbd4808cd4aa1478478cdfca0bcc8b5838bae91.tar.bz2
gentoo-2-8dbd4808cd4aa1478478cdfca0bcc8b5838bae91.zip
Version bump
(Portage version: 2.1.2_rc2-r2)
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/lash/ChangeLog7
-rw-r--r--media-sound/lash/files/digest-lash-0.5.23
-rw-r--r--media-sound/lash/lash-0.5.2.ebuild40
3 files changed, 49 insertions, 1 deletions
diff --git a/media-sound/lash/ChangeLog b/media-sound/lash/ChangeLog
index 015280f88c83..8c5e2d39690d 100644
--- a/media-sound/lash/ChangeLog
+++ b/media-sound/lash/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for media-sound/lash
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.6 2006/10/10 14:04:37 gustavoz Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/ChangeLog,v 1.7 2006/11/25 14:59:46 aballier Exp $
+
+*lash-0.5.2 (25 Nov 2006)
+
+ 25 Nov 2006; Alexis Ballier <aballier@gentoo.org> +lash-0.5.2.ebuild:
+ Version bump
10 Oct 2006; Gustavo Zacarias <gustavoz@gentoo.org> lash-0.5.1.ebuild:
Sparc stable directly, see #150398
diff --git a/media-sound/lash/files/digest-lash-0.5.2 b/media-sound/lash/files/digest-lash-0.5.2
new file mode 100644
index 000000000000..1c6bf0b55c23
--- /dev/null
+++ b/media-sound/lash/files/digest-lash-0.5.2
@@ -0,0 +1,3 @@
+MD5 75ab0c28ce294543e8e0f636c3a209a1 lash-0.5.2.tar.gz 534176
+RMD160 111623271c4d6916d075fafa93057d8820f1ce78 lash-0.5.2.tar.gz 534176
+SHA256 ebc9f1b5b551cacf261299977068ce1547c13174fb6258d1ef8d2bfeb346794c lash-0.5.2.tar.gz 534176
diff --git a/media-sound/lash/lash-0.5.2.ebuild b/media-sound/lash/lash-0.5.2.ebuild
new file mode 100644
index 000000000000..078ce7ec9b7e
--- /dev/null
+++ b/media-sound/lash/lash-0.5.2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/lash/lash-0.5.2.ebuild,v 1.1 2006/11/25 14:59:46 aballier Exp $
+
+inherit eutils
+
+IUSE=""
+
+DESCRIPTION="LASH Audio Session Handler"
+HOMEPAGE="http://www.nongnu.org/lash/"
+SRC_URI="http://download.savannah.gnu.org/releases/lash/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+DEPEND="media-libs/alsa-lib
+ media-sound/jack-audio-connection-kit
+ dev-libs/libxml2
+ >=x11-libs/gtk+-2.0"
+
+src_compile() {
+ econf --disable-serv-inst || die "econf failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+
+ # Add to /etc/services
+ if ! grep -q ^lash /etc/services; then
+ dodir /etc
+ insinto /etc
+ doins /etc/services
+ echo -e "\nlash\t\t14541/tcp\t\t\t# LASH client/server protocol" >> ${D}/etc/services
+ fi
+
+ dodoc AUTHORS ChangeLog NEWS README TODO
+}