X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 85263DC04C6 for ; Thu, 27 Jun 2013 06:12:51 +0000 (UTC) Received: from compute4.internal (compute4.nyi.mail.srv.osa [10.202.2.44]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id F1A0B2070F for ; Thu, 27 Jun 2013 02:12:50 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute4.internal (MEProxy); Thu, 27 Jun 2013 02:12:50 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id; s= smtpout; bh=HinVzi32e7pQXcq7zZ71tBnE0HA=; b=dIkexa+g8yJhMy3omGHE ZyaGEBAb/ZO5cY5dzk0iGujpiNKyIbHr3nOgMeBhNB5wSfsBRNxoxGU2h03M2xKC yqGqUGfh7H6VqT8RCHz8jsEtqF1OKWoQ2tYLbc0nJi810Hhns8/AdutlQQlokFll gFcoFcWhRdGOjBnmzLnHXdc= X-Sasl-enc: /MTodJeMMxUMEY6xvw8FFVnn70cspCnTEpH6KzjzbnPI 1372313570 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id A29A9680475 for ; Thu, 27 Jun 2013 02:12:50 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 1/4] main/rxvt-unicode: fix makedepends Date: Thu, 27 Jun 2013 02:12:47 -0400 Message-Id: X-Mailer: git-send-email 1.8.3.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: ncurses is needed for its /usr/bin/tic. The Changes file says in the entry for v9.10 that fontconfig and xrender are needed for Xft support; we compile with --enable-xft and required libxft-dev and libxrender-dev, but omitted fontconfig-dev. --- main/rxvt-unicode/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/rxvt-unicode/APKBUILD b/main/rxvt-unicode/APKBUILD index ad307f5..2ceed66 100644 --- a/main/rxvt-unicode/APKBUILD +++ b/main/rxvt-unicode/APKBUILD @@ -8,7 +8,7 @@ arch=all url='http://software.schmorp.de/pkg/rxvt-unicode.html' license='GPL' depends= -makedepends="libx11-dev libxft-dev gdk-pixbuf-dev libxrender-dev perl-dev" +makedepends="libx11-dev libxft-dev ncurses fontconfig-dev gdk-pixbuf-dev libxrender-dev perl-dev" source="http://dist.schmorp.de/rxvt-unicode/$pkgname-$pkgver.tar.bz2 rxvt-unicode-kerning.patch" -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---