summaryrefslogtreecommitdiff
path: root/app-backup/luckybackup/luckybackup-0.4.9.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-backup/luckybackup/luckybackup-0.4.9.ebuild
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-backup/luckybackup/luckybackup-0.4.9.ebuild')
-rw-r--r--app-backup/luckybackup/luckybackup-0.4.9.ebuild59
1 files changed, 0 insertions, 59 deletions
diff --git a/app-backup/luckybackup/luckybackup-0.4.9.ebuild b/app-backup/luckybackup/luckybackup-0.4.9.ebuild
deleted file mode 100644
index eab1f1a17131..000000000000
--- a/app-backup/luckybackup/luckybackup-0.4.9.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit qmake-utils
-
-DESCRIPTION="Powerful and flexible backup (and syncing) tool, using RSync and Qt"
-HOMEPAGE="http://luckybackup.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
-"
-RDEPEND="${DEPEND}
- net-misc/rsync"
-
-DOCS=( readme/{AUTHORS,README,TODO,TRANSLATIONS,changelog} )
-
-src_prepare() {
- sed -i \
- -e "s:/usr/share/doc/${PN}:/usr/share/doc/${PF}:g" \
- -e "s:/usr/share/doc/packages/${PN}:/usr/share/doc/${PF}:g" \
- luckybackup.pro src/global.cpp || die "sed failed"
-
- # The su-to-root command is an ubuntu-specific script so it will
- # not work with Gentoo. No reason to have it anyway.
- sed -i -e "/^Exec/s:=.*:=/usr/bin/${PN}:" menu/${PN}-gnome-su.desktop \
- || die "failed to remove su-to-root"
-
- # causes empty directory to be installed
- sed -i -e '/^INSTALLS/s/debianmenu //' luckybackup.pro \
- || die "sed installs failed"
-
- # bogus dependency - bug #645732
- sed -i -e '/QT += network/s/^/#/' luckybackup.pro || die
-
- # remove text version - cannot remote HTML version
- # as it's used within the application
- rm license/gpl.txt || die "rm failed"
-
- default
-}
-
-src_configure() {
- eqmake5 ${PN}.pro
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install
- einstalldocs
-}