blob: ce630630bf66951ef960087f971e231f4c62298f (
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
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/xfsprogs/xfsprogs-20020124-r2.ebuild,v 1.4 2002/10/04 06:32:30 vapier Exp $
S=${WORKDIR}/cmd/${PN}
DESCRIPTION="xfs filesystem utilities"
SRC_URI="http://www.ibiblio.org/gentoo/distfiles/xfs-cmd-${PV}.tar.bz2"
HOMEPAGE="http://oss.sgi.com/projects/xfs"
KEYWORDS="x86"
SLOT="0"
LICENSE="LGPL-2.1"
LICENSE="GPL-2"
DEPEND="virtual/glibc sys-devel/autoconf sys-devel/make sys-apps/e2fsprogs"
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} DK_INC_DIR=${D}/usr/include/disk install install-dev || die
dodir /lib
cd ${D}/usr/lib
local x
for x in libhandle*
do
ln -s ../usr/lib/${x} ${D}/lib/${x}
done
}
|