commit:     cfdad2793870d7034def686bf2a33eef2b72bae2
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Thu May  5 00:51:30 2016 +0000
Commit:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Tue May 10 09:28:07 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfdad279

dev-libs/uchardet: add live ebuild

It has EAPI=6.

Package-Manager: portage-2.2.28

Signed-off-by: Ian Delaney <idella4 <AT> gentoo.org>

 dev-libs/uchardet/uchardet-9999.ebuild | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/dev-libs/uchardet/uchardet-9999.ebuild 
b/dev-libs/uchardet/uchardet-9999.ebuild
new file mode 100644
index 0000000..564cafb
--- /dev/null
+++ b/dev-libs/uchardet/uchardet-9999.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils git-r3
+
+DESCRIPTION="An encoding detector library ported from Mozilla"
+HOMEPAGE="https://github.com/BYVoid/uchardet";
+EGIT_REPO_URI="git://github.com/BYVoid/${PN}.git"
+
+LICENSE="MPL-1.1"
+SLOT="0"
+KEYWORDS=""
+IUSE="static-libs test"
+
+src_prepare() {
+       cmake-utils_src_prepare
+       use test || cmake_comment_add_subdirectory test
+}
+
+src_configure() {
+       local mycmakeargs=(
+               -DBUILD_STATIC=$(usex static-libs)
+       )
+       cmake-utils_src_configure
+}

Reply via email to