diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-12-19 16:47:51 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-12-19 17:16:41 +0100 |
commit | 4cab941588fcde4afef864cc4985f4af2e44dd6a (patch) | |
tree | 09dc3587d0002677c90a6f38ceeb45fc062996e7 /dev-libs/guiloader-c++ | |
parent | dev-cpp/gnome-vfsmm: Fix building with latest glibmm/libsigc++ (diff) | |
download | gentoo-4cab941588fcde4afef864cc4985f4af2e44dd6a.tar.gz gentoo-4cab941588fcde4afef864cc4985f4af2e44dd6a.tar.bz2 gentoo-4cab941588fcde4afef864cc4985f4af2e44dd6a.zip |
dev-libs/guiloader-c++: Fix building with latest glibmm/libsigc++
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-libs/guiloader-c++')
-rw-r--r-- | dev-libs/guiloader-c++/guiloader-c++-2.21.0-r1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/dev-libs/guiloader-c++/guiloader-c++-2.21.0-r1.ebuild b/dev-libs/guiloader-c++/guiloader-c++-2.21.0-r1.ebuild new file mode 100644 index 000000000000..73c2e44f84dd --- /dev/null +++ b/dev-libs/guiloader-c++/guiloader-c++-2.21.0-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +inherit eutils flag-o-matic + +DESCRIPTION="C++ binding to GuiLoader library" +HOMEPAGE="http://www.crowdesigner.org" +SRC_URI="https://nothing-personal.googlecode.com/files/${P}.tar.bz2" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls" + +LANGS="ru" + +RDEPEND=">=dev-libs/guiloader-2.21 + >=dev-cpp/gtkmm-2.22:2.4 + >=dev-cpp/glibmm-2.24:2" +DEPEND="${RDEPEND} + dev-libs/boost + virtual/pkgconfig + nls? ( >=sys-devel/gettext-0.18 )" + +for x in ${LANGS}; do + IUSE="${IUSE} linguas_${x}" +done + +src_configure() { + append-cxxflags -std=c++11 + econf $(use_enable nls) +} + +src_install() { + default + prune_libtool_files + dodoc doc/{authors.txt,news.en.txt,readme.en.txt} +} |