38 lines
824 B
Bash
38 lines
824 B
Bash
|
# Copyright 1999-2011 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/media-sound/chordii/chordii-4.3.ebuild,v 1.2 2011/05/19 23:14:48 radhermit Exp $
|
||
|
|
||
|
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
|
||
|
}
|