Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/gnome-autoar/
Date: Tue, 01 Nov 2016 17:31:20
Message-Id: 1478019979.c915b78c5a4972a9bd0fdfad9f5dcdc1339a5293.eva@gentoo
1 commit: c915b78c5a4972a9bd0fdfad9f5dcdc1339a5293
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 1 15:18:51 2016 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 1 17:06:19 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c915b78c
7
8 app-arch/gnome-autoar: initial ebuild
9
10 Package-Manager: portage-2.3.2
11
12 app-arch/gnome-autoar/Manifest | 1 +
13 app-arch/gnome-autoar/gnome-autoar-0.1.1.ebuild | 34 +++++++++++++++++++++++++
14 app-arch/gnome-autoar/metadata.xml | 11 ++++++++
15 3 files changed, 46 insertions(+)
16
17 diff --git a/app-arch/gnome-autoar/Manifest b/app-arch/gnome-autoar/Manifest
18 new file mode 100644
19 index 00000000..4190068
20 --- /dev/null
21 +++ b/app-arch/gnome-autoar/Manifest
22 @@ -0,0 +1 @@
23 +DIST gnome-autoar-0.1.1.tar.xz 292536 SHA256 f65cb810b562dc038ced739fbf59739fd5df1a8e848636e21f363ded9f349ac9 SHA512 59606cc7e3150d457b343f99bf30732bc9ea4bb7368133bba771a17d3253f23c8c60a35f4d686569fc2a9d4b4ab1e095b0f8cd7053493e1951e9d193a60c1e31 WHIRLPOOL 4cfc478c9956490cab5b48133585384e1282abf677290c94c93d59eba26ed4a5438d36622cfb73163d28a6692c990fb224782adbe9c9948814d3b83abb3ffcae
24
25 diff --git a/app-arch/gnome-autoar/gnome-autoar-0.1.1.ebuild b/app-arch/gnome-autoar/gnome-autoar-0.1.1.ebuild
26 new file mode 100644
27 index 00000000..41b3a66
28 --- /dev/null
29 +++ b/app-arch/gnome-autoar/gnome-autoar-0.1.1.ebuild
30 @@ -0,0 +1,34 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=6
36 +
37 +inherit gnome2
38 +
39 +DESCRIPTION="Automatic archives creating and extracting library"
40 +HOMEPAGE="https://git.gnome.org/browse/gnome-autoar"
41 +
42 +LICENSE="LGPL-2+ GPL-2+"
43 +SLOT="0"
44 +IUSE="gtk +introspection"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +RDEPEND="
48 + >=app-arch/libarchive-3.2.0
49 + >=dev-libs/glib-2.35.6:2
50 + gtk? ( >=x11-libs/gtk+-3.2:3 )
51 + introspection? ( >=dev-libs/gobject-introspection-1.30.0:= )
52 +"
53 +DEPEND="${RDEPEND}
54 + >=dev-util/gtk-doc-am-1.14
55 + gnome-base/gnome-common
56 + virtual/pkgconfig
57 +"
58 +
59 +src_configure() {
60 + gnome2_src_configure \
61 + --disable-static \
62 + $(use_enable introspection) \
63 + $(use_enable gtk)
64 +}
65
66 diff --git a/app-arch/gnome-autoar/metadata.xml b/app-arch/gnome-autoar/metadata.xml
67 new file mode 100644
68 index 00000000..073497f
69 --- /dev/null
70 +++ b/app-arch/gnome-autoar/metadata.xml
71 @@ -0,0 +1,11 @@
72 +<?xml version="1.0" encoding="UTF-8"?>
73 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
74 +<pkgmetadata>
75 + <maintainer type="project">
76 + <email>gnome@g.o</email>
77 + <name>Gentoo GNOME Desktop</name>
78 + </maintainer>
79 + <longdescription lang="en">
80 + gnome-autoar provides functions, widgets, and gschemas for GNOME applications which want to use archives as a method to transfer directories over the Internet.
81 + </longdescription>
82 +</pkgmetadata>