summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2009-07-06 19:01:39 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2009-07-06 19:01:39 +0000
commit00c374c323f46e5c3eb08e93eef55ffe336e106e (patch)
treeaa05840ef7622760bd6ab1d1c513dc1f327d78e5 /sys-apps
parentTake mysql.eclass into the realm of EAPI2. (diff)
downloadgentoo-2-00c374c323f46e5c3eb08e93eef55ffe336e106e.tar.gz
gentoo-2-00c374c323f46e5c3eb08e93eef55ffe336e106e.tar.bz2
gentoo-2-00c374c323f46e5c3eb08e93eef55ffe336e106e.zip
Die on failed install.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/hdump/ChangeLog7
-rw-r--r--sys-apps/hdump/hdump-1.12.ebuild8
2 files changed, 9 insertions, 6 deletions
diff --git a/sys-apps/hdump/ChangeLog b/sys-apps/hdump/ChangeLog
index 55863ce9e434..a290fed91353 100644
--- a/sys-apps/hdump/ChangeLog
+++ b/sys-apps/hdump/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/hdump
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hdump/ChangeLog,v 1.4 2007/07/16 14:51:27 armin76 Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hdump/ChangeLog,v 1.5 2009/07/06 19:01:39 flameeyes Exp $
+
+ 06 Jul 2009; Diego E. Pettenò <flameeyes@gentoo.org> hdump-1.12.ebuild:
+ Die on failed install.
16 Jul 2007; Raúl Porcel <armin76@gentoo.org> hdump-1.12.ebuild:
Fix HOMEPAGE, thanks to Erik Musick <lnxg33k at gmail dot com>, bug 185454
diff --git a/sys-apps/hdump/hdump-1.12.ebuild b/sys-apps/hdump/hdump-1.12.ebuild
index 2af2416368d9..3fa48aacf299 100644
--- a/sys-apps/hdump/hdump-1.12.ebuild
+++ b/sys-apps/hdump/hdump-1.12.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/hdump/hdump-1.12.ebuild,v 1.2 2007/07/16 14:51:27 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/hdump/hdump-1.12.ebuild,v 1.3 2009/07/06 19:01:39 flameeyes Exp $
inherit eutils
@@ -19,6 +19,6 @@ src_compile() {
src_install() {
OBJ=${PN}/OBJ/`ls ${PN}/OBJ`
- dobin ${OBJ}/${PN}
- doman ${PN}/${PN}.1
+ dobin ${OBJ}/${PN} || die
+ doman ${PN}/${PN}.1 || die
}