diff options
author | 2017-06-06 14:00:25 +0200 | |
---|---|---|
committer | 2017-06-06 14:02:49 +0200 | |
commit | 6d5901fd57daf9d949c930749d8fbc32385f2c15 (patch) | |
tree | 1ce1ab92bb30b86653eaff908c93561e14c5f1bb /app-arch/xar/xar-1.6.1-r1.ebuild | |
parent | www-apps/otrs: Security cleanup (bug #621006) (diff) | |
download | gentoo-6d5901fd57daf9d949c930749d8fbc32385f2c15.tar.gz gentoo-6d5901fd57daf9d949c930749d8fbc32385f2c15.tar.bz2 gentoo-6d5901fd57daf9d949c930749d8fbc32385f2c15.zip |
app-arch/xar: Fix building (#583668)
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'app-arch/xar/xar-1.6.1-r1.ebuild')
-rw-r--r-- | app-arch/xar/xar-1.6.1-r1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-arch/xar/xar-1.6.1-r1.ebuild b/app-arch/xar/xar-1.6.1-r1.ebuild new file mode 100644 index 000000000000..fe744682e35c --- /dev/null +++ b/app-arch/xar/xar-1.6.1-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools ltprune + +DESCRIPTION="An easily extensible archive format" +HOMEPAGE="https://github.com/mackyle/xar" +SRC_URI="mirror://github/mackyle/${PN}/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="+bzip2 libressl" + +DEPEND=" + !libressl? ( dev-libs/openssl:0= ) + libressl? ( dev-libs/libressl:0= ) + bzip2? ( app-arch/bzip2 ) + sys-libs/zlib +" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}"/${P}-ext2.patch ) + +src_prepare() { + default + eautoconf +} + +src_configure() { + econf \ + $(use_with bzip2) \ + --disable-static +} + +src_install() { + default + prune_libtool_files +} |