diff options
author | Ian Delaney <idella4@gentoo.org> | 2015-12-15 14:14:22 +0800 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2015-12-15 15:15:12 +0800 |
commit | 7b52fc455b59a5f84acc45589b8e74c61d65ea5a (patch) | |
tree | c389cb63f16571b932f89f2b1a16554d1db09be2 | |
parent | dev-ruby/gettext_i18n_rails: add 1.3.2 (diff) | |
download | gentoo-7b52fc455b59a5f84acc45589b8e74c61d65ea5a.tar.gz gentoo-7b52fc455b59a5f84acc45589b8e74c61d65ea5a.tar.bz2 gentoo-7b52fc455b59a5f84acc45589b8e74c61d65ea5a.zip |
x11-misc/quitcount: New ebuild submitted via buzilla bug #542072
A tiny system tray applet, author set as proxy maintainer under the
proxy-maintainers project, fixes the gentoo bug
Gentoo bug: #542072
Package-Manager: portage-2.2.24
-rw-r--r-- | x11-misc/quitcount/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/quitcount/metadata.xml | 10 | ||||
-rw-r--r-- | x11-misc/quitcount/quitcount-3.1.3.ebuild | 28 |
3 files changed, 39 insertions, 0 deletions
diff --git a/x11-misc/quitcount/Manifest b/x11-misc/quitcount/Manifest new file mode 100644 index 000000000000..3ad4252e6084 --- /dev/null +++ b/x11-misc/quitcount/Manifest @@ -0,0 +1 @@ +DIST quitcount-3.1.3.tar.gz 403607 SHA256 d8c21bb0cf67d729d51a7921b86bb3ab75003253ba03b26d605ce5b48b33713a SHA512 92e088b8272657f14e60d91589963cfcefe84ead9f4d90aa3a77ac9612fe216f558e0378788edde7680a3dba131021bf72129fbc1291eca83cd232490f486f9f WHIRLPOOL 757deda35a4d8b9079dd5f333ce488e1f00b5c6af15da789cb1e210f61be2170b5509e34c899f4aecd6f745660fdcf7b1e4ee2244a071f7b512abd64078ef5c1 diff --git a/x11-misc/quitcount/metadata.xml b/x11-misc/quitcount/metadata.xml new file mode 100644 index 000000000000..e275ac63ae30 --- /dev/null +++ b/x11-misc/quitcount/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>proxy-maintainers</herd> + <maintainer> + <email>Laurent Vivier</email> + <name>laurent@lamzi.com</name> + <description>Proxied maintainer; set to assignee in all bugs</description> + </maintainer> +</pkgmetadata> diff --git a/x11-misc/quitcount/quitcount-3.1.3.ebuild b/x11-misc/quitcount/quitcount-3.1.3.ebuild new file mode 100644 index 000000000000..af6a20e0e8af --- /dev/null +++ b/x11-misc/quitcount/quitcount-3.1.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit gnome2-utils + +# The string in SRC_URI doesn't follow standard naming convention +MV="3.1" +DESCRIPTION="A simple applet that shows what you saved since you quit smoking." +HOMEPAGE="http://quitcount.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MV}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~x86 ~amd64" +DEPEND="x11-libs/gtk+:3 + >=dev-libs/glib-2.6:2" + +RDEPEND="${DEPEND}" + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |