diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2018-01-03 02:06:49 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2018-01-03 02:06:49 +0300 |
commit | 056bd29b9ccfb8a7cccd4095856deb633ac31884 (patch) | |
tree | 58cee3a578bb0737c0557a1fdb755d54f2239841 /app-text/sgml-common | |
parent | app-text/sgml-common: merge stable keywords (diff) | |
download | gentoo-056bd29b9ccfb8a7cccd4095856deb633ac31884.tar.gz gentoo-056bd29b9ccfb8a7cccd4095856deb633ac31884.tar.bz2 gentoo-056bd29b9ccfb8a7cccd4095856deb633ac31884.zip |
app-text/sgml-common: drop old EAPI=3 revision
Package-Manager: Portage-2.3.13, Repoman-2.3.3
Diffstat (limited to 'app-text/sgml-common')
-rw-r--r-- | app-text/sgml-common/sgml-common-0.6.3-r5.ebuild | 84 |
1 files changed, 0 insertions, 84 deletions
diff --git a/app-text/sgml-common/sgml-common-0.6.3-r5.ebuild b/app-text/sgml-common/sgml-common-0.6.3-r5.ebuild deleted file mode 100644 index adb5d0c161d5..000000000000 --- a/app-text/sgml-common/sgml-common-0.6.3-r5.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="3" - -inherit eutils prefix - -DESCRIPTION="Base ISO character entities and utilities for SGML" -HOMEPAGE="http://www.iso.ch/cate/3524030.html" -#SRC_URI="mirror://kde/devel/docbook/SOURCES/${P}.tgz" -SRC_URI="https://dev.gentoo.org/~floppym/dist/${PN}/${P}-gentoo.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -DEPEND="" -RDEPEND="" - -src_prepare() { - # We use a hacked version of install-catalog that supports the ROOT - # variable, puts quotes around the CATALOG files, and can be prefixed. - cp "${FILESDIR}/${P}-install-catalog.in" "${S}/bin/install-catalog.in" - - epatch "${FILESDIR}"/${P}-prefix.patch - eprefixify bin/install-catalog.in bin/sgmlwhich config/sgml.conf -} - -src_configure() { - econf --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" -} - -pkg_postinst() { - local installer="${EROOT}usr/bin/install-catalog" - if [[ ! -x ${installer} ]]; then - eerror "install-catalog not found! Something went wrong!" - die "install-catalog not found! Something went wrong!" - fi - - einfo "Installing Catalogs..." - "$installer" --add \ - "${EPREFIX}"/etc/sgml/sgml-ent.cat \ - "${EPREFIX}"/usr/share/sgml/sgml-iso-entities-8879.1986/catalog - "$installer" --add \ - "${EPREFIX}"/etc/sgml/sgml-docbook.cat \ - "${EPREFIX}"/etc/sgml/sgml-ent.cat - - local file - for file in `find "${EROOT}etc/sgml/" -name "*.cat"` "${EROOT}etc/sgml/catalog" - do - einfo "Fixing ${file}" - awk '/"$/ { print $1 " " $2 } - ! /"$/ { print $1 " \"" $2 "\"" }' ${file} > ${file}.new - mv ${file}.new ${file} - done -} - -pkg_prerm() { - cp "${EROOT}usr/bin/install-catalog" "${T}" -} - -pkg_postrm() { - if [ ! -x "${T}/install-catalog" ]; then - return - fi - - einfo "Removing Catalogs..." - if [ -e "${EROOT}etc/sgml/sgml-ent.cat" ]; then - "${T}"/install-catalog --remove \ - "${EPREFIX}"/etc/sgml/sgml-ent.cat \ - "${EPREFIX}"/usr/share/sgml/sgml-iso-entities-8879.1986/catalog - fi - - if [ -e "${EROOT}etc/sgml/sgml-docbook.cat" ]; then - "${T}"/install-catalog --remove \ - "${EPREFIX}"/etc/sgml/sgml-docbook.cat \ - "${EPREFIX}"/etc/sgml/sgml-ent.cat - fi -} |