diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-03-23 07:31:52 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-03-23 07:31:52 +0000 |
commit | 6f9acde832b58c411bd920f299df6c28ceaa52f1 (patch) | |
tree | df0989d3528199c4ebfcceadcc6bd82248944729 /sys-fs/aufs-util/aufs-util-3.19_p20150323.ebuild | |
parent | old (diff) | |
download | historical-6f9acde832b58c411bd920f299df6c28ceaa52f1.tar.gz historical-6f9acde832b58c411bd920f299df6c28ceaa52f1.tar.bz2 historical-6f9acde832b58c411bd920f299df6c28ceaa52f1.zip |
Bump to latest aufs
Package-Manager: portage-2.2.18/cvs/Linux x86_64
Manifest-Sign-Key: 0xB9D4F231BD1558AB!
Diffstat (limited to 'sys-fs/aufs-util/aufs-util-3.19_p20150323.ebuild')
-rw-r--r-- | sys-fs/aufs-util/aufs-util-3.19_p20150323.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/sys-fs/aufs-util/aufs-util-3.19_p20150323.ebuild b/sys-fs/aufs-util/aufs-util-3.19_p20150323.ebuild new file mode 100644 index 000000000000..c7a59ce09a81 --- /dev/null +++ b/sys-fs/aufs-util/aufs-util-3.19_p20150323.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/aufs-util/aufs-util-3.19_p20150323.ebuild,v 1.1 2015/03/23 07:31:50 jlec Exp $ + +EAPI=5 + +inherit flag-o-matic linux-info multilib toolchain-funcs + +DESCRIPTION="Utilities are always necessary for aufs" +HOMEPAGE="http://aufs.sourceforge.net/" +SRC_URI="http://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz" +# git archive -v --prefix=${P}/ --remote=git://git.code.sf.net/p/aufs/aufs-util aufs3.14 -o ${P}.tar +# xz -ve9 *.tar + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + !sys-fs/aufs2 + !<sys-fs/aufs3-3_p20130318" +DEPEND="${RDEPEND} + >=sys-fs/aufs-headers-3.15_p20141006" + +src_prepare() { + sed \ + -e "/LDFLAGS += -static -s/d" \ + -e "/CFLAGS/s:-O::g" \ + -i Makefile || die + + sed \ + -e '/LDFLAGS/s: -s::g' \ + -e "s:m 644 -s:m 644:g" \ + -e "s:/usr/lib:/usr/$(get_libdir):g" \ + -i libau/Makefile || die + + sed \ + -e '/LDFLAGS/s: -s::g' \ + -e '/LDLIBS/s:-lrt::g' \ + -e '/LDLIBS/s:$: -lrt:g' \ + -i fhsm/Makefile || die + + tc-export CC AR + export HOSTCC=$(tc-getCC) +} |