diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-03-28 17:03:14 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-03-28 17:03:14 +0000 |
commit | 815e383d772ae26b081283cef557a8d2e318016b (patch) | |
tree | 997653846603d5e02ea43d9dc30d76137eafabbd /x11-libs/c++-gtk-utils | |
parent | Version bump for Gnome 3.8 (diff) | |
download | gentoo-2-815e383d772ae26b081283cef557a8d2e318016b.tar.gz gentoo-2-815e383d772ae26b081283cef557a8d2e318016b.tar.bz2 gentoo-2-815e383d772ae26b081283cef557a8d2e318016b.zip |
Version bump.
(Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'x11-libs/c++-gtk-utils')
-rw-r--r-- | x11-libs/c++-gtk-utils/ChangeLog | 9 | ||||
-rw-r--r-- | x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.16.ebuild | 41 |
2 files changed, 48 insertions, 2 deletions
diff --git a/x11-libs/c++-gtk-utils/ChangeLog b/x11-libs/c++-gtk-utils/ChangeLog index fa273533e1a5..5abcd0f35283 100644 --- a/x11-libs/c++-gtk-utils/ChangeLog +++ b/x11-libs/c++-gtk-utils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/c++-gtk-utils -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/c++-gtk-utils/ChangeLog,v 1.14 2012/06/28 11:29:53 ssuominen Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/c++-gtk-utils/ChangeLog,v 1.15 2013/03/28 17:03:14 jer Exp $ + +*c++-gtk-utils-2.0.16 (28 Mar 2013) + + 28 Mar 2013; Jeroen Roovers <jer@gentoo.org> +c++-gtk-utils-2.0.16.ebuild: + Version bump. 28 Jun 2012; Samuli Suominen <ssuominen@gentoo.org> -c++-gtk-utils-2.0.4.ebuild, -c++-gtk-utils-2.0.8.ebuild: diff --git a/x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.16.ebuild b/x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.16.ebuild new file mode 100644 index 000000000000..89d9fd67ce43 --- /dev/null +++ b/x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.16.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.16.ebuild,v 1.1 2013/03/28 17:03:14 jer Exp $ + +EAPI=5 +inherit eutils + +DESCRIPTION="A library containing a number of classes and functions for programming GTK+ programs using C++" +HOMEPAGE="http://cxx-gtk-utils.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN/++/xx}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="+gtk nls static-libs" +SLOT="3" + +RDEPEND=" + >=dev-libs/glib-2.26 + gtk? ( x11-libs/gtk+:3 ) +" +DEPEND=" + ${RDEPEND} + nls? ( sys-devel/gettext ) + virtual/pkgconfig +" + +DOCS=( ChangeLog ) + +src_configure() { + econf \ + $(use_enable nls) \ + $(use_with gtk) \ + $(use_enable static-libs static) \ + --docdir=/usr/share/doc/${PF} \ + --htmldir=/usr/share/doc/${PF}/html +} + +src_install() { + default + prune_libtool_files +} |