diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-02-05 11:54:47 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-02-05 13:55:43 +0000 |
commit | 16d1833af538b69393fcd8723c91c11d5381ba44 (patch) | |
tree | 1b93c45417bec38e3afa36a71e46b3df04184002 /testing/rosegarden | |
parent | 20a1a617a0ab9b9eb57ed6e8dd8f50dce7fb5bc6 (diff) | |
download | aports-16d1833af538b69393fcd8723c91c11d5381ba44.tar.bz2 aports-16d1833af538b69393fcd8723c91c11d5381ba44.tar.xz |
testing/rosegarden: new aport
MIDI, audio and notation editor
http://www.rosegardenmusic.com/
Diffstat (limited to 'testing/rosegarden')
-rw-r--r-- | testing/rosegarden/APKBUILD | 44 | ||||
-rw-r--r-- | testing/rosegarden/nearbyintf.patch | 13 |
2 files changed, 57 insertions, 0 deletions
diff --git a/testing/rosegarden/APKBUILD b/testing/rosegarden/APKBUILD new file mode 100644 index 0000000000..4d82fb1195 --- /dev/null +++ b/testing/rosegarden/APKBUILD @@ -0,0 +1,44 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=rosegarden +pkgver=11.11.42 +pkgrel=0 +pkgdesc="MIDI, audio and notation editor" +url="http://www.rosegardenmusic.com/" +arch="all" +license="GPLv2+" +depends="" +depends_dev="" +makedepends="alsa-lib-dev qt-dev libsamplerate-dev libsndfile-dev ladspa-dev + jack-dev liblo-dev dssi-dev liblrdf-dev fftw-dev makedepend" +install="" +subpackages="" +source="http://downloads.sourceforge.net/project/rosegarden/rosegarden/11.11/rosegarden-$pkgver.tar.bz2 + nearbyintf.patch" + +_builddir="$srcdir"/rosegarden-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure --prefix=/usr \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +md5sums="552a1cad6dd60077573332bc6c650db0 rosegarden-11.11.42.tar.bz2 +622bfa38a28010bbffcaa2a64c8ade92 nearbyintf.patch" diff --git a/testing/rosegarden/nearbyintf.patch b/testing/rosegarden/nearbyintf.patch new file mode 100644 index 0000000000..d8d2a706e2 --- /dev/null +++ b/testing/rosegarden/nearbyintf.patch @@ -0,0 +1,13 @@ +uclibc does not have nearbyintf + +--- ./src/gui/widgets/Fader.cpp.orig ++++ ./src/gui/widgets/Fader.cpp +@@ -222,7 +222,7 @@ + if (m_integral) { + float sliderLength = float(m_sliderMax) - float(m_sliderMin); + position = +- int(nearbyintf(sliderLength * (value - float(m_min)) / float(m_max - m_min) + 0.1)); ++ int(nearbyint(sliderLength * (value - float(m_min)) / float(m_max - m_min) + 0.1)); + } else { + position = + AudioLevel::dB_to_fader |