summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2018-06-30 10:52:00 +0200
committerJeroen Roovers <jer@gentoo.org>2018-06-30 10:52:00 +0200
commitbbbdba31c7a4205898bd22c652bd3c9f55aecdc8 (patch)
tree6c3cb435e77a8c51d0b3656a25116a5cd481a4db /sys-fs
parentx11-drivers/nvidia-drivers: Old. (diff)
downloadgentoo-bbbdba31c7a4205898bd22c652bd3c9f55aecdc8.tar.gz
gentoo-bbbdba31c7a4205898bd22c652bd3c9f55aecdc8.tar.bz2
gentoo-bbbdba31c7a4205898bd22c652bd3c9f55aecdc8.zip
sys-fs/squashfs-tools: Update live ebuild.
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/squashfs-tools/squashfs-tools-9999.ebuild20
1 files changed, 6 insertions, 14 deletions
diff --git a/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild b/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild
index c06d73d05088..11c0570d7f45 100644
--- a/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild
+++ b/sys-fs/squashfs-tools/squashfs-tools-9999.ebuild
@@ -1,29 +1,23 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-
-inherit eutils git-r3 toolchain-funcs flag-o-matic
-
-DEB_VER="3"
+inherit flag-o-matic git-r3 toolchain-funcs
DESCRIPTION="Tool for creating compressed filesystem type squashfs"
HOMEPAGE="http://squashfs.sourceforge.net"
-EGIT_REPO_URI="
- https://git.kernel.org/pub/scm/fs/squashfs/squashfs-tools.git
-"
-
+EGIT_REPO_URI="https://github.com/plougher/squashfs-tools"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS=""
IUSE="debug lz4 lzma lzo static xattr +xz zstd"
+KEYWORDS=""
LIB_DEPEND="
- sys-libs/zlib[static-libs(+)]
!xz? ( !lzo? ( sys-libs/zlib[static-libs(+)] ) )
lz4? ( app-arch/lz4[static-libs(+)] )
lzma? ( app-arch/xz-utils[static-libs(+)] )
lzo? ( dev-libs/lzo[static-libs(+)] )
+ sys-libs/zlib[static-libs(+)]
xattr? ( sys-apps/attr[static-libs(+)] )
xz? ( app-arch/xz-utils[static-libs(+)] )
zstd? ( app-arch/zstd[static-libs(+)] )
@@ -66,8 +60,6 @@ src_compile() {
}
src_install() {
- cd "${WORKDIR}"/${P}/${PN} || die
- dobin mksquashfs unsquashfs
- cd .. || die
+ dobin "${WORKDIR}"/${P}/${PN}/{mksquashfs,unsquashfs}
dodoc CHANGES README RELEASE-README RELEASE-READMEs/*
}