blob: 0908af108c60ac2d1c6e9508ce4b5d391048ae87 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-1.5.15.ebuild,v 1.8 2004/03/01 05:37:14 eradicator Exp $
DESCRIPTION="GNU Music Typesetter"
HOMEPAGE="http://lilypond.org/"
SRC_URI="http://www.lilypond.org/ftp/LilyPond/development/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND=">=dev-lang/python-2.0-r4
>=dev-util/guile-1.4-r3
>=sys-devel/flex-2.5.4a-r4
>=sys-devel/bison-1.28-r3
>=sys-apps/texinfo-4.0-r3
>=app-text/tetex-1.0.7-r2"
src_compile() {
econf || die
emake || die
}
src_install() {
make prefix=${D}/usr install || die
dodoc AUTHORS* CHANGES DEDICATION NEWS README.txt ROADMAP FAQ* VERSION
}
|