blob: a347aa978c01264f2aeeacd2dd427a6021c523a5 (
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
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/lingot/lingot-0.7.6.ebuild,v 1.4 2008/07/05 07:04:20 drac Exp $
WANT_AUTOMAKE=1.9
inherit autotools eutils
DESCRIPTION="LINGOT Is Not a Guitar-Only Tuner"
HOMEPAGE="http://www.nongnu.org/lingot"
SRC_URI="http://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=x11-libs/gtk+-2"
DEPEND="${RDEPEND}
dev-util/pkgconfig
dev-util/intltool
sys-devel/gettext"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-clean-install.patch \
"${FILESDIR}"/${P}-memory_leak.patch
eautomake
}
src_compile() {
econf --disable-dependency-tracking
emake || die "emake failed."
}
src_install() {
emake DESTDIR="${D}" lingotdocdir="/usr/share/doc/${PF}" \
install || die "emake install failed."
prepalldocs
}
|