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

111 lines
2.4 KiB
Bash
Raw Normal View History

2020-05-05 21:10:40 +02:00
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
2019-03-21 23:44:42 +01:00
EAPI=7
2020-07-30 18:45:20 +02:00
inherit cmake systemd
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 )"
2020-07-30 18:45:20 +02:00
RESTRICT="!test? ( test )"
2019-01-12 04:05:59 +01:00
RDEPEND="
2019-09-20 15:19:03 +02:00
acct-group/spectrum
acct-user/spectrum
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
)
)
2019-07-22 01:54:19 +02:00
postgres? ( >=dev-libs/libpqxx-6.4.5:= )
2019-01-12 04:05:59 +01:00
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
${RDEPEND}
doc? ( app-doc/doxygen )
2020-07-30 18:45:20 +02:00
test? ( dev-util/cppunit )
"
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
2020-07-30 18:45:20 +02:00
cmake_src_prepare
2018-09-20 12:17:02 +02:00
}
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)"
2020-05-05 21:10:40 +02:00
$(usex irc '-DENABLE_QT4=OFF' '')
-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)"
)
2020-07-30 18:45:20 +02:00
cmake_src_configure
}
2019-01-12 04:05:59 +01:00
src_test() {
2020-07-30 18:45:20 +02:00
cd "${BUILD_DIR}/tests/libtransport" || die
./libtransport_test || die
2019-01-12 04:05:59 +01:00
}
src_install() {
2020-07-30 18:45:20 +02:00
cmake_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
2019-07-22 01:54:19 +02:00
systemd_newtmpfilesd "${FILESDIR}"/spectrum2.tmpfiles-r1 spectrum2.conf
2019-01-12 04:05:59 +01:00
einstalldocs
}