X-Original-To: alpine-aports@lists.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail-wg0-f43.google.com (mail-wg0-f43.google.com [74.125.82.43]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id DDCD0DC011D for ; Thu, 15 Jan 2015 11:42:14 +0000 (UTC) Received: by mail-wg0-f43.google.com with SMTP id k14so14372595wgh.2 for ; Thu, 15 Jan 2015 03:42:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=4qNtbscY30pnencUbhQHZfwf5WRkIKb1blyb79uLsYY=; b=o4c0L4tCE3a+PLVVygEp2cfzW4PFKHgjs/bjpJqz+yhvTX5CF+SonqwXUBLeJ9NQuj IyOzDyoeG2GeddbbWDpNXvs+TDI9dx6E9AOrLTT/6UEgdqkyRcrGPz9Dk7oEyhxIhX8q WQSpHIZ38E265/yWhWBJ+2MQ/c1yAW/MS5gpaP8QAKJaXacnZY/C2DWdEY1ZMeEbzLS4 MiJ1gYB0/4wPu2b3zMs5q10jQFVPy1Acxp4GZa9sgOapn7WSYblkN3e+pHZR9Lil3Atz dtSK9V9TTMq3h8OPtEL+X15lmf5EcAsT55RhoiczFsWcXRJNdsi4tXQcaA9GTyga2M8v hA9A== X-Received: by 10.181.9.107 with SMTP id dr11mr1622130wid.22.1421322133127; Thu, 15 Jan 2015 03:42:13 -0800 (PST) Received: from alpine.my.domain (84.127.141.73.dyn.user.ono.com. [84.127.141.73]) by mx.google.com with ESMTPSA id l9sm22413376wic.21.2015.01.15.03.42.12 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 15 Jan 2015 03:42:12 -0800 (PST) From: AmatCoder To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] main/glade: disable RANDMMAP Date: Thu, 15 Jan 2015 11:37:12 +0000 Message-Id: <1421321832-22408-1-git-send-email-amatcoder@gmail.com> X-Mailer: git-send-email 2.2.2 X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: This allows to add items under Hierarchy tabs. --- main/glade/APKBUILD | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main/glade/APKBUILD b/main/glade/APKBUILD index 3f6a35e..d32929a 100644 --- a/main/glade/APKBUILD +++ b/main/glade/APKBUILD @@ -1,13 +1,13 @@ # Maintainer: Natanael Copa pkgname=glade pkgver=3.18.3 -pkgrel=0 +pkgrel=1 pkgdesc="User Interface Designer for GTK+ and GNOME" url="http://glade.gnome.org/" arch="all" license="GPL" depends= -makedepends="gtk+3.0-dev libxml2-dev itstool gtk-doc" +makedepends="gtk+3.0-dev libxml2-dev itstool gtk-doc paxctl" install= subpackages="$pkgname-dev $pkgname-doc" source="http://ftp.gnome.org/pub/GNOME/sources/glade/${pkgver%.*}/glade-$pkgver.tar.xz @@ -42,6 +42,7 @@ build() { package() { cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 + paxctl -c -r "$pkgdir"/usr/bin/glade find "$pkgdir" -name '*.la' -delete } -- 2.2.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---