summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Tilley <lv@gentoo.org>2004-08-30 15:01:28 +0000
committerTravis Tilley <lv@gentoo.org>2004-08-30 15:01:28 +0000
commit80aa1e09a9d09dba9895ccc1a53c99b2b32e3865 (patch)
tree546741a294faf29260e845a62a4c6632952a9081 /app-emulation
parentUpdated the ebuild to display info about 'make prepare', not try to execute i... (diff)
downloadgentoo-2-80aa1e09a9d09dba9895ccc1a53c99b2b32e3865.tar.gz
gentoo-2-80aa1e09a9d09dba9895ccc1a53c99b2b32e3865.tar.bz2
gentoo-2-80aa1e09a9d09dba9895ccc1a53c99b2b32e3865.zip
remove postinst
Diffstat (limited to 'app-emulation')
-rw-r--r--app-emulation/emul-linux-x86-glibc/emul-linux-x86-glibc-1.1.ebuild15
1 files changed, 1 insertions, 14 deletions
diff --git a/app-emulation/emul-linux-x86-glibc/emul-linux-x86-glibc-1.1.ebuild b/app-emulation/emul-linux-x86-glibc/emul-linux-x86-glibc-1.1.ebuild
index f5e37affd56f..aae37dbc6a32 100644
--- a/app-emulation/emul-linux-x86-glibc/emul-linux-x86-glibc-1.1.ebuild
+++ b/app-emulation/emul-linux-x86-glibc/emul-linux-x86-glibc-1.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-glibc/emul-linux-x86-glibc-1.1.ebuild,v 1.4 2004/08/29 03:45:50 lv Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-glibc/emul-linux-x86-glibc-1.1.ebuild,v 1.5 2004/08/30 15:01:28 lv Exp $
DESCRIPTION="GNU C Library for emulation of 32bit x86 on amd64"
HOMEPAGE="http://www.gentoo.org/"
@@ -46,16 +46,3 @@ run_verbose() {
$@ || die "unable to $@"
}
-pkg_postinst() {
- # for some reason we have users with lib32 as a directory and not a symlink.
- # my guess is a broken version of opengl-update somewhere... but since
- # having lib32 as a directory is definately broken, lets fix that here.
- if [ -d /usr/lib32 ] ; then
- ewarn "/usr/lib32 is a directory and not a symlink... fixing"
- run_verbose mv /usr/lib32 /usr/lib32-bork-bork-bork
- run_verbose ln -sf /emul/linux/x86/usr/lib /usr/lib32
- run_verbose mv -v /usr/lib32-bork-bork-bork/* /usr/lib32/
- run_verbose rm -rf /usr/lib32-bork-bork-bork
- einfo "fixed!"
- fi
-}