sys-apps/attr: Bump to version 2.4.48
authorLars Wendler <polynomial-c@gentoo.org>
Tue, 9 Jan 2018 15:19:24 +0000 (16:19 +0100)
committerLars Wendler <polynomial-c@gentoo.org>
Tue, 9 Jan 2018 15:19:40 +0000 (16:19 +0100)
Package-Manager: Portage-2.3.19, Repoman-2.3.6

sys-apps/attr/Manifest
sys-apps/attr/attr-2.4.48.ebuild [new file with mode: 0644]

index 16cf20ce4d17f206ef471a80427b4ec2ff142616..40cfb32817282b56aa3406ae7a7202022adc8def 100644 (file)
@@ -1 +1,2 @@
 DIST attr-2.4.47.src.tar.gz 343692 BLAKE2B af4d509f156cb2e693f0faebf1a6cfb4a27cbdd3fd7f8b436cc01419c905ff9ac36214ada2ca8269e49c2e276917b1178dcda97050cf25cecd65382f22bdf9bb SHA512 2a333f63655758298650cf8f89c175efdc0112dcc4013e8d023e2a9a69f177e4bcb1f1d10b6666d6f2027dca4dec0833d54749952ab153d28367e1a72e6e2831
+DIST attr-2.4.48.tar.xz 346292 BLAKE2B eeffc17bf485749b5d0a1fce4ac3702c33a0bacce3ad635400e8b0b52981f14c5e750ef570f8fd19657e460e51e6e09f972134ef8a3e6efc15c2a7203682df75 SHA512 78b8160303aec9e01f63b5cf725a9e16432ff1d4a6e0065ce1a52715ae1266572e0c01f9be25c938c484deea288fdff2ce27981c3aea578753ad854084957e8b
diff --git a/sys-apps/attr/attr-2.4.48.ebuild b/sys-apps/attr/attr-2.4.48.ebuild
new file mode 100644 (file)
index 0000000..086cfe2
--- /dev/null
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit libtool ltprune toolchain-funcs multilib-minimal
+
+DESCRIPTION="Extended attributes tools"
+HOMEPAGE="https://savannah.nongnu.org/projects/attr"
+# Self-hosting as savannah does not provide a tarball on their download
+# area and the tarball in their git repo requires autoreconf to be run.
+SRC_URI="https://dev.gentoo.org/~polynomial-c/dist/${P}.tar.xz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+IUSE="debug static-libs"
+
+DEPEND="
+       sys-devel/autoconf
+       sys-devel/gettext
+"
+
+src_prepare() {
+       default
+       elibtoolize #580792
+}
+
+multilib_src_configure() {
+       unset PLATFORM #184564
+       export OPTIMIZER=${CFLAGS}
+       export DEBUG=-DNDEBUG
+
+       local myeconfargs=(
+               --bindir="${EPREFIX}"/bin
+               --enable-shared $(use_enable static-libs static)
+               --libexecdir="${EPREFIX}"/usr/$(get_libdir)
+               $(use_enable debug)
+       )
+       ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_install() {
+       emake DESTDIR="${D}" install
+
+       if multilib_is_native_abi; then
+               # we install attr into /bin, so we need the shared lib with it
+               gen_usr_ldscript -a attr
+       fi
+}
+
+multilib_src_install_all() {
+       use static-libs || prune_libtool_files --all
+       einstalldocs
+}