summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-11-27 18:40:10 +0000
committerMike Frysinger <vapier@gentoo.org>2008-11-27 18:40:10 +0000
commitb1ba6e9c232d9c6af6ed7a407b6ce20c52167ae8 (patch)
tree0e1c64dc033faf9a551859c519548c9fa6f8135c /sys-apps/stat
parentMove dev-util/pkgconfig from RDEPEND to DEPEND wrt #224301. (diff)
downloadgentoo-2-b1ba6e9c232d9c6af6ed7a407b6ce20c52167ae8.tar.gz
gentoo-2-b1ba6e9c232d9c6af6ed7a407b6ce20c52167ae8.tar.bz2
gentoo-2-b1ba6e9c232d9c6af6ed7a407b6ce20c52167ae8.zip
old
Diffstat (limited to 'sys-apps/stat')
-rw-r--r--sys-apps/stat/stat-2.5.ebuild34
1 files changed, 0 insertions, 34 deletions
diff --git a/sys-apps/stat/stat-2.5.ebuild b/sys-apps/stat/stat-2.5.ebuild
deleted file mode 100644
index 80098ec80164..000000000000
--- a/sys-apps/stat/stat-2.5.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/stat/stat-2.5.ebuild,v 1.15 2008/09/14 09:05:33 solar Exp $
-
-inherit eutils
-
-DESCRIPTION="A command-line stat() wrapper"
-SRC_URI="ftp://metalab.unc.edu/pub/linux/utils/file/${P}.tar.gz"
-HOMEPAGE="http://www.gnu.org/directory/stat.html"
-
-KEYWORDS="x86 amd64 ~sparc"
-SLOT="0"
-LICENSE="GPL-2"
-IUSE=""
-
-DEPEND="virtual/libc"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- cp Makefile Makefile.orig
- sed -e "s:-O2 -g:${CFLAGS}:" Makefile.orig > Makefile
-}
-
-src_compile() {
- emake || die
-}
-
-src_install() {
- dobin stat
- doman stat.1
- dodoc COPYRIGHT GPL README Changelog
-}