diff options
author | Michael Cummings <mcummings@gentoo.org> | 2006-05-01 15:52:23 +0000 |
---|---|---|
committer | Michael Cummings <mcummings@gentoo.org> | 2006-05-01 15:52:23 +0000 |
commit | 440b488e5917a58da74f1695a8678d5c650c2076 (patch) | |
tree | 752b773355f5657e3283a940bb6ab84b5f4bfe94 /dev-perl/HTML-Parser/HTML-Parser-3.54.ebuild | |
parent | Version bump to 1.2.1 and closing bug #131604. (diff) | |
download | gentoo-2-440b488e5917a58da74f1695a8678d5c650c2076.tar.gz gentoo-2-440b488e5917a58da74f1695a8678d5c650c2076.tar.bz2 gentoo-2-440b488e5917a58da74f1695a8678d5c650c2076.zip |
Version bump
(Portage version: 2.1_pre9-r5)
Diffstat (limited to 'dev-perl/HTML-Parser/HTML-Parser-3.54.ebuild')
-rw-r--r-- | dev-perl/HTML-Parser/HTML-Parser-3.54.ebuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-perl/HTML-Parser/HTML-Parser-3.54.ebuild b/dev-perl/HTML-Parser/HTML-Parser-3.54.ebuild new file mode 100644 index 000000000000..e61c81b8f1b2 --- /dev/null +++ b/dev-perl/HTML-Parser/HTML-Parser-3.54.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2006 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.54.ebuild,v 1.1 2006/05/01 15:52:22 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 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="unicode" + +DEPEND=">=dev-perl/HTML-Tagset-3.03" + +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 +} |