summaryrefslogtreecommitdiff
blob: be5092be45e3af598d8351c34bf59089d906d704 (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
121
122
123
124
125
126
127
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6
inherit autotools xdg-utils

DESCRIPTION="A music notation editor"
HOMEPAGE="http://www.denemo.org/"
SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"

LICENSE="GPL-3+ OFL-1.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"

# configure options currently not used:
# --enable-mem(no) memory debugging: needs Electric fence (efence), which
#		is not available in portage. See https://github.com/boundarydevices/efence
# --enable-gtk-doc-pdf(no) doesn't work
IUSE="alsa +aubio debug +evince doc jack +fluidsynth +gtk3 nls +portaudio
	+portmidi +rubberband static test"

RESTRICT="!test? ( test )"

RDEPEND="
	dev-libs/libxml2:2
	>=dev-scheme/guile-2:12=
	gnome-base/librsvg:2
	media-libs/fontconfig:1.0
	>=media-libs/libsmf-1.3
	>=media-libs/libsndfile-1.0.28-r1
	>=media-sound/lilypond-2.19.54[guile2]
	alsa? ( >=media-libs/alsa-lib-1.1.2 )
	aubio? ( >=media-libs/aubio-0.4.1-r1 )
	evince? ( >=app-text/evince-3.22.1-r1:= )
	fluidsynth? ( >=media-sound/fluidsynth-1.1.6-r1 )
	gtk3? (
		x11-libs/gtk+:3
		x11-libs/gtksourceview:3.0=
	)
	!gtk3? (
		x11-libs/gtk+:2
		x11-libs/gtksourceview:2.0
	)
	jack? ( virtual/jack )
	portaudio? (
		>=media-libs/portaudio-19_pre20140130
		sci-libs/fftw:3.0=
	)
	portmidi? ( >=media-libs/portmidi-217-r1 )
	rubberband? ( >=media-libs/rubberband-1.8.1-r1 )
"

DEPEND="${RDEPEND}
	>=dev-util/intltool-0.51.0-r1
	>=sys-devel/flex-2.6.1
	virtual/pkgconfig
	virtual/yacc
	doc? ( >=dev-util/gtk-doc-1.25-r1 )
	nls? ( >=sys-devel/gettext-0.19.8.1 )"

REQUIRED_USE="
	evince? ( gtk3 )
"

DOCS=( AUTHORS ChangeLog docs/{DESIGN{,.lilypond},GOALS,TODO} NEWS )

PATCHES=(
	"${FILESDIR}/${P}-no-portaudio-fix.patch"
	"${FILESDIR}/${P}-find-guile-2.2.patch"
)

src_prepare() {
	sed -i -e '/^Categories=/s/GNOME\;/GNOME\;GTK\;/' pixmaps/denemo.desktop || die
	default
	eautoreconf
}

src_configure() {
	myeconfargs=(
		--disable-gtk-doc-pdf
		--disable-installed-tests
		--disable-mem
		--disable-rpath
		--enable-x11
		$(use_enable alsa)
		$(use_enable aubio)
		# --enable-doc does nothing for itself
		$(use_enable doc)
		$(use_enable doc gtk-doc)
		$(use_enable doc gtk-doc-html)
		$(use_enable evince)
		$(use_enable fluidsynth)
		$(use_enable jack)
		$(use_enable nls)
		$(use_enable portaudio)
		$(use_enable portmidi)
		$(use_enable rubberband)
		$(use_enable static)
		$(usex gtk3 --enable-gtk3 --enable-gtk2)
	)
	econf "${myeconfargs[@]}"
}

src_test() {
	# make check fails if used with parallel builds
	emake -j1 check
}

src_install() {
	DESTDIR="${D}" emake install
	einstalldocs

	# link html documentation installed in /usr/share/denemo
	dodir /usr/share/doc/${PF}/html
	local f
	for f in denemo-manual.html denemo.css images; do
		dosym ../../../denemo/manual/"${f}" /usr/share/doc/${PF}/html/"${f}"
	done
}

pkg_postinst() {
	xdg_desktop_database_update
}

pkg_postrm() {
	xdg_desktop_database_update
}