summaryrefslogtreecommitdiff
path: root/dev-util/confix-wrapper/confix-wrapper-0.ebuild
diff options
context:
space:
mode:
Diffstat (limited to 'dev-util/confix-wrapper/confix-wrapper-0.ebuild')
-rw-r--r--dev-util/confix-wrapper/confix-wrapper-0.ebuild33
1 files changed, 0 insertions, 33 deletions
diff --git a/dev-util/confix-wrapper/confix-wrapper-0.ebuild b/dev-util/confix-wrapper/confix-wrapper-0.ebuild
deleted file mode 100644
index e8f8dcb4d2cb..000000000000
--- a/dev-util/confix-wrapper/confix-wrapper-0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-DESCRIPTION="Wrapper to select either confix1.py or confix2.py"
-HOMEPAGE="http://confix.sourceforge.net"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
-IUSE=""
-
-src_install() {
- dodir /usr/bin
- cat >> "${ED:-${D}}"usr/bin/confix <<EOF
-#! ${EPREFIX:-}/bin/sh
-confixpy=
-if [ -f ./Confix2.dir ]; then
- confixpy=confix2.py
-elif [ -f ./Makefile.py ]; then
- confixpy=confix1.py
-else
- confixpy=confix2.py
-fi
-case \$# in
-0) exec \${confixpy} ;;
-*) exec \${confixpy} "\$@" ;;
-esac
-EOF
- fperms a+x /usr/bin/confix || die "cannot set permissions"
- dosym confix /usr/bin/confix.py || die "cannot create 'confix' symlink"
-}