diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2013-05-10 18:40:11 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2013-05-10 18:40:11 +0000 |
commit | e90ff962b58a728721d687f44b58b194b90a006e (patch) | |
tree | b1211e84cc4b58a9261835651af3982a372305a0 /app-emulation | |
parent | Remove unused patch. (diff) | |
download | gentoo-2-e90ff962b58a728721d687f44b58b194b90a006e.tar.gz gentoo-2-e90ff962b58a728721d687f44b58b194b90a006e.tar.bz2 gentoo-2-e90ff962b58a728721d687f44b58b194b90a006e.zip |
Version bump thanks to Alexey Malakhov <brezerk@gmail.com>
(Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key C2BA7F3C!)
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/q4wine/ChangeLog | 7 | ||||
-rw-r--r-- | app-emulation/q4wine/q4wine-1.0-r3.ebuild | 59 |
2 files changed, 65 insertions, 1 deletions
diff --git a/app-emulation/q4wine/ChangeLog b/app-emulation/q4wine/ChangeLog index 8400aaee57bc..58209bc74d73 100644 --- a/app-emulation/q4wine/ChangeLog +++ b/app-emulation/q4wine/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/q4wine # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/q4wine/ChangeLog,v 1.39 2013/03/03 22:49:29 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/q4wine/ChangeLog,v 1.40 2013/05/10 18:40:11 hwoarang Exp $ + +*q4wine-1.0-r3 (10 May 2013) + + 10 May 2013; Markos Chandras <hwoarang@gentoo.org> +q4wine-1.0-r3.ebuild: + Version bump thanks to Alexey Malakhov <brezerk@gmail.com> 03 Mar 2013; Markos Chandras <hwoarang@gentoo.org> -q4wine-0.999_rc7.ebuild, -q4wine-0.999_rc8.ebuild: diff --git a/app-emulation/q4wine/q4wine-1.0-r3.ebuild b/app-emulation/q4wine/q4wine-1.0-r3.ebuild new file mode 100644 index 000000000000..a91df17fd55b --- /dev/null +++ b/app-emulation/q4wine/q4wine-1.0-r3.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/q4wine/q4wine-1.0-r3.ebuild,v 1.1 2013/05/10 18:40:11 hwoarang Exp $ + +EAPI="4" +LANGS="cs de en es fa he it ru uk pl pt af" + +inherit cmake-utils + +DESCRIPTION="Qt4 GUI configuration tool for Wine" +HOMEPAGE="http://q4wine.brezblock.org.ua/" +SRC_URI="mirror://sourceforge/${PN}/${PN}/${PN}%20${PV}/${PF}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug +icoutils +wineappdb -dbus gnome kde" + +for x in ${LANGS}; do + IUSE+=" linguas_${x}" +done + +DEPEND="dev-qt/qtgui:4 + dev-qt/qtsql:4[sqlite] + dev-util/cmake" + +RDEPEND="dev-qt/qtgui:4 + dev-qt/qtsql:4[sqlite] + app-admin/sudo + app-emulation/wine + >=sys-apps/which-2.19 + icoutils? ( >=media-gfx/icoutils-0.26.0 ) + sys-fs/fuseiso + kde? ( kde-base/kdesu ) + gnome? ( x11-libs/gksu ) + dbus? ( dev-qt/qtdbus:4 )" + +DOCS="README AUTHORS ChangeLog" + +S="${WORKDIR}/${PF}" + +src_configure() { + mycmakeargs="${mycmakeargs} \ + $(cmake-utils_use debug DEBUG) \ + $(cmake-utils_use_with icoutils ICOUTILS) \ + $(cmake-utils_use_with wineappdb WINEAPPDB) \ + $(cmake-utils_use_with dbus DBUS)" + + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + for x in ${LANGS}; do + if ! has ${x} ${LINGUAS}; then + find "${D}" -name "${PN}_${x}*.qm" -exec rm {} \; + fi + done +} |