diff options
author | Michael Cummings <mcummings@gentoo.org> | 2007-01-14 00:24:33 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2007-01-14 00:24:33 +0000 |
commit | c7a124b1b042bdc37a89f8aabfad500bd622eb8c (patch) | |
tree | 0b091cae04b20ebdf2a342896180aab0e711a100 /dev-perl/HTML-Parser/HTML-Parser-3.56.ebuild | |
parent | Version bump (diff) | |
download | gentoo-2-c7a124b1b042bdc37a89f8aabfad500bd622eb8c.tar.gz gentoo-2-c7a124b1b042bdc37a89f8aabfad500bd622eb8c.tar.bz2 gentoo-2-c7a124b1b042bdc37a89f8aabfad500bd622eb8c.zip |
Version bump
(Portage version: 2.1.2_rc4-r8)
Diffstat (limited to 'dev-perl/HTML-Parser/HTML-Parser-3.56.ebuild')
-rw-r--r-- | dev-perl/HTML-Parser/HTML-Parser-3.56.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/dev-perl/HTML-Parser/HTML-Parser-3.56.ebuild b/dev-perl/HTML-Parser/HTML-Parser-3.56.ebuild new file mode 100644 index 000000000000..81cbebb9cfc1 --- /dev/null +++ b/dev-perl/HTML-Parser/HTML-Parser-3.56.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-perl/HTML-Parser/HTML-Parser-3.56.ebuild,v 1.1 2007/01/14 00:24:33 mcummings Exp $ + +inherit perl-module + +DESCRIPTION="Parse <HEAD> section of HTML documents" +HOMEPAGE="http://search.cpan.org/~gaas/${P}/" +SRC_URI="mirror://cpan/authors/id/G/GA/GAAS/${P}.tar.gz" + +LICENSE="Artistic" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="unicode" + +DEPEND=">=dev-perl/HTML-Tagset-3.03 + dev-lang/perl" + +mydoc="ANNOUNCEMENT TODO" + +src_compile() { + use unicode && answer='y' || answer='n' + if [ "${MMSIXELEVEN}" ]; then + echo "${answer}" | perl Makefile.PL ${myconf} \ + PREFIX=/usr INSTALLDIRS=vendor DESTDIR=${D} + else + echo "${answer}" | perl Makefile.PL ${myconf} \ + PREFIX=${D}/usr INSTALLDIRS=vendor + fi + perl-module_src_test +} |