diff options
author | 2005-05-16 16:43:50 +0000 | |
---|---|---|
committer | 2005-05-16 16:43:50 +0000 | |
commit | 4acf5edce7924a092477916c5760c7bf42490def (patch) | |
tree | 306530e289938b30b1ca32ccc45247f901f5851a /net-nntp/ubh/ubh-2.5.ebuild | |
parent | Added cross-compile support. (diff) | |
download | historical-4acf5edce7924a092477916c5760c7bf42490def.tar.gz historical-4acf5edce7924a092477916c5760c7bf42490def.tar.bz2 historical-4acf5edce7924a092477916c5760c7bf42490def.zip |
Added error checking to src_install.
Package-Manager: portage-2.0.51.21-r1
Diffstat (limited to 'net-nntp/ubh/ubh-2.5.ebuild')
-rw-r--r-- | net-nntp/ubh/ubh-2.5.ebuild | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/net-nntp/ubh/ubh-2.5.ebuild b/net-nntp/ubh/ubh-2.5.ebuild index 17618afe4680..a63db4ceddac 100644 --- a/net-nntp/ubh/ubh-2.5.ebuild +++ b/net-nntp/ubh/ubh-2.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-nntp/ubh/ubh-2.5.ebuild,v 1.1 2005/01/17 20:24:19 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nntp/ubh/ubh-2.5.ebuild,v 1.2 2005/05/16 16:43:50 swegener Exp $ DESCRIPTION="The Usenet Binary Harvester" HOMEPAGE="http://ubh.sourceforge.net/" @@ -10,16 +10,16 @@ SLOT="0" IUSE="" KEYWORDS="~x86 ~ppc ~sparc ~amd64" DEPEND=">=dev-perl/libnet-1.0607 - >=dev-perl/News-Newsrc-1.07 - >=dev-perl/IO-stringy-1.220 - >=dev-perl/MIME-Base64-2.12 - >=dev-perl/MailTools-1.15 - >=dev-perl/MIME-tools-5.411 - >=dev-perl/string-crc32-1.2" + >=dev-perl/News-Newsrc-1.07 + >=dev-perl/IO-stringy-1.220 + >=dev-perl/MIME-Base64-2.12 + >=dev-perl/MailTools-1.15 + >=dev-perl/MIME-tools-5.411 + >=dev-perl/string-crc32-1.2" src_install() { - dobin ${S}/ubh - dohtml ${S}/doc/ubh.html + dobin ubh || die "dobin failed" + dohtml doc/ubh.html || die "dohtml failed" insinto /usr/share/${P} - doins ${S}/examples/newsrc ${S}/examples/ubhrc + doins examples/{newsrc,ubhrc} || die "doins failed" } |