diff options
author | Johannes Huber <johu@gentoo.org> | 2012-03-28 17:52:50 +0000 |
---|---|---|
committer | Johannes Huber <johu@gentoo.org> | 2012-03-28 17:52:50 +0000 |
commit | 1f82bff71032e062d0f47328b8880962930af393 (patch) | |
tree | 81ec3a159d1f59b0701e63a63a30436968948591 /media-sound/karlyriceditor | |
parent | Restore alpha keywords (diff) | |
download | gentoo-2-1f82bff71032e062d0f47328b8880962930af393.tar.gz gentoo-2-1f82bff71032e062d0f47328b8880962930af393.tar.bz2 gentoo-2-1f82bff71032e062d0f47328b8880962930af393.zip |
Version bump by Michael (kensington) <gentoo@scribeofthenile.com> wrt bug #407507.
(Portage version: 2.2.0_alpha95/cvs/Linux i686)
Diffstat (limited to 'media-sound/karlyriceditor')
-rw-r--r-- | media-sound/karlyriceditor/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/karlyriceditor/files/karlyriceditor-1.3-libav.patch | 10 | ||||
-rw-r--r-- | media-sound/karlyriceditor/karlyriceditor-1.3.ebuild | 31 |
3 files changed, 49 insertions, 1 deletions
diff --git a/media-sound/karlyriceditor/ChangeLog b/media-sound/karlyriceditor/ChangeLog index db548c77b267..3905bbc46870 100644 --- a/media-sound/karlyriceditor/ChangeLog +++ b/media-sound/karlyriceditor/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-sound/karlyriceditor # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/karlyriceditor/ChangeLog,v 1.4 2012/01/22 21:36:12 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/karlyriceditor/ChangeLog,v 1.5 2012/03/28 17:52:50 johu Exp $ + +*karlyriceditor-1.3 (28 Mar 2012) + + 28 Mar 2012; Johannes Huber <johu@gentoo.org> + +files/karlyriceditor-1.3-libav.patch, +karlyriceditor-1.3.ebuild: + Version bump by Michael (kensington) <gentoo@scribeofthenile.com> wrt bug + #407507. 22 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> -karlyriceditor-0.7.ebuild: diff --git a/media-sound/karlyriceditor/files/karlyriceditor-1.3-libav.patch b/media-sound/karlyriceditor/files/karlyriceditor-1.3-libav.patch new file mode 100644 index 000000000000..d3f63d51b522 --- /dev/null +++ b/media-sound/karlyriceditor/files/karlyriceditor-1.3-libav.patch @@ -0,0 +1,10 @@ +--- src/ffmpeg_headers.h ++++ src/ffmpeg_headers.h +@@ -32,6 +32,7 @@ + + #include "libavcodec/avcodec.h" + #include "libavformat/avformat.h" ++#include "libavutil/mathematics.h" + #include "libswscale/swscale.h" + + }; diff --git a/media-sound/karlyriceditor/karlyriceditor-1.3.ebuild b/media-sound/karlyriceditor/karlyriceditor-1.3.ebuild new file mode 100644 index 000000000000..4da661864c5d --- /dev/null +++ b/media-sound/karlyriceditor/karlyriceditor-1.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/karlyriceditor/karlyriceditor-1.3.ebuild,v 1.1 2012/03/28 17:52:49 johu Exp $ + +EAPI=4 +inherit eutils qt4-r2 + +DESCRIPTION="A program which lets you edit and synchronize lyrics with karaoke songs in varions formats" +HOMEPAGE="http://www.karlyriceditor.com/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-libs/openssl + media-libs/libsdl + >=virtual/ffmpeg-0.9 + x11-libs/qt-core:4 + x11-libs/qt-gui:4" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${P}-libav.patch" ) + +src_install() { + dodoc Changelog + dobin bin/${PN} + doicon packages/${PN}.png + make_desktop_entry ${PN} 'Karaoke Lyrics Editor' +} |