diff options
author | Christian Ruppert <idl0r@gentoo.org> | 2009-12-14 17:18:04 +0000 |
---|---|---|
committer | Christian Ruppert <idl0r@gentoo.org> | 2009-12-14 17:18:04 +0000 |
commit | dabe1ee7640019924863a191ec1bc8d495bf814e (patch) | |
tree | ff668359330da9b55a5a62ca696bc75770afa148 /x11-misc/tint2 | |
parent | Revision bump for xorg-server-1.6.5 (diff) | |
download | gentoo-2-dabe1ee7640019924863a191ec1bc8d495bf814e.tar.gz gentoo-2-dabe1ee7640019924863a191ec1bc8d495bf814e.tar.bz2 gentoo-2-dabe1ee7640019924863a191ec1bc8d495bf814e.zip |
Fix bug 296890.
(Portage version: 2.2_rc59/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/tint2')
-rw-r--r-- | x11-misc/tint2/ChangeLog | 7 | ||||
-rw-r--r-- | x11-misc/tint2/tint2-0.7.1-r1.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/x11-misc/tint2/ChangeLog b/x11-misc/tint2/ChangeLog index 043e9a90a96d..e7aac9cab973 100644 --- a/x11-misc/tint2/ChangeLog +++ b/x11-misc/tint2/ChangeLog @@ -1,6 +1,11 @@ # 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.7 2009/09/07 21:19:29 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v 1.8 2009/12/14 17:18:04 idl0r Exp $ + +*tint2-0.7.1-r1 (14 Dec 2009) + + 14 Dec 2009; Christian Ruppert <idl0r@gentoo.org> +tint2-0.7.1-r1.ebuild: + Fix bug 296890. 07 Sep 2009; Markus Meier <maekke@gentoo.org> tint2-0.7.1.ebuild: amd64/x86 stable, bug #283125 diff --git a/x11-misc/tint2/tint2-0.7.1-r1.ebuild b/x11-misc/tint2/tint2-0.7.1-r1.ebuild new file mode 100644 index 000000000000..9975d0c64630 --- /dev/null +++ b/x11-misc/tint2/tint2-0.7.1-r1.ebuild @@ -0,0 +1,36 @@ +# 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.1-r1.ebuild,v 1.1 2009/12/14 17:18:04 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="battery examples" + +RDEPEND="dev-libs/glib:2 + x11-libs/cairo + x11-libs/pango + x11-libs/libX11 + x11-libs/libXinerama + media-libs/imlib2[X]" +# autoconf >= 2.61 for --docdir, bug 296890 +DEPEND="${RDEPEND} + dev-util/pkgconfig + x11-proto/xineramaproto + >=sys-devel/autoconf-2.61" + +src_configure() { + econf --docdir=/usr/share/doc/${PF} \ + $(use_enable battery) \ + $(use_enable examples) +} + +src_install() { + emake DESTDIR="${D}" install || die +} |