Files
bpfire/lfs/attr
Adolf Belka 27b249b8d4 attr: Update to 2.5.1
- Update from 2.4.48 to 2.5.1
- Update rootfile
- Changelog
   Version 2.5.1
    Fix libtool library versioning regression	Andreas Gruenbacher
   Version 2.4.48
    Update po files and German translation	Andreas Gruenbacher
    getfattr: Add --one-file-system option	Andreas Gruenbacher
    Move struct stat into struct walk_tree_args	Andreas Gruenbacher
    Move list of open directories into struct walk_tree_args	Andreas Gruenbacher
    Move walk_tree_rec arguments into a separate struct	Andreas Gruenbacher
    xattr.conf: Indicate afs metadata xattrs should be skipped when copying	David Howells
    Fix typos in manual pages	Samanta Navarro
    Update my email address	Andreas Gruenbacher
    man: add examples to setfattr.1	Achilles Gaikwad
    install-data: Don't remove unrelated empty directories	Andreas Gruenbacher
    attr: Replace bzero with memset	Rosen Penev
    getfattr: don't count terminating NULL in well_enough_printable	Jeff Layton
    attr_list, attr_listf: Guard against unterminated buffer	Andreas Gruenbacher
    attr_multi, attr_multif: Don't set errno to -EINVAL	Andreas Gruenbacher
    Switch back to syscall()	Andreas Gruenbacher
    attr_list.3: Fix the attributes.h include path	Andreas Gruenbacher
    getfattr.1: by default only user namespace attributes are dumped	Simon Ruderich
    Enable large-file support on systems that do not enable it by default	Dmitry V. Levin
    man: standardize AUTHORS section	Mike Frysinger
    man: fix bold style in SEE ALSO section	Mike Frysinger
    test: escape left brace in a regex in test/run	Troy Dawson

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2021-03-18 11:20:32 +00:00

80 lines
3.1 KiB
Plaintext

###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2018 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 2.5.1
THISAPP = attr-$(VER)
DL_FILE = $(THISAPP).tar.xz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = e459262266bbd82b3dd348fc8cc68a6d
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
md5 : $(subst %,%_MD5,$(objects))
###############################################################################
# Downloading, checking, md5sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_MD5,$(objects)) :
@$(MD5)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
$(UPDATE_AUTOMAKE)
cd $(DIR_APP) && ./configure
cd $(DIR_APP) && make
cd $(DIR_APP) && make install
chmod -v 755 /usr/lib/libattr.so
@rm -rf $(DIR_APP)
@$(POSTBUILD)