diff options
author | 2009-06-07 18:15:26 +0000 | |
---|---|---|
committer | 2009-06-07 18:15:26 +0000 | |
commit | 3233bd3f57cc1b6f8a1cce1a88ab4d8d16ad1d11 (patch) | |
tree | c642612df56dfc67f653c0e587200d467ac2299a /x11-misc/tint2 | |
parent | Stable on alpha, bug #272088 (diff) | |
download | gentoo-2-3233bd3f57cc1b6f8a1cce1a88ab4d8d16ad1d11.tar.gz gentoo-2-3233bd3f57cc1b6f8a1cce1a88ab4d8d16ad1d11.tar.bz2 gentoo-2-3233bd3f57cc1b6f8a1cce1a88ab4d8d16ad1d11.zip |
New ebuild for bug 225733.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/tint2')
-rw-r--r-- | x11-misc/tint2/ChangeLog | 10 | ||||
-rw-r--r-- | x11-misc/tint2/metadata.xml | 17 | ||||
-rw-r--r-- | x11-misc/tint2/tint2-0.7_beta2.ebuild | 32 |
3 files changed, 59 insertions, 0 deletions
diff --git a/x11-misc/tint2/ChangeLog b/x11-misc/tint2/ChangeLog new file mode 100644 index 000000000000..b9c261dfb00b --- /dev/null +++ b/x11-misc/tint2/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for x11-misc/tint2 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v 1.1 2009/06/07 18:15:26 idl0r Exp $ + +*tint2-0.7_beta2 (07 Jun 2009) + + 07 Jun 2009; Christian Ruppert <idl0r@gentoo.org> +tint2-0.7_beta2.ebuild, + +metadata.xml: + New ebuild for bug 225733. + diff --git a/x11-misc/tint2/metadata.xml b/x11-misc/tint2/metadata.xml new file mode 100644 index 000000000000..8ecb7eb14e8c --- /dev/null +++ b/x11-misc/tint2/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd/> + <maintainer> + <email>idl0r@gentoo.org</email> + <name>Christian Ruppert</name> + </maintainer> + <use> + <flag name="examples">Install tint2rc examples</flag> + </use> + <longdescription lang="en"> + tint2 is a simple panel/taskbar intentionally made for <pkg>openbox</pkg>3, but should also work with other window managers. + It's based on ttm code http://code.google.com/p/ttm/. + The goal is to keep a clean and unintrusive look with code lightweight and compliance with freedesktop specifications. + </longdescription> +</pkgmetadata> diff --git a/x11-misc/tint2/tint2-0.7_beta2.ebuild b/x11-misc/tint2/tint2-0.7_beta2.ebuild new file mode 100644 index 000000000000..6c5b7707ae7d --- /dev/null +++ b/x11-misc/tint2/tint2-0.7_beta2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/tint2-0.7_beta2.ebuild,v 1.1 2009/06/07 18:15:26 idl0r Exp $ + +EAPI="2" + +DESCRIPTION="A lightweight panel/taskbar" +HOMEPAGE="http://code.google.com/p/tint2/" +SRC_URI="http://tint2.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples" + +RDEPEND="dev-libs/glib:2 + x11-libs/cairo + x11-libs/pango + x11-libs/libX11 + x11-libs/libXinerama + media-libs/imlib2" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_configure() { + econf $(use_enable doc) \ + $(use_enable examples) +} + +src_install() { + emake DESTDIR="${D}" install || die +} |