You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
inherit sgml-catalog
|
|
|
|
MY_P="sdb4124"
|
|
DESCRIPTION="Docbook DTD for XML"
|
|
HOMEPAGE="http://www.oasis-open.org/docbook/"
|
|
SRC_URI="mirror://gentoo/${MY_P}.zip"
|
|
|
|
LICENSE="docbook"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=app-text/build-docbook-catalog-1.6"
|
|
DEPEND=">=app-arch/unzip-5.41"
|
|
|
|
sgml-catalog_cat_include "/etc/sgml/xml-simple-docbook-${PV}.cat" \
|
|
"/usr/share/sgml/docbook/${P#docbook-}/catalog"
|
|
|
|
S=${WORKDIR}
|
|
|
|
src_install() {
|
|
insinto /usr/share/sgml/docbook/${P#docbook-}
|
|
doins *.dtd *.mod *.css
|
|
|
|
newins "${FILESDIR}"/${P}.catalog catalog
|
|
|
|
insinto /usr/share/sgml/docbook/${P#docbook-}/ent
|
|
doins ent/*.ent
|
|
|
|
dodoc README ChangeLog LostLog COPYRIGHT
|
|
}
|
|
|
|
pkg_postinst() {
|
|
build-docbook-catalog
|
|
sgml-catalog_pkg_postinst
|
|
}
|
|
|
|
pkg_postrm() {
|
|
build-docbook-catalog
|
|
sgml-catalog_pkg_postrm
|
|
}
|