gentoo/net-im/spectrum2/spectrum2-9999.ebuild

123 lines
2.6 KiB
Bash
Raw Normal View History

2019-01-12 04:05:59 +01:00
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
2019-03-21 23:44:42 +01:00
EAPI=7
2019-01-12 04:05:59 +01:00
PYTHON_COMPAT=( python2_7 )
2019-01-12 04:05:59 +01:00
inherit cmake-utils python-single-r1 systemd user
2015-12-15 15:09:13 +01:00
if [[ ${PV} = "9999" ]] ; then
EGIT_REPO_URI="https://github.com/SpectrumIM/${PN}.git"
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"
2019-03-21 23:44:42 +01:00
KEYWORDS="~amd64"
fi
2018-09-20 12:17:02 +02:00
DESCRIPTION="An open source instant messaging transport"
HOMEPAGE="https://www.spectrum.im"
2018-09-20 12:17:02 +02:00
LICENSE="GPL-2+"
SLOT="0"
2019-03-21 23:44:42 +01:00
IUSE="doc frotz irc mysql postgres purple sms +sqlite test twitter whatsapp xmpp"
2018-09-20 12:17:02 +02:00
REQUIRED_USE="|| ( mysql postgres sqlite )"
2019-01-12 04:05:59 +01:00
RDEPEND="
2019-03-21 23:44:42 +01:00
dev-libs/boost:=[nls]
2018-09-20 12:17:02 +02:00
dev-libs/expat
2019-01-12 04:05:59 +01:00
dev-libs/libev:=
dev-libs/log4cxx
2018-09-20 12:17:02 +02:00
dev-libs/jsoncpp:=
dev-libs/openssl:0=
dev-libs/popt
dev-libs/protobuf:=
net-dns/libidn:0=
2019-01-12 04:05:59 +01:00
net-im/swift:=
2018-09-20 12:17:02 +02:00
net-misc/curl
sys-libs/zlib:=
2018-09-20 12:17:02 +02:00
frotz? ( !games-engines/frotz )
irc? ( net-im/libcommuni )
2019-01-12 04:05:59 +01:00
mysql? (
|| (
2019-01-12 04:05:59 +01:00
dev-db/mariadb-connector-c
dev-db/mysql-connector-c
)
)
postgres? ( dev-libs/libpqxx:= )
purple? (
dev-libs/glib
net-im/pidgin:=
2019-01-12 04:05:59 +01:00
)
2018-09-20 12:17:02 +02:00
sms? ( app-mobilephone/smstools )
sqlite? ( dev-db/sqlite:3 )
twitter? ( net-misc/curl )
2019-01-12 04:05:59 +01:00
whatsapp? ( net-im/transwhat )"
DEPEND="
2019-01-12 04:05:59 +01:00
${PYTHON_DEPS}
${RDEPEND}
doc? ( app-doc/doxygen )
2019-01-12 04:05:59 +01:00
test? (
dev-python/sleekxmpp[${PYTHON_USEDEP}]
dev-util/cppunit
net-irc/ngircd
2019-01-12 04:05:59 +01:00
)
"
2018-09-20 12:17:02 +02:00
# Tests are currently restricted, as they do completly fail
RESTRICT="test"
2018-09-20 12:17:02 +02:00
pkg_setup() {
enewgroup spectrum
enewuser spectrum -1 -1 /var/lib/spectrum2 spectrum
2019-01-12 04:05:59 +01:00
use test && python-single-r1_pkg_setup
2018-09-20 12:17:02 +02:00
}
src_prepare() {
# Respect users LDFLAGS
sed -i -e "s/-Wl,-export-dynamic/& ${LDFLAGS}/" spectrum/src/CMakeLists.txt || die
2018-09-20 12:17:02 +02:00
cmake-utils_src_prepare
}
src_configure() {
local mycmakeargs=(
-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)"
2019-05-18 08:20:09 +02:00
-DLIB_install_DIR="$(get_libdir)"
)
cmake-utils_src_configure
}
2019-01-12 04:05:59 +01:00
src_test() {
cd tests/libtransport && "${EPYTHON}" ../start.py || die
2019-01-12 04:05:59 +01:00
}
src_install() {
cmake-utils_src_install
2018-09-20 12:17:02 +02:00
diropts -o spectrum -g spectrum
keepdir /var/log/spectrum2 /var/lib/spectrum2
diropts
2018-09-20 12:17:02 +02:00
newinitd "${FILESDIR}"/spectrum2.initd spectrum2
2019-01-12 04:05:59 +01:00
systemd_newunit "${FILESDIR}"/spectrum2.service spectrum2.service
systemd_newtmpfilesd "${FILESDIR}"/spectrum2.tmpfiles spectrum2.conf
einstalldocs
}