blob: 26a0bf9b4f413cd1dea241ff6117da48cf1c7d1e (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/lilypond/lilypond-2.12.3.ebuild,v 1.6 2011/06/30 18:49:31 jer Exp $
EAPI="3"
PYTHON_DEPEND="2"
inherit eutils versionator toolchain-funcs elisp-common flag-o-matic python autotools
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 ~hppa ~sparc ~x86"
IUSE="debug emacs profile"
RDEPEND="media-fonts/urw-fonts
>=media-libs/freetype-2
media-libs/fontconfig
>=x11-libs/pango-1.12.3
>=dev-scheme/guile-1.8.2[deprecated,regex]
|| ( >=app-text/ghostscript-gnu-8.15
>=app-text/ghostscript-gpl-8.15 )
emacs? ( virtual/emacs )"
DEPEND="${RDEPEND}
>=media-gfx/fontforge-20070501
dev-texlive/texlive-metapost
app-text/t1utils
>=app-text/mftrace-1.2.9
>=sys-apps/texinfo-4.11
sys-devel/make
sys-devel/gettext
sys-devel/flex
dev-lang/perl
>=sys-devel/bison-2.0"
pkg_setup() {
python_set_active_version 2
}
src_prepare() {
epatch "${FILESDIR}/${P}-qa_pyc_fix.patch"
epatch "${FILESDIR}/${P}-python-cflags.patch"
epatch "${FILESDIR}/${P}-gcc45.patch"
eautoreconf
}
src_configure() {
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
if use profile; then
einfo "Stripping -fomit-frame-pointer flag"
strip-flags -fomit-frame-pointer
fi
econf $(use_enable debug debugging) \
$(use_enable profile profiling) \
--disable-gui \
--disable-documentation
}
src_compile() {
# without -j1 it will not fail, but building docs later will, bug 236010
emake -j1 || die "emake failed"
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"
# remove elisp files since they are in the wrong directory
rm -rf "${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 HACKING NEWS.txt README.txt || die
python_convert_shebangs -r 2 "${D}"
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|