blob: 0cafa61a081308b4ec6f08ba117efd232b9ca016 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/htmltidy/htmltidy-2.7.18-r1.ebuild,v 1.6 2004/06/24 22:40:12 agriffis Exp $
inherit eutils
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc sparc alpha"
# convert from normalized gentoo version number to htmltidy's wacky date thing
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/old/${MY_P}.tgz"
HOMEPAGE="http://tidy.sourceforge.net/"
DEPEND=""
IUSE="xml"
src_unpack() {
unpack ${MY_P}.tgz
cd ${S}
use xml && epatch ${FILESDIR}/htmltidy-dbpatch.diff
# 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() {
dodir /usr/bin
dodir /usr/share/man/man1
make \
INSTALLDIR="${D}/usr/" \
MANPAGESDIR="${D}/usr/share/man" \
install || die
}
|