diff options
author | 2002-07-25 09:12:12 +0000 | |
---|---|---|
committer | 2002-07-25 09:12:12 +0000 | |
commit | 358d45a92509aa1e9573bf19970d843689bbead7 (patch) | |
tree | dedf843224be2d2bd49ff7bb94913ca27ca9cc41 /app-text | |
parent | add qt-3.0.5-r1 for korean input patch testing (diff) | |
download | historical-358d45a92509aa1e9573bf19970d843689bbead7.tar.gz historical-358d45a92509aa1e9573bf19970d843689bbead7.tar.bz2 historical-358d45a92509aa1e9573bf19970d843689bbead7.zip |
updated package htmltidy to newest version
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/htmltidy/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/htmltidy/files/digest-htmltidy-2.7.18 | 1 | ||||
-rw-r--r-- | app-text/htmltidy/htmltidy-0.8.4.ebuild | 6 | ||||
-rw-r--r-- | app-text/htmltidy/htmltidy-2.7.18.ebuild | 44 |
4 files changed, 58 insertions, 2 deletions
diff --git a/app-text/htmltidy/ChangeLog b/app-text/htmltidy/ChangeLog index 7ba52150eb2f..2c5483a367e8 100644 --- a/app-text/htmltidy/ChangeLog +++ b/app-text/htmltidy/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-text/htmltidy # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-text/htmltidy/ChangeLog,v 1.1 2002/02/01 21:53:10 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/htmltidy/ChangeLog,v 1.2 2002/07/25 09:12:12 cybersystem Exp $ + +*htmltidy-2.7.18 (25 July 2002) + + 25 July 2002; Sascha Schwabbauer <cybersystem@gentoo.org> ChangeLog : + + Updated to the newest version, 2.7.18. + *htmltidy-0.8.4 (1 Feb 2002) diff --git a/app-text/htmltidy/files/digest-htmltidy-2.7.18 b/app-text/htmltidy/files/digest-htmltidy-2.7.18 new file mode 100644 index 000000000000..40d794f8de51 --- /dev/null +++ b/app-text/htmltidy/files/digest-htmltidy-2.7.18 @@ -0,0 +1 @@ +MD5 7694dcdb7d451b17477292d60186f477 tidy_src_020718.tgz 153771 diff --git a/app-text/htmltidy/htmltidy-0.8.4.ebuild b/app-text/htmltidy/htmltidy-0.8.4.ebuild index 9818fbbdfa46..0b3e3d08c258 100644 --- a/app-text/htmltidy/htmltidy-0.8.4.ebuild +++ b/app-text/htmltidy/htmltidy-0.8.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-text/htmltidy/htmltidy-0.8.4.ebuild,v 1.4 2002/07/11 06:30:18 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/htmltidy/htmltidy-0.8.4.ebuild,v 1.5 2002/07/25 09:12:12 cybersystem Exp $ # convert from normalized gentoo version number to htmltidy's wacky date thing month=(dmy jan feb mar apr may jun jul aug sep oct nov dec) @@ -9,6 +9,10 @@ vers=$(printf "%d%s%02d" ${parts[2]} ${month[${parts[1]}]} ${parts[0]}) MY_P=tidy${vers} S=${WORKDIR}/${MY_P} +SLOT="0" +KEYWORDS="x86" +LICENSE="GPL-2" + DESCRIPTION="fix mistakes and tidy up sloppy editing in HTML and XML" SRC_URI="mirror://sourceforge/tidy/${MY_P}.tgz" HOMEPAGE="http://tidy.sourceforge.net/" diff --git a/app-text/htmltidy/htmltidy-2.7.18.ebuild b/app-text/htmltidy/htmltidy-2.7.18.ebuild new file mode 100644 index 000000000000..aa843d5c9bfc --- /dev/null +++ b/app-text/htmltidy/htmltidy-2.7.18.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-text/htmltidy/htmltidy-2.7.18.ebuild,v 1.1 2002/07/25 09:12:12 cybersystem Exp $ /home/cvsroot/gentoo-x86/app-text/htmltidy/htmltidy-2.7.18.ebuild, v 1.5 2002/07/25 11:07:00 cybersystem Exp $ + +# convert from normalized gentoo version number to htmltidy's wacky date thing + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +parts=(${PV//./ }) +vers=$(printf "%02d%02d%02d" ${parts[0]} ${parts[1]} ${parts[2]}) +MY_P=tidy_src_${vers} +S=${WORKDIR}/tidy + +DESCRIPTION="fix mistakes and tidy up sloppy editing in HTML and XML" +SRC_URI="http://tidy.sourceforge.net/src/${MY_P}.tgz" +HOMEPAGE="http://tidy.sourceforge.net/" +DEPEND="" + +src_unpack() { + unpack ${A} + cd ${S} + + # skip "chown" + t=Makefile + cp $t $t.orig + sed 's:chgrp\|chown:#&:' $t.orig > $t +} + +src_compile() { + emake \ + OTHERCFLAGS="${CFLAGS}" \ + || die "emake failed" +} + +src_install () { + mkdir -p "${D}/usr/bin" + mkdir -p "${D}/usr/share/man/man1" + make \ + INSTALLDIR="${D}/usr/" \ + MANPAGESDIR="${D}/usr/share/man" \ + install || die +} |