diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2019-04-14 15:24:21 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2019-04-14 15:24:21 -0400 |
commit | 8e83260deee05bbb5db809fbe654703437a712f2 (patch) | |
tree | ec0952f5e674451be6decd0aa70de5239ed10f40 /sys-apps/install-xattr/install-xattr-0.7.ebuild | |
parent | dev-java/xjavac: clean up old. (diff) | |
download | gentoo-8e83260deee05bbb5db809fbe654703437a712f2.tar.gz gentoo-8e83260deee05bbb5db809fbe654703437a712f2.tar.bz2 gentoo-8e83260deee05bbb5db809fbe654703437a712f2.zip |
sys-apps/install-xattr: version bump to 0.7, bug #682110
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
Diffstat (limited to 'sys-apps/install-xattr/install-xattr-0.7.ebuild')
-rw-r--r-- | sys-apps/install-xattr/install-xattr-0.7.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/sys-apps/install-xattr/install-xattr-0.7.ebuild b/sys-apps/install-xattr/install-xattr-0.7.ebuild new file mode 100644 index 000000000000..2da2f9601445 --- /dev/null +++ b/sys-apps/install-xattr/install-xattr-0.7.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Wrapper to coreutil's install to preserve Filesystem Extended Attributes" +HOMEPAGE="https://dev.gentoo.org/~blueness/install-xattr/" + +inherit flag-o-matic toolchain-funcs + +if [[ ${PV} == "9999" ]] ; then + EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/elfix.git" + inherit git-r3 +else + SRC_URI="https://dev.gentoo.org/~blueness/install-xattr/${P}.tar.bz2" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" + S=${WORKDIR}/${PN} +fi + +LICENSE="GPL-3" +SLOT="0" + +src_prepare() { + default + tc-export CC + append-cppflags "-D_FILE_OFFSET_BITS=64" +} + +src_compile() { + if [[ ${PV} == "9999" ]] ; then + cd "${WORKDIR}/${P}/misc/${PN}" || die + fi + default +} + +src_install() { + if [[ ${PV} == "9999" ]] ; then + cd "${WORKDIR}/${P}/misc/${PN}" || die + fi + DESTDIR=${ED} emake install +} + +# We need to fix how tests are done +src_test() { + true +} |