2018-09-20 12:17:02 +02:00
|
|
|
# Copyright 1999-2018 Gentoo Foundation
|
2014-03-18 11:00:56 +01:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2016-02-11 11:17:28 +01:00
|
|
|
EAPI="6"
|
2014-03-18 11:00:56 +01:00
|
|
|
|
2018-09-20 12:17:02 +02:00
|
|
|
inherit cmake-utils user
|
2015-12-15 15:09:13 +01:00
|
|
|
|
2014-03-18 11:00:56 +01:00
|
|
|
if [[ ${PV} = "9999" ]] ; then
|
2018-09-20 13:00:46 +02:00
|
|
|
EGIT_REPO_URI="https://github.com/SpectrumIM/${PN}2.git"
|
2014-03-18 11:00:56 +01:00
|
|
|
inherit git-r3
|
|
|
|
KEYWORDS=""
|
|
|
|
else
|
|
|
|
RESTRICT="mirror"
|
2018-09-20 12:17:02 +02:00
|
|
|
SRC_URI="https://github.com/SpectrumIM/spectrum2/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
2014-03-18 11:00:56 +01:00
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
fi
|
|
|
|
|
2018-09-20 12:17:02 +02:00
|
|
|
DESCRIPTION="An open source instant messaging transport"
|
|
|
|
HOMEPAGE="https://www.spectrum.im"
|
2014-03-18 11:00:56 +01:00
|
|
|
|
2018-09-20 12:17:02 +02:00
|
|
|
LICENSE="GPL-2+"
|
2016-02-11 11:17:28 +01:00
|
|
|
SLOT="0"
|
2018-09-20 12:17:02 +02:00
|
|
|
IUSE="debug doc frotz irc mysql postgres purple sms +sqlite test twitter xmpp"
|
|
|
|
REQUIRED_USE="|| ( mysql postgres sqlite )"
|
2014-03-18 11:00:56 +01:00
|
|
|
|
2018-09-20 12:17:02 +02:00
|
|
|
DEPEND="dev-libs/boost:=
|
|
|
|
dev-libs/expat
|
2014-03-18 11:00:56 +01:00
|
|
|
dev-libs/log4cxx
|
2018-09-20 12:17:02 +02:00
|
|
|
dev-libs/jsoncpp:=
|
2016-12-09 18:14:23 +01:00
|
|
|
dev-libs/openssl:0=
|
2014-03-18 11:00:56 +01:00
|
|
|
dev-libs/popt
|
2016-12-09 18:14:23 +01:00
|
|
|
dev-libs/protobuf:=
|
2018-09-20 12:17:02 +02:00
|
|
|
net-dns/libidn
|
|
|
|
net-misc/curl
|
|
|
|
sys-libs/zlib
|
2014-03-18 11:00:56 +01:00
|
|
|
doc? ( app-doc/doxygen )
|
2018-09-20 12:17:02 +02:00
|
|
|
frotz? ( !games-engines/frotz )
|
|
|
|
irc? ( net-im/libcommuni )
|
|
|
|
mysql? ( || ( dev-db/mariadb-connector-c dev-db/mysql-connector-c ) )
|
|
|
|
postgres? ( dev-db/postgresql:= )
|
|
|
|
purple? ( dev-libs/glib
|
|
|
|
dev-libs/libev
|
|
|
|
net-im/pidgin )
|
|
|
|
sms? ( app-mobilephone/smstools )
|
|
|
|
sqlite? ( dev-db/sqlite:3 )
|
2014-03-18 11:00:56 +01:00
|
|
|
test? ( dev-util/cppunit )
|
2018-09-20 12:17:02 +02:00
|
|
|
twitter? ( net-misc/curl )
|
|
|
|
xmpp? ( net-im/swift:=[ft] )"
|
|
|
|
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
|
|
|
|
PATCHES=( "${FILESDIR}/remove_debug_cflags.patch" "${FILESDIR}/use_qt5_libcommuni.patch" )
|
2014-03-18 11:00:56 +01:00
|
|
|
|
2018-09-20 12:17:02 +02:00
|
|
|
pkg_setup() {
|
|
|
|
enewgroup spectrum
|
|
|
|
enewuser spectrum -1 -1 /var/lib/spectrum2 spectrum
|
|
|
|
}
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
# Respect users LDFLAGS
|
|
|
|
sed -i -e "s/-Wl,-export-dynamic/& ${LDFLAGS}/" spectrum/src/CMakeLists.txt || die
|
2014-03-18 11:00:56 +01:00
|
|
|
|
2018-09-20 12:17:02 +02:00
|
|
|
# Respect users CFLAGS, when compiling for debug mode.
|
|
|
|
# Since Spectrum2 searches for a qt4 compiled libcommuni,
|
|
|
|
# it must be patched, to find the qt5 compiled libcommuni.
|
|
|
|
# See: https://github.com/SpectrumIM/spectrum2/pull/253
|
|
|
|
cmake-utils_src_prepare
|
|
|
|
}
|
2014-03-18 11:00:56 +01:00
|
|
|
|
|
|
|
src_configure() {
|
2018-09-20 12:17:02 +02:00
|
|
|
if use debug; then
|
|
|
|
CMAKE_BUILD_TYPE="Debug"
|
|
|
|
fi
|
|
|
|
|
2016-02-08 15:14:45 +01:00
|
|
|
local mycmakeargs=(
|
2018-09-20 12:17:02 +02:00
|
|
|
-DENABLE_DOCS="$(usex doc)" \
|
|
|
|
-DENABLE_FROTZ="$(usex frotz)" \
|
|
|
|
-DENABLE_IRC="$(usex irc)" \
|
|
|
|
-DENABLE_MYSQL="$(usex mysql)" \
|
|
|
|
-DENABLE_PQXX="$(usex postgres)" \
|
|
|
|
-DENABLE_PURPLE="$(usex purple)" \
|
|
|
|
-DENABLE_SMSTOOLS3="$(usex sms)" \
|
|
|
|
-DENABLE_SQLITE3="$(usex sqlite)" \
|
|
|
|
-DENABLE_TESTS="$(usex test)" \
|
|
|
|
-DENABLE_TWITTER="$(usex twitter)" \
|
|
|
|
-DENABLE_XMPP="$(usex xmpp)" \
|
|
|
|
-DLIB_INSTALL_DIR="$(get_libdir)"
|
2014-03-18 11:00:56 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
cmake-utils_src_configure
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
cmake-utils_src_install
|
|
|
|
|
2018-09-20 12:17:02 +02:00
|
|
|
einstalldocs
|
2014-03-18 11:00:56 +01:00
|
|
|
|
2018-09-20 12:17:02 +02:00
|
|
|
diropts -o spectrum -g spectrum
|
|
|
|
keepdir /var/log/spectrum2 /var/lib/spectrum2
|
|
|
|
|
|
|
|
newinitd "${FILESDIR}"/spectrum2.initd spectrum2
|
2014-03-18 11:00:56 +01:00
|
|
|
}
|