blob: e4128b8d6b4e6674f763213ffc1918f036cb2867 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsprogs/xfsprogs-2.8.10.ebuild,v 1.3 2006/09/20 23:52:30 vapier Exp $
inherit flag-o-matic eutils autotools toolchain-funcs
MY_P="${PN}_${PV}-1"
DESCRIPTION="xfs filesystem utilities"
HOMEPAGE="http://oss.sgi.com/projects/xfs/"
SRC_URI="ftp://oss.sgi.com/projects/xfs/download/cmd_tars/${MY_P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="nls"
RDEPEND="sys-fs/e2fsprogs"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-2.7.11-no-compress-docs.patch #129486
# Inject our own CFLAGS / docpath
sed -i \
-e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
-e '/^GCFLAGS/s:-O1::' \
include/builddefs.in \
|| die "sed include/builddefs.in failed"
# make sure the PLATFORM envvar doesn't break crap
sed -i -e '/PLATFORM/d' configure.in || die "sed PLATFORM"
# We'll handle /lib versus /usr/lib install
sed -i -e '/INSTALL.* -S .*LIBNAME/d' \
include/buildmacros || die "sed symlinks"
eautoconf
}
src_compile() {
export OPTIMIZER=${CFLAGS}
export DEBUG=-DNDEBUG
econf \
--bindir=/usr/bin \
--sbindir=/sbin \
--libexecdir=/usr/$(get_libdir) \
$(use_enable nls gettext) \
|| die "config failed"
emake || die
}
src_install() {
make DIST_ROOT="${D}" install install-dev || die "make install failed"
# shared in /lib, static in /usr/lib, ldscript fun too
dodir /$(get_libdir)
mv "${D}"/usr/$(get_libdir)/lib*.so* "${D}"/$(get_libdir)/
dosym libhandle.so.1 /$(get_libdir)/libhandle.so
gen_usr_ldscript libhandle.so
prepalldocs
}
|