blob: 3fcb99322a78696a647f37424d9533e5fac60a65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Daniel Robbins <drobbins@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/sys-apps/xfsdump/xfsdump-20020124.ebuild,v 1.1 2002/01/24 08:02:07 drobbins Exp $
S=${WORKDIR}/cmd/${PN}
DESCRIPTION="xfs dump/restore utilities"
SRC_URI="http://www.ibiblio.org/gentoo/distfiles/xfs-cmd-${PV}.tar.bz2"
HOMEPAGE="http://oss.sgi.com/projects/xfs"
DEPEND="virtual/glibc sys-devel/autoconf sys-devel/make sys-apps/e2fsprogs >=sys-apps/xfsprogs-${PV} >=sys-apps/dmapi-${PV} >=sys-apps/attr-${PV}"
RDEPEND="virtual/glibc"
src_compile() {
cd ${S}
export OPTIMIZER="${CFLAGS}"
export DEBUG=-DNDEBUG
autoconf || die
./configure --prefix=/usr || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
}
|