blob: d2f6ff66cebdf76cf8e3d6339d6979090f5ee318 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit autotools
DESCRIPTION="A guitar music typesetter"
HOMEPAGE="http://chordii.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
doc? ( mirror://sourceforge/${PN}/${P}-user_guide.pdf )"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"
RDEPEND=""
DEPEND=">=sys-devel/autoconf-2.67"
src_prepare() {
sed -i -e "/dist_man_MAN/d" man/Makefile.am
eautomake
}
src_install() {
default
use doc && dodoc "${DISTDIR}"/${P}-user_guide.pdf
if use examples ; then
docinto examples
dodoc examples/*
docompress -x /usr/share/doc/${PF}/examples
fi
}
|