diff options
author | Simon Stelling <blubb@gentoo.org> | 2006-08-25 15:44:51 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2006-08-25 15:44:51 +0000 |
commit | b5cbe4eea44b0d5bafe280fc212f1791a2cef5d8 (patch) | |
tree | ac903be449afc1de4603f835a5a7e5622d0d8bb6 /app-emulation/emul-linux-x86-xlibs/emul-linux-x86-xlibs-2.2.2-r1.ebuild | |
parent | remove vulnerable versions (diff) | |
download | gentoo-2-b5cbe4eea44b0d5bafe280fc212f1791a2cef5d8.tar.gz gentoo-2-b5cbe4eea44b0d5bafe280fc212f1791a2cef5d8.tar.bz2 gentoo-2-b5cbe4eea44b0d5bafe280fc212f1791a2cef5d8.zip |
remove vulnerable versions
(Portage version: 2.1-r2)
(Unsigned Manifest commit)
Diffstat (limited to 'app-emulation/emul-linux-x86-xlibs/emul-linux-x86-xlibs-2.2.2-r1.ebuild')
-rw-r--r-- | app-emulation/emul-linux-x86-xlibs/emul-linux-x86-xlibs-2.2.2-r1.ebuild | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/app-emulation/emul-linux-x86-xlibs/emul-linux-x86-xlibs-2.2.2-r1.ebuild b/app-emulation/emul-linux-x86-xlibs/emul-linux-x86-xlibs-2.2.2-r1.ebuild deleted file mode 100644 index ff5a2a1c62d2..000000000000 --- a/app-emulation/emul-linux-x86-xlibs/emul-linux-x86-xlibs-2.2.2-r1.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/emul-linux-x86-xlibs/emul-linux-x86-xlibs-2.2.2-r1.ebuild,v 1.2 2006/03/09 01:45:02 flameeyes Exp $ - -inherit multilib - -DESCRIPTION="X11R6 libraries for emulation of 32bit x86 on amd64" -HOMEPAGE="http://www.gentoo.org/" -SRC_URI="mirror://gentoo/emul-linux-x86-xlibs-${PV}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-* ~amd64" -IUSE="opengl" - -DEPEND="" - -RDEPEND="opengl? ( app-admin/eselect-opengl ) - virtual/libc - >=app-emulation/emul-linux-x86-baselibs-2.0" - -S=${WORKDIR} - -RESTRICT="nostrip" - -pkg_preinst() { - # Check for bad symlink before installing, bug 84441. - if [ -L /emul/linux/x86/usr/lib/X11 ]; then - rm -f /emul/linux/x86/usr/lib/X11 - fi -} - -src_install() { - cp -RPvf ${WORKDIR}/* ${D}/ - - local libdir="lib32" - if has_multilib_profile; then - libdir=$(get_abi_LIBDIR x86) - fi - - dodir /usr/${libdir}/opengl - dosym /emul/linux/x86/usr/lib/opengl/xorg-x11 /usr/${libdir}/opengl/xorg-x11 -} - -pkg_postinst() { - #update GL symlinks - if use opengl ; then - /usr/bin/eselect opengl set --use-old - fi -} - |