dev-libs/uchardet: add live ebuild
authorIlya Tumaykin <itumaykin@gmail.com>
Thu, 5 May 2016 00:51:30 +0000 (03:51 +0300)
committerIan Delaney <idella4@gentoo.org>
Tue, 10 May 2016 09:28:07 +0000 (17:28 +0800)
It has EAPI=6.

Package-Manager: portage-2.2.28

Signed-off-by: Ian Delaney <idella4@gentoo.org>
dev-libs/uchardet/uchardet-9999.ebuild [new file with mode: 0644]

diff --git a/dev-libs/uchardet/uchardet-9999.ebuild b/dev-libs/uchardet/uchardet-9999.ebuild
new file mode 100644 (file)
index 0000000..564cafb
--- /dev/null
@@ -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
+}