diff options
author | 2001-06-09 02:10:54 +0000 | |
---|---|---|
committer | 2001-06-09 02:10:54 +0000 | |
commit | 3a186b8af61d1e6d2d359642b2fd113aebc57507 (patch) | |
tree | 168d0b2476fd1ca7dbdb22864113593ef5ff3e8b /sys-apps/util-linux | |
parent | *** empty log message *** (diff) | |
download | historical-3a186b8af61d1e6d2d359642b2fd113aebc57507.tar.gz historical-3a186b8af61d1e6d2d359642b2fd113aebc57507.tar.bz2 historical-3a186b8af61d1e6d2d359642b2fd113aebc57507.zip |
*** empty log message ***
Diffstat (limited to 'sys-apps/util-linux')
-rw-r--r-- | sys-apps/util-linux/files/digest-util-linux-2.10s | 1 | ||||
-rw-r--r-- | sys-apps/util-linux/util-linux-2.10s.ebuild | 57 |
2 files changed, 0 insertions, 58 deletions
diff --git a/sys-apps/util-linux/files/digest-util-linux-2.10s b/sys-apps/util-linux/files/digest-util-linux-2.10s deleted file mode 100644 index 9b8ec70a6125..000000000000 --- a/sys-apps/util-linux/files/digest-util-linux-2.10s +++ /dev/null @@ -1 +0,0 @@ -MD5 5aa31212a1339536242e511f1271d0a8 util-linux-2.10s.tar.bz2 diff --git a/sys-apps/util-linux/util-linux-2.10s.ebuild b/sys-apps/util-linux/util-linux-2.10s.ebuild deleted file mode 100644 index 4ae70f740db0..000000000000 --- a/sys-apps/util-linux/util-linux-2.10s.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-2.10s.ebuild,v 1.1 2001/03/09 10:26:59 achim Exp $ - -S=${WORKDIR}/${P} -DESCRIPTION="Various useful Linux utilities" -SRC_URI="ftp://ftp.de.kernel.org/pub/linux/utils/util-linux/${P}.tar.bz2" -DEPEND=">=sys-libs/ncurses-5.2-r2" - - -RDEPEND="$DEPEND - sys-devel/perl" - -src_unpack() { - - unpack ${P}.tar.bz2 - cd ${S} - cp MCONFIG MCONFIG.orig - sed -e "s:-pipe -O2 -m486 -fomit-frame-pointer:${CFLAGS}:" \ - -e "s:CPU=.*:CPU=${CHOST%%-*}:" \ - -e "s:HAVE_PAM=no:HAVE_PAM=yes:" \ - -e "s:HAVE_SLN=no:HAVE_SLN=yes:" \ - -e "s:HAVE_TSORT=no:HAVE_TSORT=yes:" \ - -e "s:usr/man:usr/share/man:" \ - -e "s:usr/info:usr/share/info:" \ - MCONFIG.orig > MCONFIG.orig2 - if [ "`use simpleinit`" ] - then - sed -e "s:HAVE_SYSVINIT=yes:HAVE_SYSVINIT=no:" \ - -e "s:HAVE_SYSVINIT_UTILS=yes:HAVE_SYSVINIT_UTILS=no:" \ - MCONFIG.orig2 > MCONFIG - else - mv MCONFIG.orig2 MCONFIG - fi - -} - -src_compile() { - - try ./configure - try make ${MAKEOPTS} LDFLAGS=\"\" -} - - -src_install() { - - try make DESTDIR=${D} install - - dodoc HISTORY MAINTAINER README VERSION - docinto licenses - dodoc licenses/* HISTORY - docinto examples - dodoc example.files/* -} - - |