blob: d48f7f1778cc5fe3e17b2c11154cbc38e4cf7ab2 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/gtick/gtick-0.2.4.ebuild,v 1.5 2004/06/25 00:04:52 agriffis Exp $
IUSE=""
DESCRIPTION="a metronome application supporting different meters and speeds ranging"
HOMEPAGE="http://www.antcom.de/gtick/"
SRC_URI="http://savannah.nongnu.org/download/gtick/default.pkg/${PV}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND=">=x11-libs/gtk+-2.0
virtual/glibc"
src_compile() {
econf || die "configure failed"
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS COPYING REAME NEWS
}
|