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 | |
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')
-rw-r--r-- | net-nntp/ubh/ChangeLog | 5 | ||||
-rw-r--r-- | net-nntp/ubh/Manifest | 12 | ||||
-rw-r--r-- | net-nntp/ubh/ubh-2.5.ebuild | 20 |
3 files changed, 20 insertions, 17 deletions
diff --git a/net-nntp/ubh/ChangeLog b/net-nntp/ubh/ChangeLog index 7ba9cbd37db8..b5318d177f54 100644 --- a/net-nntp/ubh/ChangeLog +++ b/net-nntp/ubh/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-nntp/ubh # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nntp/ubh/ChangeLog,v 1.2 2005/01/17 21:55:23 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nntp/ubh/ChangeLog,v 1.3 2005/05/16 16:43:50 swegener Exp $ + + 16 May 2005; Sven Wegener <swegener@gentoo.org> ubh-2.5.ebuild: + Added error checking to src_install. *ubh-2.5 (17 Jan 2005) diff --git a/net-nntp/ubh/Manifest b/net-nntp/ubh/Manifest index 3cacd372c86e..623c1b421524 100644 --- a/net-nntp/ubh/Manifest +++ b/net-nntp/ubh/Manifest @@ -1,14 +1,14 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -MD5 a07ddf4664287f22e63bcb7d790dc554 ubh-2.5.ebuild 765 -MD5 09de2d893f84047d919bc0f8e7c3a1d0 ChangeLog 686 +MD5 c433657d0092be509e1dfed59d8e4836 ubh-2.5.ebuild 799 +MD5 69f480228af17baccd6a852deac1459f ChangeLog 792 MD5 6c9b25c9beb7c85e06060bfb93f81d75 metadata.xml 289 MD5 bd527c8aa86e8984f3685bfdea693cd3 files/digest-ubh-2.5 58 -----BEGIN PGP SIGNATURE----- -Version: GnuPG v1.9.10 (GNU/Linux) +Version: GnuPG v1.4.1 (GNU/Linux) -iD8DBQFB7DRRI1lqEGTUzyQRArFbAJ9AwktiKjUn+j/AJdUEnmQh47ntgACdFYrp -Xlo2k8nnjMQTrn2PZvzUyiE= -=+g59 +iD8DBQFCiM3aI1lqEGTUzyQRAj0JAKCqrcPFohZEt1t0/F4+pLHEMzWi5wCeMcFX +DWJiMtnYinCKXd3SdGwqDHg= +=Na3b -----END PGP SIGNATURE----- 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" } |