summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Boshell <leonardop@gentoo.org>2005-06-06 01:50:15 +0000
committerLeonardo Boshell <leonardop@gentoo.org>2005-06-06 01:50:15 +0000
commitd19fdcd833e16fbbaacdd5b495c420a6fcdbec8e (patch)
tree82c98c23c39cc96293728c9078c3229a00b224f5 /app-text
parentUsed the PYTHON_DONTCOMPILE environment variable instead of addpredict to fix... (diff)
downloadgentoo-2-d19fdcd833e16fbbaacdd5b495c420a6fcdbec8e.tar.gz
gentoo-2-d19fdcd833e16fbbaacdd5b495c420a6fcdbec8e.tar.bz2
gentoo-2-d19fdcd833e16fbbaacdd5b495c420a6fcdbec8e.zip
Removing obsolete ebuild
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/sgml-common/files/digest-sgml-common-0.6.3-r31
-rw-r--r--app-text/sgml-common/files/sgml-common-0.6.1-ent-Makefile.in-gentoo.diff11
-rwxr-xr-xapp-text/sgml-common/files/sgml-common-0.6.1-install-catalog.in163
-rw-r--r--app-text/sgml-common/files/sgml-common-0.6.3-install-catalog.in163
-rw-r--r--app-text/sgml-common/sgml-common-0.6.3-r3.ebuild83
5 files changed, 0 insertions, 421 deletions
diff --git a/app-text/sgml-common/files/digest-sgml-common-0.6.3-r3 b/app-text/sgml-common/files/digest-sgml-common-0.6.3-r3
deleted file mode 100644
index 876e0934660f..000000000000
--- a/app-text/sgml-common/files/digest-sgml-common-0.6.3-r3
+++ /dev/null
@@ -1 +0,0 @@
-MD5 103c9828f24820df86e55e7862e28974 sgml-common-0.6.3.tgz 76783
diff --git a/app-text/sgml-common/files/sgml-common-0.6.1-ent-Makefile.in-gentoo.diff b/app-text/sgml-common/files/sgml-common-0.6.1-ent-Makefile.in-gentoo.diff
deleted file mode 100644
index e9dbb572a10a..000000000000
--- a/app-text/sgml-common/files/sgml-common-0.6.1-ent-Makefile.in-gentoo.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- iso-entities/Makefile.in~ Tue Jan 30 15:43:34 2001
-+++ iso-entities/Makefile.in Sun Mar 18 22:43:13 2001
-@@ -62,7 +62,7 @@
- VERSION = @VERSION@
- docdir = @docdir@
-
--isoentdir = $(prefix)/share/sgml/sgml-iso-entities-8879.1986
-+isoentdir = $(prefix)/share/sgml/sgml/ent/iso-8879.1986
- isoent_DATA = ISOamsa.ent ISOamsb.ent ISOamsc.ent ISOamsn.ent ISOamso.ent ISOamsr.ent ISObox.ent ISOcyr1.ent ISOcyr2.ent ISOdia.ent ISOgrk1.ent ISOgrk2.ent ISOgrk3.ent ISOgrk4.ent ISOlat1.ent ISOlat2.ent ISOnum.ent ISOpub.ent ISOtech.ent catalog
-
-
diff --git a/app-text/sgml-common/files/sgml-common-0.6.1-install-catalog.in b/app-text/sgml-common/files/sgml-common-0.6.1-install-catalog.in
deleted file mode 100755
index ad0d8b988db8..000000000000
--- a/app-text/sgml-common/files/sgml-common-0.6.1-install-catalog.in
+++ /dev/null
@@ -1,163 +0,0 @@
-#!/bin/sh
-# Script to install a catalog in the centralized SGML catalog
-# Send any comments to Eric Bischoff <eric@caldera.de>
-# This program is under GPL license. See LICENSE file for details.
-
-# Set help message
-SGML_HELP_MESSAGE="Usage: `basename $0` [<option>] <action>\n\
-where <option> is:\n\
-\040 -d|--delegate: \t\t\t Use DELEGATE instead of CATALOG\n\
-and where <action> is:\n\
-\040 -a|--add <centralized> <ordinary>: \t Declare ordinary catalog in the centralized catalog\n\
-\040 -r|--remove <centralized> <ordinary>:\t Remove ordinary catalog from the centralized catalog\n\
-\040 -h, --help: \t\t\t\t Print this help message and exit\n\
-\040 -v, --version: \t\t\t Print the version number and exit\n"
-
-# Set version message
-SGML_VERSION_MESSAGE="sgml-common version @VERSION@ (install-catalog version 1.0)"
-
-# Set type of pointer
-SGML_POINTER="CATALOG"
-
-# Set action to be performed
-SGML_ACTION=""
-
-# Set catalogs
-SGML_CENTRALIZED=""
-SGML_ORDINARY=""
-
-# Process options
-case $1 in
- -d|--delegate) SGML_POINTER="DELEGATE"
- shift 1
- ;;
-esac
-
-# Process actions
-case $1 in
- -a|--add) SGML_ACTION="addition"
- SGML_CENTRALIZED=$2
- SGML_ORDINARY=$3
- ;;
- -r|--remove) if [ -z "$3" -o "$3" = "--version" ]
- then
- echo "install-catalog: Old syntax; doing nothing"
- exit 0
- fi
- SGML_ACTION="removal"
- SGML_CENTRALIZED=$2
- SGML_ORDINARY=$3
- ;;
- -h|--help) echo -e $SGML_HELP_MESSAGE
- exit 0
- ;;
- -v|--version) echo -e $SGML_VERSION_MESSAGE
- exit 0
- ;;
- --install) echo "install-catalog: Old syntax; doing nothing"
- exit 0
- ;;
- *) echo -e $SGML_HELP_MESSAGE >&2
- exit 1
- ;;
-esac
-
-# Check that the super catalog can be created and changed and deleted
-if [ ! -w ${ROOT}etc/sgml ]
-then
- echo "`basename $0`: unable to write in ${ROOT}etc/sgml." >&2
- exit 2
-fi
-case $SGML_ACTION in
- addition)
- if [ -e ${ROOT}etc/sgml/catalog -a ! -w ${ROOT}etc/sgml/catalog ]
- then
- echo "`basename $0`: can not modify \"${ROOT}etc/sgml/catalog\"." >&2
- exit 2
- fi
- ;;
- removal)
- if [ ! -w ${ROOT}etc/sgml/catalog ]
- then
- echo "`basename $0`: can not modify \"${ROOT}etc/sgml/catalog\"." >&2
- exit 2
- fi
- ;;
-esac
-
-# Check that the centralized catalog can be created, changed and deleted
-if [ -z "$SGML_CENTRALIZED" ]
-then
- echo -e $SGML_HELP_MESSAGE >&2
- exit 1
-fi
-case $SGML_ACTION in
- addition)
- if [ -e $SGML_CENTRALIZED -a ! -w $SGML_CENTRALIZED ]
- then
- echo "`basename $0`: can not modify \"$SGML_CENTRALIZED\"." >&2
- exit 2
- fi
- ;;
- removal)
- if [ ! -w $SGML_CENTRALIZED ]
- then
- echo "`basename $0`: can not modify \"$SGML_CENTRALIZED\"." >&2
- exit 2
- fi
- ;;
-esac
-
-# Check that we have at least one ordinary package to process
-if [ -z "$SGML_ORDINARY" ]
-then
- echo -e $SGML_HELP_MESSAGE >&2
- exit 1
-fi
-case $SGML_ACTION in
- addition)
- if [ ! -s $SGML_ORDINARY ]
- then
- echo "`basename $0`: \"$SGML_ORDINARY\" does not exist or is empty." >&2
- exit 2
- fi
- ;;
-esac
-
-# Installation or removal of pointers
-case $SGML_ACTION in
- addition)
- echo "`basename $0`: addition of $SGML_ORDINARY in $SGML_CENTRALIZED"
- if grep -q $SGML_ORDINARY $SGML_CENTRALIZED 2>/dev/null
- then
- echo "Warning: $SGML_ORDINARY is already installed in the centralized catalog $SGML_CENTRALIZED" >&2
- else
- echo "$SGML_POINTER $SGML_ORDINARY" >> $SGML_CENTRALIZED
- fi
- grep -q $SGML_CENTRALIZED ${ROOT}etc/sgml/catalog 2>/dev/null
- if [ $? -ne 0 ]
- then
- echo "`basename $0`: addition of $SGML_CENTRALIZED in ${ROOT}etc/sgml/catalog"
- echo "$SGML_POINTER $SGML_CENTRALIZED" >> ${ROOT}etc/sgml/catalog
- fi
- ;;
- removal)
- echo "`basename $0`: removal of $SGML_ORDINARY from $SGML_CENTRALIZED"
- if grep -q $SGML_ORDINARY $SGML_CENTRALIZED 2>/dev/null
- then
- sed -e "\:$SGML_POINTER $SGML_ORDINARY:d" < $SGML_CENTRALIZED > ${SGML_CENTRALIZED}.new
- mv ${SGML_CENTRALIZED}.new $SGML_CENTRALIZED
- else
- echo "Warning: $SGML_ORDINARY was not found in the centralized catalog $SGML_CENTRALIZED" >&2
- fi
- if [ ! -s $SGML_CENTRALIZED ]
- then
- rm $SGML_CENTRALIZED
- echo "`basename $0`: removal of $SGML_CENTRALIZED from ${ROOT}etc/sgml/catalog"
- sed -e "\:$SGML_POINTER $SGML_CENTRALIZED:d" < ${ROOT}etc/sgml/catalog > ${ROOT}etc/sgml/catalog.new
- mv ${ROOT}etc/sgml/catalog.new ${ROOT}etc/sgml/catalog
- fi
- ;;
-esac
-
-exit 0
diff --git a/app-text/sgml-common/files/sgml-common-0.6.3-install-catalog.in b/app-text/sgml-common/files/sgml-common-0.6.3-install-catalog.in
deleted file mode 100644
index ad0d8b988db8..000000000000
--- a/app-text/sgml-common/files/sgml-common-0.6.3-install-catalog.in
+++ /dev/null
@@ -1,163 +0,0 @@
-#!/bin/sh
-# Script to install a catalog in the centralized SGML catalog
-# Send any comments to Eric Bischoff <eric@caldera.de>
-# This program is under GPL license. See LICENSE file for details.
-
-# Set help message
-SGML_HELP_MESSAGE="Usage: `basename $0` [<option>] <action>\n\
-where <option> is:\n\
-\040 -d|--delegate: \t\t\t Use DELEGATE instead of CATALOG\n\
-and where <action> is:\n\
-\040 -a|--add <centralized> <ordinary>: \t Declare ordinary catalog in the centralized catalog\n\
-\040 -r|--remove <centralized> <ordinary>:\t Remove ordinary catalog from the centralized catalog\n\
-\040 -h, --help: \t\t\t\t Print this help message and exit\n\
-\040 -v, --version: \t\t\t Print the version number and exit\n"
-
-# Set version message
-SGML_VERSION_MESSAGE="sgml-common version @VERSION@ (install-catalog version 1.0)"
-
-# Set type of pointer
-SGML_POINTER="CATALOG"
-
-# Set action to be performed
-SGML_ACTION=""
-
-# Set catalogs
-SGML_CENTRALIZED=""
-SGML_ORDINARY=""
-
-# Process options
-case $1 in
- -d|--delegate) SGML_POINTER="DELEGATE"
- shift 1
- ;;
-esac
-
-# Process actions
-case $1 in
- -a|--add) SGML_ACTION="addition"
- SGML_CENTRALIZED=$2
- SGML_ORDINARY=$3
- ;;
- -r|--remove) if [ -z "$3" -o "$3" = "--version" ]
- then
- echo "install-catalog: Old syntax; doing nothing"
- exit 0
- fi
- SGML_ACTION="removal"
- SGML_CENTRALIZED=$2
- SGML_ORDINARY=$3
- ;;
- -h|--help) echo -e $SGML_HELP_MESSAGE
- exit 0
- ;;
- -v|--version) echo -e $SGML_VERSION_MESSAGE
- exit 0
- ;;
- --install) echo "install-catalog: Old syntax; doing nothing"
- exit 0
- ;;
- *) echo -e $SGML_HELP_MESSAGE >&2
- exit 1
- ;;
-esac
-
-# Check that the super catalog can be created and changed and deleted
-if [ ! -w ${ROOT}etc/sgml ]
-then
- echo "`basename $0`: unable to write in ${ROOT}etc/sgml." >&2
- exit 2
-fi
-case $SGML_ACTION in
- addition)
- if [ -e ${ROOT}etc/sgml/catalog -a ! -w ${ROOT}etc/sgml/catalog ]
- then
- echo "`basename $0`: can not modify \"${ROOT}etc/sgml/catalog\"." >&2
- exit 2
- fi
- ;;
- removal)
- if [ ! -w ${ROOT}etc/sgml/catalog ]
- then
- echo "`basename $0`: can not modify \"${ROOT}etc/sgml/catalog\"." >&2
- exit 2
- fi
- ;;
-esac
-
-# Check that the centralized catalog can be created, changed and deleted
-if [ -z "$SGML_CENTRALIZED" ]
-then
- echo -e $SGML_HELP_MESSAGE >&2
- exit 1
-fi
-case $SGML_ACTION in
- addition)
- if [ -e $SGML_CENTRALIZED -a ! -w $SGML_CENTRALIZED ]
- then
- echo "`basename $0`: can not modify \"$SGML_CENTRALIZED\"." >&2
- exit 2
- fi
- ;;
- removal)
- if [ ! -w $SGML_CENTRALIZED ]
- then
- echo "`basename $0`: can not modify \"$SGML_CENTRALIZED\"." >&2
- exit 2
- fi
- ;;
-esac
-
-# Check that we have at least one ordinary package to process
-if [ -z "$SGML_ORDINARY" ]
-then
- echo -e $SGML_HELP_MESSAGE >&2
- exit 1
-fi
-case $SGML_ACTION in
- addition)
- if [ ! -s $SGML_ORDINARY ]
- then
- echo "`basename $0`: \"$SGML_ORDINARY\" does not exist or is empty." >&2
- exit 2
- fi
- ;;
-esac
-
-# Installation or removal of pointers
-case $SGML_ACTION in
- addition)
- echo "`basename $0`: addition of $SGML_ORDINARY in $SGML_CENTRALIZED"
- if grep -q $SGML_ORDINARY $SGML_CENTRALIZED 2>/dev/null
- then
- echo "Warning: $SGML_ORDINARY is already installed in the centralized catalog $SGML_CENTRALIZED" >&2
- else
- echo "$SGML_POINTER $SGML_ORDINARY" >> $SGML_CENTRALIZED
- fi
- grep -q $SGML_CENTRALIZED ${ROOT}etc/sgml/catalog 2>/dev/null
- if [ $? -ne 0 ]
- then
- echo "`basename $0`: addition of $SGML_CENTRALIZED in ${ROOT}etc/sgml/catalog"
- echo "$SGML_POINTER $SGML_CENTRALIZED" >> ${ROOT}etc/sgml/catalog
- fi
- ;;
- removal)
- echo "`basename $0`: removal of $SGML_ORDINARY from $SGML_CENTRALIZED"
- if grep -q $SGML_ORDINARY $SGML_CENTRALIZED 2>/dev/null
- then
- sed -e "\:$SGML_POINTER $SGML_ORDINARY:d" < $SGML_CENTRALIZED > ${SGML_CENTRALIZED}.new
- mv ${SGML_CENTRALIZED}.new $SGML_CENTRALIZED
- else
- echo "Warning: $SGML_ORDINARY was not found in the centralized catalog $SGML_CENTRALIZED" >&2
- fi
- if [ ! -s $SGML_CENTRALIZED ]
- then
- rm $SGML_CENTRALIZED
- echo "`basename $0`: removal of $SGML_CENTRALIZED from ${ROOT}etc/sgml/catalog"
- sed -e "\:$SGML_POINTER $SGML_CENTRALIZED:d" < ${ROOT}etc/sgml/catalog > ${ROOT}etc/sgml/catalog.new
- mv ${ROOT}etc/sgml/catalog.new ${ROOT}etc/sgml/catalog
- fi
- ;;
-esac
-
-exit 0
diff --git a/app-text/sgml-common/sgml-common-0.6.3-r3.ebuild b/app-text/sgml-common/sgml-common-0.6.3-r3.ebuild
deleted file mode 100644
index 37506fbb431f..000000000000
--- a/app-text/sgml-common/sgml-common-0.6.3-r3.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/sgml-common/sgml-common-0.6.3-r3.ebuild,v 1.12 2005/01/01 16:35:34 eradicator Exp $
-
-DESCRIPTION="Base ISO character entities and utilities for SGML"
-SRC_URI="mirror://kde/devel/docbook/SOURCES/${P}.tgz"
-HOMEPAGE="http://www.iso.ch/cate/3524030.html"
-LICENSE="GPL-2"
-
-SLOT="0"
-IUSE=""
-KEYWORDS="x86 ppc sparc alpha hppa amd64"
-
-DEPEND=">=sys-devel/automake-1.6"
-RDEPEND=""
-
-src_unpack() {
-
- unpack ${A}
- # We use a hacked version of install-catalog that supports the ROOT variable
- cp ${FILESDIR}/${P}-install-catalog.in ${S}/bin
-}
-
-src_compile() {
- ./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --mandir=/usr/share/man || die
-
- emake || die
-}
-
-src_install () {
- make \
- prefix=${D}/usr \
- sysconfdir=${D}/etc \
- mandir=${D}/usr/share/man \
- docdir=${D}/usr/share/doc \
- install || die
-
-}
-
-pkg_postinst() {
- if [ -x "/usr/bin/install-catalog" ] && [ "$ROOT" = "/" ]
- then
- einfo "Installing Catalogs..."
- install-catalog --add \
- /etc/sgml/sgml-ent.cat \
- /usr/share/sgml/sgml-iso-entities-8879.1986/catalog
-
- install-catalog --add \
- /etc/sgml/sgml-docbook.cat \
- /etc/sgml/sgml-ent.cat
- else
- ewarn "install-catalog not found! Something went wrong!"
- die
- fi
-}
-
-pkg_prerm() {
- cp /usr/bin/install-catalog ${T}
-}
-
-pkg_postrm() {
- if [ ! -x "/usr/bin/install-catalog" ] && [ "$ROOT" = "/" ]
- then
- einfo "Removing Catalogs..."
- if [ -e /etc/sgml/sgml-ent.cat ]
- then
- ${T}/install-catalog --remove \
- /etc/sgml/sgml-ent.cat \
- /usr/share/sgml/sgml-iso-entities-8879.1986/catalog
- fi
-
- if [ -e /etc/sgml/sgml-docbook.cat ]
- then
- ${T}/install-catalog --remove \
- /etc/sgml/sgml-docbook.cat \
- /etc/sgml/sgml-ent.cat
- fi
- fi
-}
-