diff options
author | Michael Weber <xmw@gentoo.org> | 2017-12-22 10:01:15 +0100 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2017-12-22 10:01:24 +0100 |
commit | a08d03188dcbdecf81d56a9445a0351a1aa265cd (patch) | |
tree | 43c40710809bca9154e5826e33a283768d4f98d4 | |
parent | net-im/discord-bin: Remove 0.0.2-r1 (diff) | |
download | gentoo-a08d03188dcbdecf81d56a9445a0351a1aa265cd.tar.gz gentoo-a08d03188dcbdecf81d56a9445a0351a1aa265cd.tar.bz2 gentoo-a08d03188dcbdecf81d56a9445a0351a1aa265cd.zip |
app-backup/backintime: Add live ebuild and update HOMEPAGE (thanks Samuel Bauer).
Closes: https://bugs.gentoo.org/641600
Bug: https://bugs.gentoo.org/641962
Package-Manager: Portage-2.3.19, Repoman-2.3.6
-rw-r--r-- | app-backup/backintime/backintime-1.1.24.ebuild | 4 | ||||
-rw-r--r-- | app-backup/backintime/backintime-9999.ebuild | 87 |
2 files changed, 89 insertions, 2 deletions
diff --git a/app-backup/backintime/backintime-1.1.24.ebuild b/app-backup/backintime/backintime-1.1.24.ebuild index a72918d9c63d..e06ed0d26293 100644 --- a/app-backup/backintime/backintime-1.1.24.ebuild +++ b/app-backup/backintime/backintime-1.1.24.ebuild @@ -3,12 +3,12 @@ EAPI=6 -PYTHON_COMPAT=( python3_{4,5} ) +PYTHON_COMPAT=( python3_{4,5,6} ) inherit eutils python-single-r1 gnome2-utils DESCRIPTION="Backup system inspired by TimeVault and FlyBack, with a GUI for GNOME and KDE4" -HOMEPAGE="https://backintime.readthedocs.io/" +HOMEPAGE="https://backintime.readthedocs.io/ https://github.com/bit-team/backintime/" SRC_URI="https://github.com/bit-team/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" diff --git a/app-backup/backintime/backintime-9999.ebuild b/app-backup/backintime/backintime-9999.ebuild new file mode 100644 index 000000000000..1bff0ab51bab --- /dev/null +++ b/app-backup/backintime/backintime-9999.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) + +inherit eutils python-single-r1 gnome2-utils git-r3 + +DESCRIPTION="Backup system inspired by TimeVault and FlyBack, with a GUI for GNOME and KDE4" +HOMEPAGE="https://backintime.readthedocs.io/ https://github.com/bit-team/backintime/" +EGIT_REPO_URI="https://github.com/bit-team/backintime/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" +IUSE="qt5" + +DEPEND="${PYTHON_DEPS} + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/keyring[${PYTHON_USEDEP}] + net-misc/openssh + net-misc/rsync[xattr,acl]" +RDEPEND="${DEPEND} + qt5? ( dev-python/PyQt5 )" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +src_prepare() { + #fix doc install location + sed -e "s:/doc/${PN}-common:/doc/${PF}:g" \ + -i common/configure || die + sed -e "s:/doc/${PN}-qt:/doc/${PF}:g" \ + -i qt/configure || die + sed -e "/addInstallFile \"..\/VERSION/d" \ + -e "/addInstallFile \"..\/LICENSE/d" \ + -e "/addInstallFile \"..\/debian\/copyright/d" \ + -i {qt,common}/configure || die + + if [ -n ${LINGUAS+x} ] ; then + cd common/po || die + for po in *.po ; do + if ! has ${po/.po} ${LINGUAS} ; then + rm ${po} || die + fi + done + fi + + default +} + +src_configure() { + cd "${S}"/common || die + ./configure --python3 --no-fuse-group || die + if use qt5 ; then + cd "${S}"/qt || die + ./configure --python3 || die + fi +} + +src_compile() { + cd "${S}"/common || die + emake + if use qt5 ; then + cd "${S}"/qt || die + emake + fi +} + +src_install() { + cd "${S}"/common || die + emake DESTDIR="${D}" install + if use qt5 ; then + cd "${S}"/qt || die + emake DESTDIR="${D}" install + fi + + python_optimize "${D}" +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |