diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /xfce-extra/xfce4-taskmanager | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'xfce-extra/xfce4-taskmanager')
5 files changed, 121 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-taskmanager/Manifest b/xfce-extra/xfce4-taskmanager/Manifest new file mode 100644 index 000000000000..377f4b6eb783 --- /dev/null +++ b/xfce-extra/xfce4-taskmanager/Manifest @@ -0,0 +1,2 @@ +DIST xfce4-taskmanager-1.0.1.tar.bz2 368495 SHA256 f5aa2796dd9971f8ae400238bfcdd9fa1322dba1466d1e6fd5bf8ee7e88bee86 SHA512 2108a31738c9d544537b830de1089b776272333fa8599cbdf0598cca5af5ec312139ad52137902baa98ebf6c5167fb1ab62b34d7b790b539d01bbe40023411e5 WHIRLPOOL dc91bca96e33065cd52fc5af45bbed885f1100b80fc0293c9ef25f078c88f7eb615b283d1b6f841c86def004d51424f13a2b173be8d0c0e7b4f98a52072663bb +DIST xfce4-taskmanager-1.1.0.tar.bz2 365866 SHA256 2e1eb161f966cbfbd68bd029fb59115bc5ab0c0704cb500d20e7d73967e59ecb SHA512 a7b1d1a6836f89747c873c87e495830438cf3093fd044c43c951abca6a82ab2c0ae9a41eba89d570a83f41fb6ad447c9c4fc578930684c981fbe45de19e1d7f8 WHIRLPOOL 0d3525a572326538ebf4d0d1b58ab703bb95b91a3208a8328d3cc9cb5590e500b6d903f1d4ad36a4e97ef164f7110992bc2a8300610111ce5942891e888ad995 diff --git a/xfce-extra/xfce4-taskmanager/files/xfce4-taskmanager-1.0.0-UTF-8.patch b/xfce-extra/xfce4-taskmanager/files/xfce4-taskmanager-1.0.0-UTF-8.patch new file mode 100644 index 000000000000..a43e77f85f5c --- /dev/null +++ b/xfce-extra/xfce4-taskmanager/files/xfce4-taskmanager-1.0.0-UTF-8.patch @@ -0,0 +1,24 @@ +http://bugs.gentoo.org/488626 +http://bugzilla.xfce.org/show_bug.cgi?id=10417 + +--- src/task-manager-linux.c ++++ src/task-manager-linux.c +@@ -128,7 +128,7 @@ + FILE *file; + gchar filename[96]; + gint i; +- gchar c; ++ gint c; + + snprintf (filename, 96, "/proc/%i/cmdline", task->pid); + if ((file = fopen (filename, "r")) == NULL) +@@ -136,7 +136,7 @@ + + /* Read full command byte per byte until EOF */ + for (i = 0; (c = fgetc (file)) != EOF && i < (gint)sizeof (task->cmdline) - 1; i++) +- task->cmdline[i] = (c == '\0') ? ' ' : c; ++ task->cmdline[i] = (c == '\0') ? ' ' : (gchar)c; + task->cmdline[i] = '\0'; + if (task->cmdline[i-1] == ' ') + task->cmdline[i-1] = '\0'; + diff --git a/xfce-extra/xfce4-taskmanager/metadata.xml b/xfce-extra/xfce4-taskmanager/metadata.xml new file mode 100644 index 000000000000..878ef7ebadf7 --- /dev/null +++ b/xfce-extra/xfce4-taskmanager/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>xfce@gentoo.org</email> + <name>XFCE Team</name> + </maintainer> + <use> + <flag name='gksu'>Build against <pkg>x11-libs/libgksu</pkg> to provide "Run as root" option in the application's menu</flag> + <flag name='gtk3'>Use GTK+3 instead of GTK+2</flag> + </use> +</pkgmetadata> diff --git a/xfce-extra/xfce4-taskmanager/xfce4-taskmanager-1.0.1.ebuild b/xfce-extra/xfce4-taskmanager/xfce4-taskmanager-1.0.1.ebuild new file mode 100644 index 000000000000..4f2d17516ea2 --- /dev/null +++ b/xfce-extra/xfce4-taskmanager/xfce4-taskmanager-1.0.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit xfconf + +DESCRIPTION="Task Manager" +HOMEPAGE="http://goodies.xfce.org/projects/applications/xfce4-taskmanager" +SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux" +IUSE="debug gksu" + +RDEPEND="x11-libs/cairo + >=x11-libs/gtk+-2.12:2 + x11-libs/libwnck:1 + gksu? ( x11-libs/libgksu:2 )" +DEPEND="${RDEPEND} + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig" + +pkg_setup() { + PATCHES=( + "${FILESDIR}"/${PN}-1.0.0-UTF-8.patch + ) + + XFCONF=( + --enable-wnck + $(use_enable gksu) + $(xfconf_use_debug) + ) + + DOCS=( AUTHORS ChangeLog NEWS README THANKS ) +} diff --git a/xfce-extra/xfce4-taskmanager/xfce4-taskmanager-1.1.0.ebuild b/xfce-extra/xfce4-taskmanager/xfce4-taskmanager-1.1.0.ebuild new file mode 100644 index 000000000000..8a54efb2d5ec --- /dev/null +++ b/xfce-extra/xfce4-taskmanager/xfce4-taskmanager-1.1.0.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit xfconf + +DESCRIPTION="Task Manager" +HOMEPAGE="http://goodies.xfce.org/projects/applications/xfce4-taskmanager" +SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux" +IUSE="debug gksu gtk3" + +RDEPEND="x11-libs/cairo:= + gtk3? ( + x11-libs/gtk+:3= + x11-libs/libwnck:3= + ) + !gtk3? ( + >=x11-libs/gtk+-2.12:2= + x11-libs/libwnck:1= + gksu? ( x11-libs/libgksu:2= ) + )" +# GTK+2 is required unconditionally +# https://bugzilla.xfce.org/show_bug.cgi?id=11819 +DEPEND="${RDEPEND} + dev-util/intltool + sys-devel/gettext + >=x11-libs/gtk+-2.12:2= + virtual/pkgconfig" +REQUIRED_USE="gksu? ( !gtk3 )" + +pkg_setup() { + XFCONF=( + --enable-wnck + $(use_enable gtk3) + $(use_enable gksu) + $(xfconf_use_debug) + ) + + DOCS=( AUTHORS ChangeLog NEWS README THANKS ) +} |