diff options
author | Matthew Turk <satai@gentoo.org> | 2002-12-31 04:36:56 +0000 |
---|---|---|
committer | Matthew Turk <satai@gentoo.org> | 2002-12-31 04:36:56 +0000 |
commit | 7990b28cad9969f099585d10517762f84aca16b1 (patch) | |
tree | b998eb4a90edb6ff330ed17d890a8b9df865ece4 /app-text/html401 | |
parent | New SGML catalog eclass, hopefully will fix things. (diff) | |
download | historical-7990b28cad9969f099585d10517762f84aca16b1.tar.gz historical-7990b28cad9969f099585d10517762f84aca16b1.tar.bz2 historical-7990b28cad9969f099585d10517762f84aca16b1.zip |
Oy. Tons of changes... Fixed all of these ebuilds to inherit from
sgml-catalog.eclass, and then set them all up to have proper dependencies on
the newest items, as well as use the new, more robust installation and removal
system. This will probably have some growing pains over the next few days, but
the long range will be worth it. All problem hints will be found at
http://www.gentoo.org/~satai/
Diffstat (limited to 'app-text/html401')
-rw-r--r-- | app-text/html401/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/html401/files/digest-html401-19991224-r1 | 1 | ||||
-rw-r--r-- | app-text/html401/html401-19991224-r1.ebuild | 24 |
3 files changed, 32 insertions, 1 deletions
diff --git a/app-text/html401/ChangeLog b/app-text/html401/ChangeLog index 5ad96b67c3c5..bf5709e70ad3 100644 --- a/app-text/html401/ChangeLog +++ b/app-text/html401/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-text/html401 # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/html401/ChangeLog,v 1.1 2002/12/24 04:16:54 satai Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/html401/ChangeLog,v 1.2 2002/12/31 04:36:56 satai Exp $ + +*html401-19991224-r1 (30 Dec 2002) + + 30 Dec 2002; Matthew Turk <satai@gentoo.org> : + changed to inherit sgml-catalog and better deal with catalogs. + *html401-19991224 (25 Nov 2002) diff --git a/app-text/html401/files/digest-html401-19991224-r1 b/app-text/html401/files/digest-html401-19991224-r1 new file mode 100644 index 000000000000..c047d8034b7b --- /dev/null +++ b/app-text/html401/files/digest-html401-19991224-r1 @@ -0,0 +1 @@ +MD5 1ed76627ba80816079649f67023ec7ab html40.tgz 369830 diff --git a/app-text/html401/html401-19991224-r1.ebuild b/app-text/html401/html401-19991224-r1.ebuild new file mode 100644 index 000000000000..0710d5959c89 --- /dev/null +++ b/app-text/html401/html401-19991224-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/html401/html401-19991224-r1.ebuild,v 1.1 2002/12/31 04:36:56 satai Exp $ + +inherit sgml-catalog + +DESCRIPTION="DTDs for the HyperText Markup Language 4.01" +HOMEPAGE="http://www.w3.org/TR/${PN}/" +SRC_URI="${HOMEPAGE}html40.tgz" +S=${WORKDIR} +LICENSE="W3C" +SLOT="0" +KEYWORDS="~x86" +DEPEND="app-text/sgml-common" + +src_install() { + insinto /usr/share/sgml/${PN} + doins HTML4.cat HTML4.decl *.dtd *.ent + insinto /etc/sgml + dohtml *.html */* +} + +sgml-catalog_cat_include "/etc/sgml/${PN}.cat" \ + "/usr/share/sgml/${PN}/HTML4.cat" |