blob: 8ea0aad48be28e20eab312bd08173b94540d47b1 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.10.33.ebuild,v 1.4 2008/02/21 14:11:49 armin76 Exp $
inherit eutils versionator toolchain-funcs elisp-common
DESCRIPTION="GNU Music Typesetter"
SRC_URI="http://download.linuxaudio.org/lilypond/sources/v$(get_version_component_range 1-2)/${P}.tar.gz"
HOMEPAGE="http://lilypond.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 sparc x86"
#LANGS="cs da de es fi fr it ja nl ru rw sv tr zh_TW"
IUSE="debug emacs profile"
#IUSE="debug doc emacs gtk profile vim"
#for X in ${LANGS} ; do
# IUSE="${IUSE} linguas_${X/-/_}"
#done
# guile with deprecated and regex
RDEPEND="
>=media-libs/freetype-2
media-libs/fontconfig
>=x11-libs/pango-1.12.3
>=dev-scheme/guile-1.8.1
>=dev-lang/python-2.4
|| ( >=app-text/ghostscript-gnu-8.15
>=app-text/ghostscript-gpl-8.15
>=app-text/ghostscript-esp-8.15 )
emacs? ( virtual/emacs )"
# >=app-text/ghostscript-gnu-8.55"
# virtual/tetex
DEPEND="${RDEPEND}
>=media-gfx/fontforge-20070501
>=app-text/mftrace-1.2.9
>=sys-apps/texinfo-4.8
sys-devel/make
sys-devel/gettext
sys-devel/flex
dev-lang/perl
>=sys-devel/bison-2.0"
# doc? ( media-libs/netpbm
# media-gfx/imagemagick )"
pkg_setup() {
if has_version =dev-scheme/guile-1.8*; then
local flags="deprecated regex"
built_with_use dev-scheme/guile ${flags} || die "guile must be built with \"${flags}\" use flags"
fi
}
src_compile() {
if [[ $(gcc-major-version) -lt 4 ]]; then
eerror "You need GCC 4.x to build this software."
die "you need to compile with gcc-4 or later"
fi
econf \
$(use_enable debug debugging) \
$(use_enable profile profiling) \
--disable-gui \
--disable-documentation
# $(use_enable doc documentation) \
# without -j1 it will not fail, but building docs later will
emake -j1 || die "emake failed"
# if use doc; then
# emake -j1 web || die "emake web failed"
# fi
if use emacs; then
elisp-compile elisp/lilypond-{font-lock,indent,mode,what-beat}.el \
|| die "elisp-compile failed"
fi
}
# lilypond doesn't include the answers to the tests.
# You are supposed to build those yourself with an
# earlier version. Then running tests will compare the
# results of the tests against the results from the
# earlier version. As such, tests seem mostly useless
# for our purposes.
RESTRICT=test
src_install () {
emake DESTDIR="${D}" vimdir=/usr/share/vim/vimfiles install || die "emake install failed"
# if use doc; then
# # Note: installs .html docs, .pdf docs and examples
# emake out=www web-install DESTDIR=${D} \
# webdir=/usr/share/doc/${PF}/html || die "emake web-install failed"
# fi
# remove elisp files since they are in the wrong directory
rm -r "${D}"/usr/share/emacs
if use emacs; then
elisp-install ${PN} elisp/*.{el,elc} elisp/out/*.el \
|| die "elisp-install failed"
elisp-site-file-install "${FILESDIR}"/50${PN}-gentoo.el
fi
dodoc AUTHORS.txt ChangeLog DEDICATION NEWS.txt README.txt THANKS
# use vim || rm -r ${D}/usr/share/vim
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|