diff options
author | David Seifert <soap@gentoo.org> | 2016-02-04 21:22:24 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-02-04 21:22:49 +0100 |
commit | 29a386375d3ad67151ace74d595e1ce9f4cf2417 (patch) | |
tree | 2f08729f9bbcd630e8e622c8862fadc0f178ba27 /media-sound/specimen/specimen-0.5.2_rc3-r2.ebuild | |
parent | media-libs/phat: Fix underlinking with x11-libs/libX11 (diff) | |
download | gentoo-29a386375d3ad67151ace74d595e1ce9f4cf2417.tar.gz gentoo-29a386375d3ad67151ace74d595e1ce9f4cf2417.tar.bz2 gentoo-29a386375d3ad67151ace74d595e1ce9f4cf2417.zip |
media-sound/specimen: Add $PTHREAD_CFLAGS to $LIBS to prevent underlinking
Gentoo-Bug: 561562
* EAPI=6
Package-Manager: portage-2.2.27
Diffstat (limited to 'media-sound/specimen/specimen-0.5.2_rc3-r2.ebuild')
-rw-r--r-- | media-sound/specimen/specimen-0.5.2_rc3-r2.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/media-sound/specimen/specimen-0.5.2_rc3-r2.ebuild b/media-sound/specimen/specimen-0.5.2_rc3-r2.ebuild new file mode 100644 index 000000000000..d344339cbbdf --- /dev/null +++ b/media-sound/specimen/specimen-0.5.2_rc3-r2.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools versionator + +MY_PV="$(replace_version_separator 3 -)" + +DESCRIPTION="A Midi Controllable Audio Sampler" +HOMEPAGE="http://zhevny.com/specimen" +SRC_URI="http://zhevny.com/${PN}/files/${PN}-${MY_PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="lash" + +RDEPEND=">=media-sound/jack-audio-connection-kit-0.109.2 + >=media-libs/alsa-lib-0.9 + media-libs/libsamplerate + media-libs/libsndfile + >=media-libs/phat-0.4 + dev-libs/libxml2:2 + x11-libs/gtk+:2 + gnome-base/libgnomecanvas + lash? ( media-sound/lash )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}/${P}-jackmidi.patch" + "${FILESDIR}/${P}-underlinking.patch" +) +S="${WORKDIR}"/${PN}-${MY_PV} + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable lash) +} + +src_install() { + default + doicon pixmaps/${PN}.png + make_desktop_entry ${PN} Specimen ${PN} +} |