diff options
author | Alin Năstac <mrness@gentoo.org> | 2006-03-06 19:18:38 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2006-03-06 19:18:38 +0000 |
commit | 6d35c45a39ab22485bfe7d8c9bc89af3d5d7ba9a (patch) | |
tree | cd78384c67fc426df913b578dcd4a2736a4e632b /net-proxy | |
parent | Fix multilib and add ~amd64 keyword this closes bug #124370. (diff) | |
download | gentoo-2-6d35c45a39ab22485bfe7d8c9bc89af3d5d7ba9a.tar.gz gentoo-2-6d35c45a39ab22485bfe7d8c9bc89af3d5d7ba9a.tar.bz2 gentoo-2-6d35c45a39ab22485bfe7d8c9bc89af3d5d7ba9a.zip |
Replace xml2 USE flag with xml; quote strings containing env vars; replace useq with use
(Portage version: 2.0.54)
Diffstat (limited to 'net-proxy')
-rw-r--r-- | net-proxy/httpush/ChangeLog | 5 | ||||
-rw-r--r-- | net-proxy/httpush/Manifest | 12 | ||||
-rw-r--r-- | net-proxy/httpush/httpush-0.9_beta11.ebuild | 12 |
3 files changed, 11 insertions, 18 deletions
diff --git a/net-proxy/httpush/ChangeLog b/net-proxy/httpush/ChangeLog index e4cfa5ad4b02..f40f407d14fa 100644 --- a/net-proxy/httpush/ChangeLog +++ b/net-proxy/httpush/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-proxy/httpush # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/httpush/ChangeLog,v 1.4 2006/02/13 15:02:40 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/httpush/ChangeLog,v 1.5 2006/03/06 19:18:38 mrness Exp $ + + 06 Mar 2006; Alin Nastac <mrness@gentoo.org> httpush-0.9_beta11.ebuild: + Replace xml2 USE flag with xml. 13 Feb 2006; Michael Cummings <mcummings@gentoo.org> httpush-0.9_beta11.ebuild: diff --git a/net-proxy/httpush/Manifest b/net-proxy/httpush/Manifest index 6c6673775c1f..815d13b2f94f 100644 --- a/net-proxy/httpush/Manifest +++ b/net-proxy/httpush/Manifest @@ -1,14 +1,4 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 f2a8fa6065f26d78b2dc68652a816373 ChangeLog 723 MD5 c9beb4a47643787632f3a8010dba451f files/digest-httpush-0.9_beta11 65 -MD5 cfa3c24ec847923128dca5254b3eec89 httpush-0.9_beta11.ebuild 1414 +MD5 509006e00684e0866fc56a6f5a9ad526 httpush-0.9_beta11.ebuild 1411 MD5 4465953c86462494dd13e67580e4fd8b metadata.xml 415 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFD8J+GtG5z4I8BtQoRAr49AJ0U3EUczkHFfx1/AhupFh3sIkJw4wCfffmO -ZvSJG5EIoaNSye5qsrqLrqU= -=ArGC ------END PGP SIGNATURE----- diff --git a/net-proxy/httpush/httpush-0.9_beta11.ebuild b/net-proxy/httpush/httpush-0.9_beta11.ebuild index 993c5be251d1..f0dc8b5920ae 100644 --- a/net-proxy/httpush/httpush-0.9_beta11.ebuild +++ b/net-proxy/httpush/httpush-0.9_beta11.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/httpush/httpush-0.9_beta11.ebuild,v 1.3 2006/02/13 15:02:40 mcummings Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/httpush/httpush-0.9_beta11.ebuild,v 1.4 2006/03/06 19:18:38 mrness Exp $ inherit eutils @@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~x86" -IUSE="xml2" +IUSE="xml" RDEPEND="dev-perl/URI virtual/perl-MIME-Base64 @@ -21,15 +21,15 @@ RDEPEND="dev-perl/URI dev-perl/Net-SSLeay dev-perl/Crypt-SSLeay dev-perl/HTML-Parser - xml2? ( dev-perl/XML-Twig )" + xml? ( dev-perl/XML-Twig )" S="${WORKDIR}/${MY_P}" pkg_setup() { - if ! useq xml2 ; then + if ! use xml ; then echo einfo "If you'd like to use httpush's learning mode, please CTRL-C now" - einfo "and enable the xml2 USE flag." + einfo "and enable the xml USE flag." epause 3 echo fi @@ -37,7 +37,7 @@ pkg_setup() { src_unpack() { unpack ${A} - cd ${S} + cd "${S}" sed -i 's:^\(require httpush;\)$:push @INC, "/usr/lib/httpush";\n\1:' \ httpush.pl || die "sed INC failed" sed -i 's:^\(.*DATADIR="\)data\(.*\)$:\1/var/lib/httpush\2:' *.pl \ |