diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2009-03-25 23:40:21 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2009-03-25 23:40:21 +0000 |
commit | 327b644b49043c34d3529dd2cc44c537665ccbdf (patch) | |
tree | 063969b6ddfcb2d9d8ee17db3fdc6ac04aee5cd1 /app-emulation | |
parent | Version bump #263751. (diff) | |
download | gentoo-2-327b644b49043c34d3529dd2cc44c537665ccbdf.tar.gz gentoo-2-327b644b49043c34d3529dd2cc44c537665ccbdf.tar.bz2 gentoo-2-327b644b49043c34d3529dd2cc44c537665ccbdf.zip |
Initial commit for q4wine application. Fixes bug 256502
(Portage version: 2.2_rc26/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/q4wine/ChangeLog | 11 | ||||
-rw-r--r-- | app-emulation/q4wine/metadata.xml | 12 | ||||
-rw-r--r-- | app-emulation/q4wine/q4wine-0.111.ebuild | 31 |
3 files changed, 54 insertions, 0 deletions
diff --git a/app-emulation/q4wine/ChangeLog b/app-emulation/q4wine/ChangeLog new file mode 100644 index 000000000000..d8e3729c0d9f --- /dev/null +++ b/app-emulation/q4wine/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-emulation/q4wine +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/q4wine/ChangeLog,v 1.1 2009/03/25 23:40:21 hwoarang Exp $ + +*q4wine-0.111 (25 Mar 2009) + + 25 Mar 2009; Markos Chandras <hwoarang@gentoo.org> +metadata.xml, + +q4wine-0.111.ebuild: + Initial commit for q4wine application. Thanks to John Brezerk + <brezerk@gmail.com> for the initial ebuild. Fixes bug #256502 + diff --git a/app-emulation/q4wine/metadata.xml b/app-emulation/q4wine/metadata.xml new file mode 100644 index 000000000000..d5f9562e2df2 --- /dev/null +++ b/app-emulation/q4wine/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>qt</herd> +<maintainer> +<email>hwoarang@gentoo.org</email> +<name>Markos Chandras</name> +</maintainer> +<longdescription lang="en"> +</longdescription> +</pkgmetadata> + diff --git a/app-emulation/q4wine/q4wine-0.111.ebuild b/app-emulation/q4wine/q4wine-0.111.ebuild new file mode 100644 index 000000000000..4aac94f19439 --- /dev/null +++ b/app-emulation/q4wine/q4wine-0.111.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/q4wine/q4wine-0.111.ebuild,v 1.1 2009/03/25 23:40:21 hwoarang Exp $ + +EAPI="2" +inherit cmake-utils + +DESCRIPTION="Qt4 GUI for wine" +HOMEPAGE="http://sourceforge.net/projects/q4wine/" +SRC_URI="mirror://sourceforge/${PN}/${PF}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DEPEND="x11-libs/qt-gui:4 + x11-libs/qt-sql:4[sqlite] + dev-util/cmake[qt4]" +RDEPEND="${DEPEND} + app-admin/sudo + app-emulation/wine + >=sys-apps/which-2.19 + >=media-gfx/icoutils-0.26.0" + +src_install() { + cmake-utils_src_install + dodoc README || die "dodoc failed" + doicon src/data/wine16x16.png || die "doicon failed" + make_desktop_entry q4wine Q4Wine wine16x16 "Utility" || die "make_desktop_entry failed" +} |