dev-cpp/websocketpp: Port to EAPI 7
authorDavid Seifert <soap@gentoo.org>
Sun, 11 Aug 2019 18:09:59 +0000 (20:09 +0200)
committerDavid Seifert <soap@gentoo.org>
Sun, 11 Aug 2019 18:09:59 +0000 (20:09 +0200)
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: David Seifert <soap@gentoo.org>
dev-cpp/websocketpp/metadata.xml
dev-cpp/websocketpp/websocketpp-0.8.1-r1.ebuild [moved from dev-cpp/websocketpp/websocketpp-0.8.1.ebuild with 78% similarity]

index 66fe497e1c38ed8a7b109b49a5bc313a6bfe21f1..d930eea34f053cbfdc6149fa981c6d32e548ef4a 100644 (file)
@@ -5,9 +5,6 @@
                <email>johu@gentoo.org</email>
                <name>Johannes Huber</name>
        </maintainer>
-       <use>
-               <flag name="boost">Use <pkg>dev-libs/boost</pkg> instead of C++11</flag>
-       </use>
        <upstream>
                <remote-id type="github">zaphoyd/websocketpp</remote-id>
        </upstream>
similarity index 78%
rename from dev-cpp/websocketpp/websocketpp-0.8.1.ebuild
rename to dev-cpp/websocketpp/websocketpp-0.8.1-r1.ebuild
index 7a4b182f57c17f44f28c58379afad34537d0dc6d..4578afc07baaf6bca0e0ff264a1e93c29a2c91cb 100644 (file)
@@ -1,7 +1,7 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit cmake-utils
 
@@ -9,15 +9,14 @@ DESCRIPTION="C++/Boost Asio based websocket client/server library"
 HOMEPAGE="https://www.zaphoyd.com/websocketpp"
 SRC_URI="https://github.com/zaphoyd/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
 LICENSE="BSD"
 SLOT="0"
-IUSE="boost examples test"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+IUSE="examples test"
+RESTRICT="!test? ( test )"
 
-DEPEND=""
-RDEPEND="${DEPEND}
-       boost? ( dev-libs/boost )
-"
+DEPEND="test? ( dev-libs/boost )"
+RDEPEND="dev-libs/boost"
 
 PATCHES=(
        "${FILESDIR}"/${PN}-0.7.0-cmake-install.patch
@@ -29,14 +28,17 @@ PATCHES=(
 
 src_configure() {
        local mycmakeargs=(
-               -DENABLE_CPP11="$(usex !boost)"
+               -DENABLE_CPP11=ON
                -DBUILD_TESTS="$(usex test)"
        )
-
        cmake-utils_src_configure
 }
 
 src_install() {
-       use examples && DOCS=( examples/ )
        cmake-utils_src_install
+
+       if use examples; then
+               dodoc -r examples
+               docompress -x /usr/share/doc/${PF}/examples
+       fi
 }