diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-05-13 07:30:17 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-05-13 07:30:17 +0000 |
commit | dfca96c153adffe03c16d1a4b5688c359479adfb (patch) | |
tree | b819bd496c708a63f452e34268701593e74989d3 /media-sound | |
parent | sci-libs/bmrblib: Version Bump (diff) | |
download | gentoo-2-dfca96c153adffe03c16d1a4b5688c359479adfb.tar.gz gentoo-2-dfca96c153adffe03c16d1a4b5688c359479adfb.tar.bz2 gentoo-2-dfca96c153adffe03c16d1a4b5688c359479adfb.zip |
Version bump.
(Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-sound')
-rw-r--r-- | media-sound/yoshimi/ChangeLog | 8 | ||||
-rw-r--r-- | media-sound/yoshimi/files/yoshimi-1.1.0-desktop-version.patch | 11 | ||||
-rw-r--r-- | media-sound/yoshimi/yoshimi-1.1.0.ebuild | 40 |
3 files changed, 58 insertions, 1 deletions
diff --git a/media-sound/yoshimi/ChangeLog b/media-sound/yoshimi/ChangeLog index 8b132c1387f0..e4894db479c7 100644 --- a/media-sound/yoshimi/ChangeLog +++ b/media-sound/yoshimi/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/yoshimi # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/yoshimi/ChangeLog,v 1.12 2013/01/14 04:16:13 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/yoshimi/ChangeLog,v 1.13 2013/05/13 07:30:17 radhermit Exp $ + +*yoshimi-1.1.0 (13 May 2013) + + 13 May 2013; Tim Harder <radhermit@gentoo.org> +yoshimi-1.1.0.ebuild, + +files/yoshimi-1.1.0-desktop-version.patch: + Version bump. 14 Jan 2013; Tim Harder <radhermit@gentoo.org> -yoshimi-0.060.12.ebuild, -files/yoshimi-0.060.12-desktop.patch: diff --git a/media-sound/yoshimi/files/yoshimi-1.1.0-desktop-version.patch b/media-sound/yoshimi/files/yoshimi-1.1.0-desktop-version.patch new file mode 100644 index 000000000000..9b159eb1b211 --- /dev/null +++ b/media-sound/yoshimi/files/yoshimi-1.1.0-desktop-version.patch @@ -0,0 +1,11 @@ +--- yoshimi-1.1.0/desktop/yoshimi.desktop.in ++++ yoshimi-1.1.0/desktop/yoshimi.desktop.in +@@ -2,7 +2,7 @@ + Name=Yoshimi + Comment=Real Time Synthesizer + GenericName=Synthesizer +-Version=@YOSHIMI_VERSION@ ++Version=1.0 + Type=Application + Categories=AudioVideo;X-Sound;Audio; + Exec=yoshimi diff --git a/media-sound/yoshimi/yoshimi-1.1.0.ebuild b/media-sound/yoshimi/yoshimi-1.1.0.ebuild new file mode 100644 index 000000000000..2192c0351ba0 --- /dev/null +++ b/media-sound/yoshimi/yoshimi-1.1.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/yoshimi/yoshimi-1.1.0.ebuild,v 1.1 2013/05/13 07:30:17 radhermit Exp $ + +EAPI=5 +inherit eutils cmake-utils + +DESCRIPTION="A software synthesizer based on ZynAddSubFX" +HOMEPAGE="http://yoshimi.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + >=dev-libs/mini-xml-2.5 + >=media-libs/alsa-lib-1.0.17 + media-libs/fontconfig + media-libs/libsndfile + >=media-sound/jack-audio-connection-kit-0.115.6 + sci-libs/fftw:3.0 + sys-libs/zlib + x11-libs/cairo + x11-libs/fltk:1[opengl]" +DEPEND="${RDEPEND} + dev-libs/boost + virtual/pkgconfig" + +S=${WORKDIR}/${P}/src + +DOCS="../${PV}.notes" + +src_prepare() { + sed -i \ + -e '/set (CMAKE_CXX_FLAGS_RELEASE/d' \ + CMakeLists.txt || die + + EPATCH_OPTS="-d .." epatch "${FILESDIR}"/${P}-desktop-version.patch +} |