blob: debded458427f7c6b3434e300206b3c20e9cc405 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/hydrogen/hydrogen-0.9.3-r3.ebuild,v 1.6 2008/11/30 18:43:29 armin76 Exp $
inherit eutils kde-functions autotools multilib
DESCRIPTION="Linux Drum Machine"
HOMEPAGE="http://www.hydrogen-music.org/"
SRC_URI="mirror://sourceforge/hydrogen/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~ppc64 sparc x86"
IUSE="alsa debug doc flac jack ladspa oss"
RDEPEND="dev-libs/libxml2
media-libs/libsndfile
media-libs/audiofile
flac? ( media-libs/flac )
alsa? ( media-libs/alsa-lib )
jack? ( media-sound/jack-audio-connection-kit )
ladspa? ( media-libs/liblrdf )"
DEPEND="${RDEPEND}
doc? ( app-text/docbook-sgml-utils )
dev-util/pkgconfig"
need-qt 3
pkg_setup() {
if use alsa && ! built_with_use --missing true media-libs/alsa-lib midi; then
eerror ""
eerror "To be able to build ${CATEGORY}/${PN} with ALSA support you"
eerror "need to have built media-libs/alsa-lib with midi USE flag."
die "Missing midi USE flag on media-libs/alsa-lib"
fi
if use flac && ! built_with_use --missing true media-libs/flac cxx; then
eerror "To build ${PN} with flac support you need the C++ bindings for flac."
eerror "Please enable the cxx USE flag for media-libs/flac"
die "Missing FLAC C++ bindings."
fi
}
src_unpack() {
unpack ${A}
if use ppc; then
cd "${S}/src"
epatch "${FILESDIR}/0.9.1-OSS.patch" || die "patching failed"
fi
cd "${S}"
mv data/doc/man "${S}"
# broken or portability issue
find . -iname Makefile.in -exec sed -i -e "s:update-menus::" {} \;
# find PortAudio/Midi files
sed -e "s:pa_unix_oss:lib:g" -e "s:pa_common:include:g" \
-e "s:pm_linux:lib:g" -e "s:pm_common:include:g" \
-i configure.in
sed -e "s:lib/hydrogen:$(get_libdir)/hydrogen:g" -i plugins/wasp/Makefile.in
epatch "${FILESDIR}/hydrogen-0.9.2-configure.in.patch"
epatch "${FILESDIR}/hydrogen-0.9.3-gcc-4.1-tinyxml.h.patch"
epatch "${FILESDIR}/${P}-flac113.patch"
epatch "${FILESDIR}/${P}-automagic.patch"
epatch "${FILESDIR}/${P}-desktop-noexec.patch"
epatch "${FILESDIR}/${P}-gcc43.patch"
epatch "${FILESDIR}/${P}-gcc43noalsa.patch"
eautoreconf
}
src_compile() {
export PORTAUDIOPATH="/usr"
# PortMidi not yet in the repository
# export PORTMIDIPATH="/usr"
# Disable portaudio v18 support wrt #222841
local myconf="$(use_enable jack jack-support) \
--disable-portaudio \
$(use_enable alsa) \
$(use_enable debug) \
$(use_enable flac flac_support) \
$(use_enable ladspa) \
$(use_enable ladspa lrdf-support) \
$(use_enable oss oss-support)"
econf ${myconf} || die "Failed configuring hydrogen!"
emake -j1 || die "Failed making hydrogen!"
}
src_install() {
pushd data/i18n
use doc && ./updateTranslations.sh
rm *.ts updateTranslations.sh
popd
pushd data/doc
use doc && ./updateManuals.sh
rm *.docbook updateManuals.sh
popd
emake DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog README
dosym /usr/share/hydrogen/data/doc /usr/share/doc/${PF}/html
doman man/C/hydrogen.1
for N in 16 24 32 48 64 ; do
dodir /usr/share/icons/hicolor/${N}x${N}/apps
dosym /usr/share/hydrogen/data/img/gray/icon${N}.png \
/usr/share/icons/hicolor/${N}x${N}/apps/hydrogen.png
done
dodir /usr/share/icons/hicolor/scalable/apps
dosym /usr/share/hydrogen/data/img/gray/icon.svg \
/usr/share/icons/hicolor/scalable/apps/hydrogen.svg
}
|