diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2012-11-18 06:56:47 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2012-11-18 06:56:47 +0000 |
commit | 2fdfdebdf10ec28b65782f506388e6656635f856 (patch) | |
tree | 7855fc6f1effc4cb0e2d916f1b609e03e1ea7cdd /net-misc/httptype | |
parent | Revision bump. Add CONFIG_PROTECT wrt bug 438790. (diff) | |
download | gentoo-2-2fdfdebdf10ec28b65782f506388e6656635f856.tar.gz gentoo-2-2fdfdebdf10ec28b65782f506388e6656635f856.tar.bz2 gentoo-2-2fdfdebdf10ec28b65782f506388e6656635f856.zip |
Add missing 'die' statements, define RDEPEND explicitly, keyword ~amd64
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-misc/httptype')
-rw-r--r-- | net-misc/httptype/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/httptype/httptype-1.3.9.ebuild | 14 |
2 files changed, 12 insertions, 9 deletions
diff --git a/net-misc/httptype/ChangeLog b/net-misc/httptype/ChangeLog index 9f76b401a104..a2da14121542 100644 --- a/net-misc/httptype/ChangeLog +++ b/net-misc/httptype/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/httptype -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/httptype/ChangeLog,v 1.5 2008/04/21 17:58:19 phreak Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/httptype/ChangeLog,v 1.6 2012/11/18 06:56:47 pinkbyte Exp $ + + 18 Nov 2012; Sergey Popov <pinkbyte@gentoo.org> httptype-1.3.9.ebuild: + Add missing 'die' statements, define RDEPEND explicitly, keyword ~amd64 21 Apr 2008; Christian Heim <phreak@gentoo.org> metadata.xml: Fix up metadata.xml. If there's no maintainer for the package, the metadata diff --git a/net-misc/httptype/httptype-1.3.9.ebuild b/net-misc/httptype/httptype-1.3.9.ebuild index 9c86839d2eb2..7b8d0cc91ffb 100644 --- a/net-misc/httptype/httptype-1.3.9.ebuild +++ b/net-misc/httptype/httptype-1.3.9.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/httptype/httptype-1.3.9.ebuild,v 1.3 2004/08/28 01:45:30 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/httptype/httptype-1.3.9.ebuild,v 1.4 2012/11/18 06:56:47 pinkbyte Exp $ DESCRIPTION="httptype is a program that returns the http host software of a website." @@ -10,10 +10,10 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-1" SLOT="0" -KEYWORDS="~x86 ~ppc ppc64" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" IUSE="" DEPEND="dev-lang/perl" -#RDEPEND="" +RDEPEND="${DEPEND}" #S=${WORKDIR}/${P} src_compile() { @@ -22,7 +22,7 @@ src_compile() { src_install() { #make PREFIX=${D}/usr install || die - dobin httptype - doman httptype.1 - dodoc Changelog Copying README + dobin httptype || die 'dobin failed' + doman httptype.1 || die 'doman failed' + dodoc Changelog Copying README || die 'dodoc failed' } |