blob: 8aae6ef1d85d79f6faab0520f0c37f71bdb32e97 (
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-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-1.5.15.ebuild,v 1.2 2002/07/11 06:30:40 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="GNU Music Typesetter"
SRC_URI="http://www.lilypond.org/ftp/LilyPond/development/$P.tar.gz"
HOMEPAGE="http://lilypond.org/"
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() {
./configure \
--infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr \
--host=${CHOST} || die
emake || die
}
src_install () {
make prefix=${D}/usr install || die
}
|