diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2013-02-16 20:47:13 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2013-02-16 20:47:13 +0000 |
commit | 9fe8669c7757f817442d803bfdff3baaaf8f9121 (patch) | |
tree | 939affb7b90e30f3a9e96725c9aa336279a7e362 /media-video/qx11grab | |
parent | Stable for amd64, wrt bug #457824 (diff) | |
download | gentoo-2-9fe8669c7757f817442d803bfdff3baaaf8f9121.tar.gz gentoo-2-9fe8669c7757f817442d803bfdff3baaaf8f9121.tar.bz2 gentoo-2-9fe8669c7757f817442d803bfdff3baaaf8f9121.zip |
Version bump
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key B4AFF2C2)
Diffstat (limited to 'media-video/qx11grab')
-rw-r--r-- | media-video/qx11grab/ChangeLog | 7 | ||||
-rw-r--r-- | media-video/qx11grab/qx11grab-0.4.7.ebuild | 54 |
2 files changed, 60 insertions, 1 deletions
diff --git a/media-video/qx11grab/ChangeLog b/media-video/qx11grab/ChangeLog index cf422842bde1..69902381d9fd 100644 --- a/media-video/qx11grab/ChangeLog +++ b/media-video/qx11grab/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-video/qx11grab # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/qx11grab/ChangeLog,v 1.28 2013/02/02 08:24:42 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/qx11grab/ChangeLog,v 1.29 2013/02/16 20:47:13 hwoarang Exp $ + +*qx11grab-0.4.7 (16 Feb 2013) + + 16 Feb 2013; Markos Chandras <hwoarang@gentoo.org> +qx11grab-0.4.7.ebuild: + Version bump *qx11grab-0.4.6 (02 Feb 2013) diff --git a/media-video/qx11grab/qx11grab-0.4.7.ebuild b/media-video/qx11grab/qx11grab-0.4.7.ebuild new file mode 100644 index 000000000000..5941a18d54df --- /dev/null +++ b/media-video/qx11grab/qx11grab-0.4.7.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/qx11grab/qx11grab-0.4.7.ebuild,v 1.1 2013/02/16 20:47:13 hwoarang Exp $ + +EAPI=5 + +inherit cmake-utils + +DESCRIPTION="X11 desktop video grabber tray" +HOMEPAGE="http://qx11grab.hjcms.de/" +SRC_URI="http://qx11grab.hjcms.de/downloads/${PV}/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="kde opengl pulseaudio" + +RDEPEND=" + >=media-libs/alsa-lib-1.0.24 + >=media-libs/fontconfig-2.4 + >=media-libs/freetype-2.4:2 + >=sys-apps/dbus-1.4.16 + >=x11-libs/libX11-1.3.4 + >=x11-libs/libXrandr-1.3 + >=x11-libs/qt-core-4.7.2:4 + >=x11-libs/qt-dbus-4.7.2:4 + >=x11-libs/qt-gui-4.7.2:4[dbus] + >=virtual/ffmpeg-0.10.3[X,encode,truetype] + kde? ( kde-base/kdelibs:4 ) + opengl? ( >=x11-libs/qt-opengl-4.7.2:4 ) + pulseaudio? ( media-sound/pulseaudio ) +" +DEPEND="${RDEPEND} + virtual/pkgconfig + kde? ( dev-util/automoc ) +" +PDEPEND="virtual/freedesktop-icon-theme" + +src_prepare() { + base_src_prepare + + # install docs into standard Gentoo location + sed -i -e "/DESTINATION share/ s:\${CMAKE_PROJECT_NAME}:doc/${PF}:" \ + CMakeLists.txt || die +} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_enable kde KDE_SUPPORT) + $(cmake-utils_use_enable opengl) + $(cmake-utils_use_enable pulseaudio PULSE) + ) + cmake-utils_src_configure +} |