diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2004-02-22 13:31:58 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2004-02-22 13:31:58 +0000 |
commit | 3415fd776572e39d03082d608a80a98e5fb24bda (patch) | |
tree | 562da0cded6f84e1272f41ffeee6e75622b37bd6 /app-misc | |
parent | Newer icon set, desktop file installation simplified (Manifest recommit) (diff) | |
download | gentoo-2-3415fd776572e39d03082d608a80a98e5fb24bda.tar.gz gentoo-2-3415fd776572e39d03082d608a80a98e5fb24bda.tar.bz2 gentoo-2-3415fd776572e39d03082d608a80a98e5fb24bda.zip |
Closing #42464
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/livetools/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/livetools/Manifest | 4 | ||||
-rw-r--r-- | app-misc/livetools/files/digest-livetools-1.2.3 | 1 | ||||
-rw-r--r-- | app-misc/livetools/livetools-1.2.3.ebuild | 31 |
4 files changed, 41 insertions, 2 deletions
diff --git a/app-misc/livetools/ChangeLog b/app-misc/livetools/ChangeLog index 73f3ffb95760..7a26094b720a 100644 --- a/app-misc/livetools/ChangeLog +++ b/app-misc/livetools/ChangeLog @@ -1,7 +1,12 @@ # ChangeLog for app-misc/livetools -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 # $Header +*livetools-1.2.3 (22 Feb 2004) + + 22 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> livetools-1.2.3.ebuild: + Version bump. Found by Christian Gut <cycloon@is-root.org> in #42464. + *livetools-1.1 (11 Dec 2002) 11 Dec 2002; Matt Keadle <mkeadle@gentoo.org> livetools-1.1.ebuild diff --git a/app-misc/livetools/Manifest b/app-misc/livetools/Manifest index b9aa6199524f..40c4e63b9bfa 100644 --- a/app-misc/livetools/Manifest +++ b/app-misc/livetools/Manifest @@ -1,3 +1,5 @@ -MD5 4798e5f22ef14b03267f13a8156ccce5 files/digest-livetools-1.1 66 +MD5 37f3090f96417b008e651e9f342f9479 livetools-1.2.3.ebuild 1022 MD5 c3d8ae11c5fc4e406c88204e9e7c41d0 livetools-1.1.ebuild 1019 MD5 79ed5721c9dbeaf259818302a06d68d3 ChangeLog 418 +MD5 7c5f46bd76ffbe5bb79328d5d1a158e9 files/digest-livetools-1.2.3 68 +MD5 4798e5f22ef14b03267f13a8156ccce5 files/digest-livetools-1.1 66 diff --git a/app-misc/livetools/files/digest-livetools-1.2.3 b/app-misc/livetools/files/digest-livetools-1.2.3 new file mode 100644 index 000000000000..c03f6365277a --- /dev/null +++ b/app-misc/livetools/files/digest-livetools-1.2.3 @@ -0,0 +1 @@ +MD5 2805b5f9d3ae8f0a326ab744c64228ee livetools-1.2.3.tar.bz2 152975 diff --git a/app-misc/livetools/livetools-1.2.3.ebuild b/app-misc/livetools/livetools-1.2.3.ebuild new file mode 100644 index 000000000000..2c279652fb2a --- /dev/null +++ b/app-misc/livetools/livetools-1.2.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/livetools/livetools-1.2.3.ebuild,v 1.1 2004/02/22 13:31:58 aliz Exp $ + +DESCRIPTION="A small set of utilities to allow easy access to Creative's SoundBlaster Live!Drive IR's remote control." +HOMEPAGE="http://www.clarkson.edu/~evanchsa/software/livetools/" +SRC_URI="http://www.clarkson.edu/~evanchsa/software/livetools/${PV}/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +# Currently, this is only functional as a XMMS plugin +# so it makes no sense to run it without XMMS. When it +# becomes more generalized we can remove the XMMS dep. +DEPEND="media-sound/xmms" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --sysconfdir=/etc || die "./configure failed" + emake || die +} + +src_install() { + make DESTDIR=${D} install || die + dodoc AUTHORS ChangeLog NEWS README TODO +} |