summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-03-03 06:20:16 +0000
committerMike Frysinger <vapier@gentoo.org>2007-03-03 06:20:16 +0000
commitb35a9ffc5deab21568e58c1aab6120fc6c4fc7b9 (patch)
treee686dfa18e771c98f0bafefca5a2e9680e6d345b
parentFix building when asm/page.h is not available #168278 by Daniel Black. (diff)
downloadgentoo-2-b35a9ffc5deab21568e58c1aab6120fc6c4fc7b9.tar.gz
gentoo-2-b35a9ffc5deab21568e58c1aab6120fc6c4fc7b9.tar.bz2
gentoo-2-b35a9ffc5deab21568e58c1aab6120fc6c4fc7b9.zip
old
-rw-r--r--sys-apps/util-linux/files/digest-util-linux-2.12r-r412
-rw-r--r--sys-apps/util-linux/util-linux-2.12r-r4.ebuild190
2 files changed, 0 insertions, 202 deletions
diff --git a/sys-apps/util-linux/files/digest-util-linux-2.12r-r4 b/sys-apps/util-linux/files/digest-util-linux-2.12r-r4
deleted file mode 100644
index 284272fff0ba..000000000000
--- a/sys-apps/util-linux/files/digest-util-linux-2.12r-r4
+++ /dev/null
@@ -1,12 +0,0 @@
-MD5 b4d13d6421382ea048e113ad8a868dfa loop-AES-v3.1d.tar.bz2 169228
-RMD160 36707f6ed2f57dabd7278c9d6386a25c2c012d59 loop-AES-v3.1d.tar.bz2 169228
-SHA256 05826b3238d5d9f134426cb8575496508205ef607e0a9075b50510c8e0e8a23c loop-AES-v3.1d.tar.bz2 169228
-MD5 dee120b17425e1edf0a0c64f0e249c20 util-linux-2.12i-cryptoapi-losetup.patch.bz2 4800
-RMD160 82e54aedd691aa93b67de9dfb9049a3f012a29f7 util-linux-2.12i-cryptoapi-losetup.patch.bz2 4800
-SHA256 565a0cc6c3c148a66969276ae9d34dc34f19fbd45df2740343793ee067b3700f util-linux-2.12i-cryptoapi-losetup.patch.bz2 4800
-MD5 6e0deccf97db98d2ae751577d019efa4 util-linux-2.12i.tar.gz 1975468
-RMD160 f055a94ad247dc59293f7b933c12bdda135159fc util-linux-2.12i.tar.gz 1975468
-SHA256 28e2fc70d7507e158d8861c958461aef1c4bbf4157a8ebbc237943944e5a8c4a util-linux-2.12i.tar.gz 1975468
-MD5 af9d9e03038481fbf79ea3ac33f116f9 util-linux-2.12r.tar.bz2 1370907
-RMD160 51950aafd5cbcb574e69fbd6b28d15a106147e64 util-linux-2.12r.tar.bz2 1370907
-SHA256 b8e499b338ce9fbd1fb315194b26540ec823c0afc46c9e145ac7a3e38ad57e6b util-linux-2.12r.tar.bz2 1370907
diff --git a/sys-apps/util-linux/util-linux-2.12r-r4.ebuild b/sys-apps/util-linux/util-linux-2.12r-r4.ebuild
deleted file mode 100644
index 7972fe7cc22b..000000000000
--- a/sys-apps/util-linux/util-linux-2.12r-r4.ebuild
+++ /dev/null
@@ -1,190 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.12r-r4.ebuild,v 1.11 2006/10/18 00:03:30 vapier Exp $
-
-inherit eutils flag-o-matic toolchain-funcs
-
-OLD_CRYPT_VER=2.12i
-LOOP_AES_VER=3.1d
-DESCRIPTION="Various useful Linux utilities"
-HOMEPAGE="http://www.kernel.org/pub/linux/utils/util-linux/"
-SRC_URI="mirror://kernel/linux/utils/${PN}/${P}.tar.bz2
- old-crypt? (
- mirror://kernel/linux/utils/${PN}/${PN}-${OLD_CRYPT_VER}.tar.gz
- mirror://gentoo/util-linux-${OLD_CRYPT_VER}-cryptoapi-losetup.patch.bz2
- )
- crypt? ( http://loop-aes.sourceforge.net/loop-AES/loop-AES-v${LOOP_AES_VER}.tar.bz2 )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86"
-IUSE="crypt old-crypt nls static selinux perl"
-
-RDEPEND=">=sys-libs/ncurses-5.2-r2
- >=sys-fs/e2fsprogs-1.34
- selinux? ( sys-libs/libselinux )
- crypt? ( app-crypt/hashalot )
- perl? ( dev-lang/perl )"
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )
- virtual/os-headers"
-
-OLD_CRYPT_P=${WORKDIR}/${PN}-${OLD_CRYPT_VER}
-
-yesno() { useq $1 && echo yes || echo no; }
-
-src_unpack() {
- unpack ${A}
-
- # Old crypt support
- if use old-crypt ; then
- cd "${OLD_CRYPT_P}"
- ewarn "You should update your system as USE=old-crypt"
- ewarn "support will be dropped in future versions."
- epatch "${WORKDIR}"/util-linux-${OLD_CRYPT_VER}-cryptoapi-losetup.patch
- fi
-
- cd "${S}"
-
- # crypto support
- use crypt && epatch "${WORKDIR}"/loop-AES-v${LOOP_AES_VER}/${P}.diff
-
- # Fall back to cracklib if default words file doesnt exist #114416
- epatch "${FILESDIR}"/${PN}-2.12r-cracklib-words.patch
-
- # Fix rare failures with -j4 or higher
- epatch "${FILESDIR}"/${PN}-2.11z-parallel-make.patch
-
- # Fix -f usage with -a and in general
- epatch "${FILESDIR}"/${PN}-2.12q-more-fake-checks-v2.patch
-
- # Fix mtab updates with `mount --move /foo /bar` #104697
- epatch "${FILESDIR}"/${PN}-2.12q-update-mtab-when-moving.patch
-
- # Respect -n with -r and umount #98675
- epatch "${FILESDIR}"/${PN}-2.12q-umount-dont-write-mtab-with-remount.patch
-
- # A few fixes to beat update_mtab() into submission.
- epatch "${FILESDIR}"/${PN}-2.12q-update_mtab-fixes.patch
-
- # Use update_mtab() to avoid dups in mtab for 'mount -f'
- epatch "${FILESDIR}"/${PN}-2.12q-use-update_mtab-for-fake.patch
-
- # Fix unreadable df output when using devfs ... this check is kind of
- # a hack, but whatever, the output isnt critical at all :P
- [[ -e /dev/.devfsd ]] && epatch "${FILESDIR}"/no-symlink-resolve.patch
-
- # Add the O option to agetty to display DNS domainname in the issue
- # file, thanks to Marius Mauch <genone@genone.de>, bug #22275.
- #
- # NOTE: Removing this will break future baselayout, so PLEASE
- # consult with me before doing so.
- epatch "${FILESDIR}"/${PN}-2.11z-agetty-domainname-option.patch
-
- # Fix french translation typo #75693
- epatch "${FILESDIR}"/${PN}-2.12q-i18n-update.patch
-
- # Add NFS4 support (kernel 2.5/2.6)
- epatch "${FILESDIR}"/${PN}-2.12i-nfsv4.patch
-
- # ignore managed/kudzu options #70873
- epatch "${FILESDIR}"/${PN}-2.12i-ignore-managed.patch
-
- # swapon gets confused by symlinks in /dev #69162
- epatch "${FILESDIR}"/${PN}-2.12p-swapon-check-symlinks.patch
-
- # fix simple buffer overflow (from Debian)
- epatch "${FILESDIR}"/${PN}-2.12q-debian-10cfdisk.patch
-
- # don't build fdisk on m68k
- epatch "${FILESDIR}"/${PN}-2.12q-no-m68k-fdisk.patch
-
- # don't force umask to 022 #93671
- epatch "${FILESDIR}"/${PN}-2.12q-dont-umask.patch
-
- # fix cal display when using featureless terminals #112406
- epatch "${FILESDIR}"/${PN}-2.12r-cal-dumb-terminal.patch
-
- # Bug #108988 unable to always seek when omiting frame pointers
- epatch "${FILESDIR}"/${PN}-2.12r-fdisk-frame-pointers.patch
-
- # don't treat sparc/arm specially
- epatch "${FILESDIR}"/${PN}-2.12r-umount-no-special.patch
-
- # Patches from Fedora
- epatch "${FILESDIR}"/${PN}-2.12r-umount-nosysfs.patch
-
- # fix mips n32 (no llseek syscall)
- epatch "${FILESDIR}"/${PN}-2.12-mips-lseek.patch
-
- # Enable random features
- local mconfigs="MCONFIG"
- use old-crypt && mconfigs="${mconfigs} ${OLD_CRYPT_P}/MCONFIG"
- sed -i \
- -e "/^HAVE_SELINUX=/s:no:$(yesno selinux):" \
- -e "/^DISABLE_NLS=/s:no:$(yesno !nls):" \
- -e "/^HAVE_KILL=/s:no:yes:" \
- -e "/^HAVE_SLN=/s:no:yes:" \
- -e "/^HAVE_TSORT/s:no:yes:" \
- -e "s:-pipe -O2 \$(CPUOPT) -fomit-frame-pointer:${CFLAGS}:" \
- -e "s:CPU=.*:CPU=${CHOST%%-*}:" \
- -e "s:SUIDMODE=.*4755:SUIDMODE=4711:" \
- ${mconfigs} || die "MCONFIG sed"
-}
-
-src_compile() {
- append-ldflags $(bindnow-flags)
- use static && append-ldflags -static
- export CC="$(tc-getCC)"
-
- econf || die "configure failed"
- emake || die "emake failed"
-
- cd partx
- has_version '>=sys-kernel/linux-headers-2.6' && \
- has_version '<sys-kernel/linux-headers-2.6.18' \
- && append-flags -include linux/compiler.h
- emake CFLAGS="${CFLAGS}" || die "make partx failed"
-
- if use old-crypt ; then
- cd "${OLD_CRYPT_P}"
- econf || die "old configure failed"
- emake -C lib || die "old lib failed"
- emake -C mount losetup mount || die "old make failed"
- fi
-}
-
-src_install() {
- make install DESTDIR="${D}" || die "install failed"
- dosym ../man8/agetty.8 /usr/share/man/man1/getty.1
- dosbin partx/{addpart,delpart,partx} || die "dosbin"
- use perl || rm -f "${D}"/usr/bin/chkdupexe
-
- newinitd "${FILESDIR}"/crypto-loop.initd crypto-loop
- newconfd "${FILESDIR}"/crypto-loop.confd crypto-loop
-
- # man-pages installs renice(1p) but util-linux does renice(8)
- dosym ../man8/renice.8 /usr/share/man/man1/renice.1
-
- dodoc HISTORY MAINTAINER README VERSION
- docinto examples
- dodoc example.files/*
-
- if use old-crypt ; then
- cd "${OLD_CRYPT_P}"/mount
- into /
- newbin mount mount-old-crypt || die
- newbin losetup losetup-old-crypt || die
- fperms 4711 /bin/{mount,losetup}-old-crypt
- fi
-}
-
-pkg_postinst() {
- if ! use old-crypt && use crypt ; then
- ewarn "This version of util-linux includes crypto support"
- ewarn "for loop-aes instead of the old cryptoapi."
- ewarn "If you need the older support, please re-emerge"
- ewarn "util-linux with USE=old-crypt. This will create"
- ewarn "/sbin/mount-old-crypt and /sbin/losetup-old-crypt."
- fi
-}