summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-03-30 00:24:03 +0000
committerMike Frysinger <vapier@gentoo.org>2005-03-30 00:24:03 +0000
commitffba7c7102544963ff99da7602b9ed8c9f28193a (patch)
tree2be084fa2bc7bd9e0b0af4baca0e02d0e2431b72 /sys-fs/xfsprogs
parentout of mask, right into ~arch ;) (diff)
downloadgentoo-2-ffba7c7102544963ff99da7602b9ed8c9f28193a.tar.gz
gentoo-2-ffba7c7102544963ff99da7602b9ed8c9f28193a.tar.bz2
gentoo-2-ffba7c7102544963ff99da7602b9ed8c9f28193a.zip
old
Diffstat (limited to 'sys-fs/xfsprogs')
-rw-r--r--sys-fs/xfsprogs/files/digest-xfsprogs-2.6.131
-rw-r--r--sys-fs/xfsprogs/xfsprogs-2.6.13.ebuild77
2 files changed, 0 insertions, 78 deletions
diff --git a/sys-fs/xfsprogs/files/digest-xfsprogs-2.6.13 b/sys-fs/xfsprogs/files/digest-xfsprogs-2.6.13
deleted file mode 100644
index e0d10ef28967..000000000000
--- a/sys-fs/xfsprogs/files/digest-xfsprogs-2.6.13
+++ /dev/null
@@ -1 +0,0 @@
-MD5 6c83524988838de0ab96a23db4b40412 xfsprogs-2.6.13.src.tar.gz 846585
diff --git a/sys-fs/xfsprogs/xfsprogs-2.6.13.ebuild b/sys-fs/xfsprogs/xfsprogs-2.6.13.ebuild
deleted file mode 100644
index 9d38ebb16200..000000000000
--- a/sys-fs/xfsprogs/xfsprogs-2.6.13.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsprogs/xfsprogs-2.6.13.ebuild,v 1.8 2005/01/03 00:13:04 ciaranm Exp $
-
-inherit flag-o-matic eutils
-
-DESCRIPTION="xfs filesystem utilities"
-HOMEPAGE="http://oss.sgi.com/projects/xfs/"
-SRC_URI="ftp://oss.sgi.com/projects/xfs/download/cmd_tars/${P}.src.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 mips ppc ~sparc x86"
-IUSE="nls uclibc"
-
-RDEPEND="virtual/libc
- sys-fs/e2fsprogs"
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )
- >=sys-apps/sed-4"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- sed -i \
- -e "/^PKG_DOC_DIR/s:=.*:= /usr/share/doc/${PF}:" \
- -e '/^GCFLAGS/s:-O1::' \
- -e '/^PKG_[[:upper:]]*_DIR/s:= := $(DESTDIR):' \
- include/builddefs.in \
- || die "sed include/builddefs.in failed"
-
- # mincore does not appear to be part of POSIX or the Single Unix
- # Specification. So we patch it out for uclibc builds.
- epatch ${FILESDIR}/${PV}-uclibc-mincore.patch
- use uclibc && append-flags -D__UCLIBC__
-
- epatch ${FILESDIR}/${PV}-configure.patch #65735
- autoreconf -i || die "autoreconf"
-}
-
-src_compile() {
- replace-flags -O[2-9] -O1
- export OPTIMIZER="${CFLAGS}"
- export DEBUG=-DNDEBUG
-
- # Some archs need the PLATFORM var unset
- if hasq ${ARCH} mips ppc sparc; then
- unset PLATFORM
- fi
-
- econf \
- --bindir=/bin \
- --sbindir=/sbin \
- --libdir=/lib \
- --libexecdir=/lib \
- $(use_enable nls gettext) \
- || die "config failed"
- emake || die
-}
-
-src_install() {
- make \
- DESTDIR=${D} \
- DK_INC_DIR=${D}/usr/include/disk \
- install install-dev \
- || die "make install failed"
- dosym /lib/libhandle.so.1 /lib/libhandle.so
-
- dodir /usr/lib
- sed \
- -e 's:installed=no:installed=yes:g' \
- ${S}/libhandle/.libs/libhandle.la \
- > ${D}/usr/lib/libhandle.la \
- || die "sed failed"
- mv ${D}/lib/*.a ${D}/usr/lib/ || die "mv failed"
- prepalldocs
-}