blob: ce9db844364c469e47d5b552328c8db4d5e5b144 (
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
25
26
27
28
29
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/spek/spek-0.7.ebuild,v 1.1 2011/04/25 19:06:02 xmw Exp $
EAPI=3
DESCRIPTION="Analyse your audio files by showing their spectrogram"
HOMEPAGE="http://www.spek-project.org/"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="dev-libs/glib
virtual/ffmpeg
>=x11-libs/gtk+-2.18:2"
DEPEND="${RDEPEND}
dev-lang/vala:0.10
dev-util/intltool
dev-util/pkgconfig
sys-devel/gettext"
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS NEWS || die
}
|