X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 262B6DC737C for ; Thu, 11 Feb 2016 15:18:02 +0000 (UTC) Received: from lithium.8pit.net (lithium.8pit.net [81.4.121.103]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 8067BDC0994; Thu, 11 Feb 2016 15:18:00 +0000 (UTC) Received: from localhost (ip5f5ac9e1.dynamic.kabel-deutschland.de [95.90.201.225]) by lithium.8pit.net (OpenSMTPD) with ESMTPSA id 5d4ac4ce TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Thu, 11 Feb 2016 16:17:58 +0100 (CET) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] main/pax-utils: compile with libcap support Date: Thu, 11 Feb 2016 16:17:53 +0100 Message-Id: <1455203873-26467-1-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.7.1 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- main/pax-utils/APKBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main/pax-utils/APKBUILD b/main/pax-utils/APKBUILD index 8a45e5f..88cbfef 100644 --- a/main/pax-utils/APKBUILD +++ b/main/pax-utils/APKBUILD @@ -2,13 +2,13 @@ # Maintainer: Natanael Copa pkgname=pax-utils pkgver=1.1.5 -pkgrel=0 +pkgrel=1 pkgdesc="ELF related utils for ELF 32/64 binaries" url="https://wiki.gentoo.org/wiki/Hardened/PaX_Utilities" arch="all" license="GPL2" depends="scanelf" -makedepends="linux-headers" +makedepends="linux-headers libcap-dev" source="http://distfiles.gentoo.org/distfiles/${pkgname}-${pkgver}.tar.xz" subpackages="$pkgname-doc scanelf:_scanelf" @@ -24,7 +24,7 @@ prepare() { build() { cd "$_builddir" - make || return 1 + make USE_CAP=yes || return 1 } package() { -- 2.7.1 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---