summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Bangert <bangert@gentoo.org>2009-10-25 11:04:05 +0000
committerThilo Bangert <bangert@gentoo.org>2009-10-25 11:04:05 +0000
commit0124b4f4bcab33c3dcbf4cc5caa5325bead3e738 (patch)
treeccaa416ff1e7f8f1d8bde49c2d518abccff70299 /app-backup
parentMask app-cdr/kiso, replaced by app-cdr/acetoneiso. (diff)
downloadgentoo-2-0124b4f4bcab33c3dcbf4cc5caa5325bead3e738.tar.gz
gentoo-2-0124b4f4bcab33c3dcbf4cc5caa5325bead3e738.tar.bz2
gentoo-2-0124b4f4bcab33c3dcbf4cc5caa5325bead3e738.zip
die on install
(Portage version: 2.2_rc42/cvs/Linux i686)
Diffstat (limited to 'app-backup')
-rw-r--r--app-backup/backintime/ChangeLog6
-rw-r--r--app-backup/backintime/backintime-0.9.26-r1.ebuild8
2 files changed, 9 insertions, 5 deletions
diff --git a/app-backup/backintime/ChangeLog b/app-backup/backintime/ChangeLog
index bff5f7912b90..c8d988b6187e 100644
--- a/app-backup/backintime/ChangeLog
+++ b/app-backup/backintime/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-backup/backintime
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-backup/backintime/ChangeLog,v 1.3 2009/10/18 20:08:25 bangert Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-backup/backintime/ChangeLog,v 1.4 2009/10/25 11:04:05 bangert Exp $
+
+ 25 Oct 2009; Thilo Bangert <bangert@gentoo.org>
+ backintime-0.9.26-r1.ebuild:
+ die on install
18 Oct 2009; Thilo Bangert <bangert@gentoo.org>
backintime-0.9.26-r1.ebuild:
diff --git a/app-backup/backintime/backintime-0.9.26-r1.ebuild b/app-backup/backintime/backintime-0.9.26-r1.ebuild
index d1003694b763..b3fa25d58a2c 100644
--- a/app-backup/backintime/backintime-0.9.26-r1.ebuild
+++ b/app-backup/backintime/backintime-0.9.26-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-backup/backintime/backintime-0.9.26-r1.ebuild,v 1.2 2009/10/18 20:08:25 bangert Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-backup/backintime/backintime-0.9.26-r1.ebuild,v 1.3 2009/10/25 11:04:05 bangert Exp $
EAPI="2"
@@ -70,11 +70,11 @@ src_compile() {
src_install() {
cd "${S}"/common
- emake DESTDIR="${D}" install
+ emake DESTDIR="${D}" install || die
if use kde ; then
cd "${S}"/kde4
- emake DESTDIR="${D}" install
+ emake DESTDIR="${D}" install || die
#use kdesu instead of kdesudo
sed -i 's/kdesudo/kdesu/' \
"${D}"//usr/share/applications/kde4/backintime-kde4-root.desktop
@@ -82,6 +82,6 @@ src_install() {
if use gnome ; then
cd "${S}"/gnome
- emake DESTDIR="${D}" install
+ emake DESTDIR="${D}" install || die
fi
}