Skip to content

Commit

Permalink
Merge pull request lunar-linux#990 from Florin65/xfs
Browse files Browse the repository at this point in the history
xfsprogs: version bumped to 4.2.0.
  • Loading branch information
Ratler committed Sep 13, 2015
2 parents 0c6ee08 + 784756a commit 4fbbd61
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 14 deletions.
10 changes: 8 additions & 2 deletions filesys/xfsprogs/BUILD
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
export DEBUG=-DNDEBUG

default_make &&
make install-dev
OPTS+=" --prefix=/usr \
--sbindir=/usr/bin" &&

default_config &&
make &&
prepare_install &&

make PKG_ROOT_SBIN_DIR="/usr/sbin" install install-dev
13 changes: 11 additions & 2 deletions filesys/xfsprogs/DEPENDS
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
depends e2fsprogs
depends libtool
depends util-linux

optional_depends gettext \
"--enable-gettext=yes" \
"--enable-gettext=no" \
"for alternate language support"

optional_depends readline \
"--enable-readline=yes" \
"--enable-readline=no" \
"for readline command support"
6 changes: 3 additions & 3 deletions filesys/xfsprogs/DETAILS
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
MODULE=xfsprogs
VERSION=3.2.4
VERSION=4.2.0
SOURCE=$MODULE-$VERSION.tar.gz
SOURCE_URL[0]=ftp://oss.sgi.com/projects/xfs/cmd_tars
SOURCE_URL[1]=ftp://ftp.silug.org/pub/xfs/cmd_tars
SOURCE_VFY=sha256:dde65ead82d3cbfa9b4ded9796b6d22095d7d759a22d41ae6f1a4ec458bb0465
SOURCE_VFY=sha256:3deab1ad0f4635e54053aa45add27bd48cd87a188c16ac60f4789e01730e5260
WEB_SITE=http://oss.sgi.com/projects/xfs
ENTERED=20020110
UPDATED=20150731
UPDATED=20150907
PSAFE=no
SHORT="Required utilities for the XFS file system"

Expand Down
16 changes: 9 additions & 7 deletions filesys/xfsprogs/POST_INSTALL
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
# cleanup some leftover symlinks
if [ -h "/usr/lib/libhandle.a" ]; then
rm /usr/lib/libhandle.a
fi
rm /usr/lib/libhandle.a
fi &&

if [ -h "/usr/lib/libhandle.la" ]; then
rm /usr/lib/libhandle.la
fi
rm /usr/lib/libhandle.la
fi &&

# fix a broken symlink created by recent versions of xfsprogs
# and is needed by xfsdump to work correctly
if [ -h "/lib/libhandle.so" ]; then
rm /lib/libhandle.so
cd /lib
ln -sf libhandle.so.1 libhandle.so
rm /lib/libhandle.so &&
cd /usr/lib &&
ln -sf libhandle.so.1 libhandle.so
fi

0 comments on commit 4fbbd61

Please sign in to comment.