Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-util/confix-wrapper
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/confix-wrapper/ChangeLog,v 1.3 2008/06/16 08:38:51 haubi Exp $
16 Jun 2008; Michael Haubenwallner
confix-wrapper-0.ebuild:
set IUSE to empty (#224359)
28 May 2008; Christian Heim
Fixing bogus herd tag in metadata.xml.
*confix-wrapper-0 (13 May 2008)
13 May 2008; Michael Haubenwallner
+confix-wrapper-0.ebuild:
initial import of dev-util/confix-wrapper (ebuild from me).
EBUILD confix-wrapper-0.ebuild 816 RMD160 acd08b441f06a473d4dfa7b7f985998b31bce18f SHA1 736d1be920a4086eb0cdfe12c8a67030104a778a SHA256 5b1bcfa47d72ec2fbe047f26259e2b2a0a7879a8cf98fce8909314f859d6813c
MISC ChangeLog 633 RMD160 40153875512ca6d2946b07c89360ff114078c7c2 SHA1 805c4e9bf5bd0bb22f5cc4cc85b1d9f849f83c93 SHA256 67b1147e7a235b1b33ecc866543013c8c36da4b39dbe765734bc9ee30b8ef1af
MISC metadata.xml 310 RMD160 8705c05dd91101641c0c967f040cf8c6de36f5e0 SHA1 255e1d97639f0f1698d667d23273797d05ac034d SHA256 05b48b7bd20b100b293a45dd84f1d9e7beeb52409327248b0d5ad242e0d9d2e5
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/confix-wrapper/confix-wrapper-0.ebuild,v 1.2 2008/06/16 08:38:51 haubi Exp $
DESCRIPTION="Wrapper to select either confix1.py or confix2.py"
HOMEPAGE="http://confix.sourceforge.net"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
src_install() {
dodir /usr/bin
cat >> "${D}"usr/bin/confix <
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"
}