summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2010-06-20 10:48:14 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2010-06-20 10:48:14 +0000
commit2c74d05dcaa8151dfddafe1037d8c68d17c0a29b (patch)
tree311ba5203e21d15db6f93577204d06b666fb75e5 /x11-misc
parentStable on amd64 wrt bug #322343 (diff)
downloadgentoo-2-2c74d05dcaa8151dfddafe1037d8c68d17c0a29b.tar.gz
gentoo-2-2c74d05dcaa8151dfddafe1037d8c68d17c0a29b.tar.bz2
gentoo-2-2c74d05dcaa8151dfddafe1037d8c68d17c0a29b.zip
Initial commit wrt #53890 by Arnaud Launay.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/xcave/ChangeLog9
-rw-r--r--x11-misc/xcave/metadata.xml5
-rw-r--r--x11-misc/xcave/xcave-2.3.2.ebuild34
3 files changed, 48 insertions, 0 deletions
diff --git a/x11-misc/xcave/ChangeLog b/x11-misc/xcave/ChangeLog
new file mode 100644
index 000000000000..a57977e73d25
--- /dev/null
+++ b/x11-misc/xcave/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for x11-misc/xcave
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xcave/ChangeLog,v 1.1 2010/06/20 10:48:14 ssuominen Exp $
+
+*xcave-2.3.2 (20 Jun 2010)
+
+ 20 Jun 2010; Samuli Suominen <ssuominen@gentoo.org> +xcave-2.3.2.ebuild:
+ Initial commit wrt #53890 by Arnaud Launay.
+
diff --git a/x11-misc/xcave/metadata.xml b/x11-misc/xcave/metadata.xml
new file mode 100644
index 000000000000..540f810e069d
--- /dev/null
+++ b/x11-misc/xcave/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>desktop-misc</herd>
+</pkgmetadata>
diff --git a/x11-misc/xcave/xcave-2.3.2.ebuild b/x11-misc/xcave/xcave-2.3.2.ebuild
new file mode 100644
index 000000000000..1c2d64237cc5
--- /dev/null
+++ b/x11-misc/xcave/xcave-2.3.2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xcave/xcave-2.3.2.ebuild,v 1.1 2010/06/20 10:48:14 ssuominen Exp $
+
+EAPI=2
+inherit autotools
+
+DESCRIPTION="View and manage contents of your wine cellar"
+HOMEPAGE="http://xcave.free.fr/index-en.php"
+SRC_URI="http://${PN}.free.fr/backbone.php?what=download/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=x11-libs/gtk+-2.8:2
+ >=gnome-base/libglade-2.6
+ dev-libs/libxml2"
+DEPEND="${RDEPEND}
+ dev-util/pkgconfig
+ sys-devel/gettext
+ dev-util/intltool"
+
+src_prepare() {
+# intltoolize --force --copy --automake || die
+ eautoreconf
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+ dodoc ChangeLog TODO
+ rm -rf "${D}"/usr/doc
+}