diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-03-17 04:08:14 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-03-17 04:08:14 +0000 |
commit | 4d1c9af0c716bc676df08f56849cf90f06b67c2d (patch) | |
tree | 7ca547041f379e625ac6e55c020907ba6cb324c8 /app-portage | |
parent | Add warning for users with buggy btrfs setups #353907 by Zac Medico. (diff) | |
download | gentoo-2-4d1c9af0c716bc676df08f56849cf90f06b67c2d.tar.gz gentoo-2-4d1c9af0c716bc676df08f56849cf90f06b67c2d.tar.bz2 gentoo-2-4d1c9af0c716bc676df08f56849cf90f06b67c2d.zip |
old
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/portage-utils/portage-utils-0.2.1.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/app-portage/portage-utils/portage-utils-0.2.1.ebuild b/app-portage/portage-utils/portage-utils-0.2.1.ebuild deleted file mode 100644 index 4d22041ee698..000000000000 --- a/app-portage/portage-utils/portage-utils-0.2.1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/portage-utils/portage-utils-0.2.1.ebuild,v 1.2 2009/12/05 10:02:49 vapier Exp $ - -inherit toolchain-funcs eutils - -DESCRIPTION="small and fast portage helper tools written in C" -HOMEPAGE="http://www.gentoo.org/" -SRC_URI="mirror://gentoo/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd" -IUSE="" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i -e 's:\[\[:[:' -e 's:\]\]:]:' Makefile -} - -src_compile() { - tc-export CC - emake || die -} - -src_install() { - emake install DESTDIR="${D}" || die -} - -pkg_postinst() { - [ -e "${ROOT}"/etc/portage/bin/post_sync ] && return 0 - mkdir -p "${ROOT}"/etc/portage/bin/ - -cat <<__EOF__ > "${ROOT}"/etc/portage/bin/post_sync -#!/bin/sh -# Copyright 2006-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -if [ -d /etc/portage/postsync.d/ ]; then - for f in /etc/portage/postsync.d/* ; do - if [ -x \${f} ] ; then - \${f} - fi - done -else - : -fi -__EOF__ - chmod 755 "${ROOT}"/etc/portage/bin/post_sync - if [ ! -e "${ROOT}"/etc/portage/postsync.d/q-reinitialize ]; then - mkdir -p "${ROOT}"/etc/portage/postsync.d/ - echo '[ -x /usr/bin/q ] && /usr/bin/q -qr' > "${ROOT}"/etc/portage/postsync.d/q-reinitialize - elog "${ROOT}/etc/portage/postsync.d/q-reinitialize has been installed for convenience" - elog "If you wish for it to be automatically run at the end of every --sync simply chmod +x ${ROOT}/etc/portage/postsync.d/q-reinitialize" - elog "Normally this should only take a few seconds to run but file systems such as ext3 can take a lot longer." - elog "If ever you find this to be an inconvenience simply chmod -x ${ROOT}/etc/portage/postsync.d/q-reinitialize" - fi - : -} |