diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2018-02-09 22:02:22 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2018-02-09 22:02:22 +0300 |
commit | d60bab1a626231adf528a7fec54d2d0388005771 (patch) | |
tree | 6cbb2f8e9a3beb5fcf992abe14401f912fae2799 | |
parent | 7829ddd87d91d1c72f26021f2884330a560d73fd (diff) |
удалено: net-p2p/retroshare/retroshare-scm.ebuild~
-rw-r--r-- | net-p2p/retroshare/retroshare-scm.ebuild~ | 189 |
1 files changed, 0 insertions, 189 deletions
diff --git a/net-p2p/retroshare/retroshare-scm.ebuild~ b/net-p2p/retroshare/retroshare-scm.ebuild~ deleted file mode 100644 index ac96b7b..0000000 --- a/net-p2p/retroshare/retroshare-scm.ebuild~ +++ /dev/null @@ -1,189 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=6 - -inherit eutils gnome2-utils multilib qmake-utils git-r3 - -MY_PV="${PV/_rc/.RC}" -MY_PV="${MY_PV/_pre/$'\x7e'}" # bug #557276 - -DESCRIPTION="P2P private sharing application" -HOMEPAGE="http://retroshare.sourceforge.net" -SRC_URI="" -EGIT_REPO_URI="https://github.com/RetroShare/RetroShare.git" - -# pegmarkdown can also be used with MIT -LICENSE="GPL-2 GPL-3 Apache-2.0 LGPL-2.1" -SLOT="0" -KEYWORDS="" - -IUSE="cli feedreader libressl qt4 +qt5 voip +sqlcipher" -REQUIRED_USE="|| ( cli qt5 qt4 ) - feedreader? ( || ( qt5 qt4 ) ) - voip? ( || ( qt5 qt4 ) ) - qt4? ( !qt5 ) - qt5? ( !qt4 ) - " - -RDEPEND=" - app-arch/bzip2 - sqlcipher? ( - dev-db/sqlcipher - ) - !libressl? ( dev-libs/openssl:0[static-libs(+)?] ) - libressl? ( dev-libs/libressl[static-libs(+)?] ) - gnome-base/libgnome-keyring - net-libs/libmicrohttpd - net-libs/libupnp - sys-libs/zlib - cli? ( - dev-libs/protobuf - net-libs/libssh[server] - ) - feedreader? ( - dev-libs/libxml2 - dev-libs/libxslt - net-misc/curl - ) - qt5? ( - x11-libs/libX11 - x11-libs/libXScrnSaver - dev-qt/designer:5 - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtmultimedia:5 - dev-qt/qtnetwork:5 - dev-qt/qtprintsupport:5 - dev-qt/qtscript:5 - dev-qt/qtwidgets:5 - dev-qt/qtx11extras:5 - dev-qt/qtxml:5 - ) - qt4? ( - x11-libs/libX11 - x11-libs/libXScrnSaver - dev-qt/designer:4 - dev-qt/qtcore:4 - dev-qt/qtgui:4 - dev-qt/qtmultimedia:4 - dev-qt/qtscript:4 - ) - voip? ( - media-libs/opencv - media-libs/speex - )" -DEPEND="${RDEPEND} - qt5? ( dev-qt/qtcore:5 ) - qt4? ( dev-qt/qtcore:4 ) - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/hidden_service.patch" - "${FILESDIR}/cflags.patch" - "${FILESDIR}/disable_key_array_redraw.patch" -) - - -src_prepare() { - default - local dir - - sed -i \ - -e "s|/usr/lib/retroshare/extensions6/|/usr/$(get_libdir)/${PN}/extensions6/|" \ - libretroshare/src/rsserver/rsinit.cc \ - || die "sed on libretroshare/src/rsserver/rsinit.cc failed" - - rs_src_dirs="libbitdht/src openpgpsdk/src libresapi/src libretroshare/src supportlibs/pegmarkdown" - use cli && rs_src_dirs="${rs_src_dirs} retroshare-nogui/src" - use feedreader && rs_src_dirs="${rs_src_dirs} plugins/FeedReader" - use qt5 && rs_src_dirs="${rs_src_dirs} retroshare-gui/src" - use qt4 && rs_src_dirs="${rs_src_dirs} retroshare-gui/src" - use voip && rs_src_dirs="${rs_src_dirs} plugins/VOIP" - - # Force linking to sqlcipher ONLY - sed -i \ - -e '/isEmpty(SQLCIPHER_OK) {/aerror(libsqlcipher not found)' \ - retroshare-gui/src/retroshare-gui.pro \ - retroshare-nogui/src/retroshare-nogui.pro || die 'sed on retroshare-gui/src/retroshare-gui.pro failed' - - #regenerate translations in case developers just forgot to do so - local use_qt4 - use qt4 && use_qt4="1" - if [ use_qt4 == "1" ]; then - qtchooser -run-tool=lupdate -qt=4 retroshare-gui/src/retroshare-gui.pro - qtchooser -run-tool=lrelease -qt=4 retroshare-gui/src/retroshare-gui.pro - else - qtchooser -run-tool=lupdate -qt=5 retroshare-gui/src/retroshare-gui.pro - qtchooser -run-tool=lrelease -qt=5 retroshare-gui/src/retroshare-gui.pro - fi - - epatch_user -} - -src_configure() { - local conf_add="release no-debug c++11" - use sqlcipher || conf_add="${conf_add} no_sqlcipher" - for dir in ${rs_src_dirs} ; do - pushd "${S}/${dir}" 2>/dev/null || die - use qt5 && eqmake5 CONFIG+="${conf_add}" - use qt4 && eqmake4 CONFIG+="${conf_add}" - popd 2>/dev/null || die - done - sed "s/= gcc/= ${CC}/g" -i supportlibs/pegmarkdown/Makefile -} - -src_compile() { - local dir - - for dir in ${rs_src_dirs} ; do - emake -C "${dir}" - done - - unset rs_src_dirs -} - -src_install() { - local i - local extension_dir="/usr/$(get_libdir)/${PN}/extensions6/" - - use cli && dobin retroshare-nogui/src/retroshare-nogui - use qt5 && dobin retroshare-gui/src/retroshare - use qt4 && dobin retroshare-gui/src/retroshare - - exeinto "${extension_dir}" - use feedreader && doexe plugins/FeedReader/*.so* - use voip && doexe plugins/VOIP/*.so* - - insinto /usr/share/retroshare - doins libbitdht/src/bitdht/bdboot.txt - - insinto /usr/share/retroshare/webui - doins libresapi/src/webui-src/* - - make_desktop_entry RetroShare - for i in 24 48 64 ; do - doicon -s ${i} "data/${i}x${i}/apps/${PN}.png" - done - doicon -s 128 "data/${PN}.xpm" -} - -pkg_preinst() { - if [[ "${REPLACING_VERSIONS}" = "0.5*" ]]; then - elog "You are upgrading from Retroshare 0.5.* to ${PV}" - elog "Version 0.6.* is backward-incompatible with 0.5 branch" - elog "and clients with 0.6.* can not connect to clients that have 0.5.*" - elog "It's recommended to drop all your configuration and either" - elog "generate a new certificate or import existing from a backup" - fi - gnome2_icon_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update -} - -pkg_postrm() { - gnome2_icon_cache_update -} |