+++ /dev/null
-Index: onion-0.7/CMakeLists.txt
-===================================================================
---- onion-0.7.orig/CMakeLists.txt
-+++ onion-0.7/CMakeLists.txt
-@@ -151,15 +151,6 @@ endif (SYSTEMD_ENABLED)
- add_definitions(-D_BSD_SOURCE)
- add_definitions(-D_POSIX_C_SOURCE=200112L)
-
--##
--IF (${CMAKE_BUILD_TYPE} MATCHES "Debug")
-- add_definitions(-D__DEBUG__)
-- SET(CMAKE_C_FLAGS "-Wall -Werror -O0 -fPIC")
--ELSE (${CMAKE_BUILD_TYPE} MATCHES "Debug")
-- SET(CMAKE_C_FLAGS "-Wall -Werror -O2 -fPIC")
--ENDIF (${CMAKE_BUILD_TYPE} MATCHES "Debug")
--
--
- project (onion)
-
- INCLUDE(CPackConfig.cmake)
+++ /dev/null
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-SCM=""
-if [ "${PV#9999}" != "${PV}" ] ; then
- SCM="git-r3"
- EGIT_REPO_URI="https://github.com/davidmoreno/onion"
-fi
-
-inherit ${SCM} cmake-utils
-
-DESCRIPTION="C library to create simple HTTP servers and Web Applications"
-HOMEPAGE="http://www.coralbits.com/libonion/ https://github.com/davidmoreno/onion"
-
-if [ "${PV#9999}" != "${PV}" ] ; then
- KEYWORDS=""
- SRC_URI=""
-else
- KEYWORDS="~amd64"
- SRC_URI="https://github.com/davidmoreno/onion/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-fi
-
-LICENSE="|| ( GPL-2+ Apache-2.0 ) AGPL-3"
-SLOT="0"
-IUSE="
- gnutls pam png xml systemd sqlite
- test examples cxx -libev -libevent
-"
-
-RDEPEND="
- gnutls? ( net-libs/gnutls dev-libs/libgcrypt:0= )
- pam? ( virtual/pam )
- png? ( media-libs/libpng:0= x11-libs/cairo )
- xml? ( dev-libs/libxml2:2 sys-libs/zlib )
- systemd? ( sys-apps/systemd )
- sqlite? ( dev-db/sqlite:3 )
- libev? ( dev-libs/libev )
- !libev? ( libevent? ( dev-libs/libevent ) )
-"
-DEPEND="${RDEPEND}
- test? ( net-misc/curl )
-"
-REQUIRED_USE="test? ( examples )"
-
-PATCHES=(
- "${FILESDIR}/cflags.patch"
-)
-
-src_configure() {
- use test || echo '' > tests/CMakeLists.txt
- local mycmakeargs=(
- "-DONION_USE_SSL=$(usex gnutls)"
- "-DONION_USE_PAM=$(usex pam)"
- "-DONION_USE_PNG=$(usex png)"
- "-DONION_USE_XML2=$(usex xml)"
- "-DONION_USE_SYSTEMD=$(usex systemd)"
- "-DONION_USE_SQLITE3=$(usex sqlite)"
- "-DONION_USE_TESTS=$(usex test)"
- "-DONION_EXAMPLES=$(usex examples)"
- "-DONION_USE_BINDINGS_CPP=$(usex cxx)"
- "-DONION_POLLER=$(usex libev libev "$(usex libevent libevent default)")"
- )
- cmake-utils_src_configure
-}