blob: 2a989363398d8122509d2b431bc2203c541526eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-compress/xmms-compress-1.1.ebuild,v 1.2 2003/02/13 13:01:49 vapier Exp $
DESCRIPTION="xmms-compress is (essentially) a dynamic range compressor intended to keep the output of XMMS at a consistent volume without introducing any audible artifacts"
SRC_URI="http://trikuare.cx/~magenta/projects/${P}.tar.gz"
HOMEPAGE="http://trikuare.cx/~magenta/projects/xmms-compress.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
DEPEND="media-sound/xmms"
src_compile() {
emake || die
}
src_install() {
installdir="${D}$(xmms-config --effect-plugin-dir)"
install -d ${installdir} || die
install -m 755 libcompress.so ${installdir} || die
dodoc COPYING ChangeLog README TODO
}
|