summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Ruppert <idl0r@gentoo.org>2009-04-22 14:56:00 +0000
committerChristian Ruppert <idl0r@gentoo.org>2009-04-22 14:56:00 +0000
commit43e9eca2f5ce31fe42bf705df2975be66cea92e1 (patch)
tree1d82209fd8b9c05435bd12f660eef49148847eb7 /net-misc/ypd/ypd-9999.ebuild
parentmedia-sound/mtag: Removed unused eutils inherit, added cmake-utils. Added mis... (diff)
downloadsunrise-43e9eca2f5ce31fe42bf705df2975be66cea92e1.tar.gz
sunrise-43e9eca2f5ce31fe42bf705df2975be66cea92e1.tar.bz2
sunrise-43e9eca2f5ce31fe42bf705df2975be66cea92e1.zip
net-misc/ypd: Added missing die statements, removed useless dodir.
svn path=/sunrise/; revision=8385
Diffstat (limited to 'net-misc/ypd/ypd-9999.ebuild')
-rw-r--r--net-misc/ypd/ypd-9999.ebuild11
1 files changed, 5 insertions, 6 deletions
diff --git a/net-misc/ypd/ypd-9999.ebuild b/net-misc/ypd/ypd-9999.ebuild
index 941a156fb..4ba219e9c 100644
--- a/net-misc/ypd/ypd-9999.ebuild
+++ b/net-misc/ypd/ypd-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
@@ -18,9 +18,8 @@ DEPEND=""
RDEPEND=""
src_install() {
- dobin src/ypd
- dodir /etc/init.d/
- newinitd "${FILESDIR}/ypd.rc" ypd
- newconfd "${FILESDIR}/ypd.conf" ypd
- dodoc README ChangeLog AUTHORS
+ dobin src/ypd || die "dobin failed"
+ newinitd "${FILESDIR}/ypd.rc" ypd || die "newinitd failed"
+ newconfd "${FILESDIR}/ypd.conf" ypd || die "newconfd failed"
+ dodoc README ChangeLog AUTHORS || die "dodoc failed"
}