X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-pa0-f51.google.com (mail-pa0-f51.google.com [209.85.220.51]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id AB70EDC010D for ; Sat, 5 Jul 2014 01:10:45 +0000 (UTC) Received: by mail-pa0-f51.google.com with SMTP id hz1so2552743pad.24 for ; Fri, 04 Jul 2014 18:10:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=eem2Oi4/H7Hd7fMss5WU12XbZnGADUTEFYRK6NPB/7U=; b=BHzKIu+ShL2UzDgVpDw25qT3Yox3fJTd4q2XfRGFXIVg3wImFkoKHwhQVPb2xg8PTb yfIbO7SYe4HJPIS8Qm9HVwGTO37ar/hEPOCDrZ9bF2dXjUqtcXKO9gCCVmj7mfHdX/3z UQWsmRABLxqJoHw1LPVxKBVpcx5Gs50MpDdatgIAu854PWhJTw/xEDs7emrsJtSZmw8p c1/iuUe6A6bBkTgOga/ej5Z0UGnNYISVcO7V6A1gEeaBndDp6eUnFRKlM5Mf73EXeRP4 x4sWV49kdZz2nCXU27VDf8agwZ4kFYgSS9zZZOtaPHabEUjtDW9hrEvv2n6g3LVSlp6A RN3g== X-Received: by 10.66.228.133 with SMTP id si5mr13905130pac.48.1404522644642; Fri, 04 Jul 2014 18:10:44 -0700 (PDT) Received: from localhost.localdomain ([50.0.227.219]) by mx.google.com with ESMTPSA id z5sm10574595pdl.56.2014.07.04.18.10.43 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 04 Jul 2014 18:10:44 -0700 (PDT) From: Isaac Dunham To: alpine-devel@lists.alpinelinux.org Cc: Isaac Dunham Subject: [alpine-devel] [PATCH] testing/icewm: make menu useable by default Date: Fri, 4 Jul 2014 18:10:21 -0700 Message-Id: <1404522621-6235-1-git-send-email-ibid.ag@gmail.com> X-Mailer: git-send-email 2.0.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: * Add the more typical terminal emulators to the default menu * use Firefox/Midori instead of Mozilla This way, users are able to at least get a command line, and standard browsers show up. Icewm will search $PATH for the command at startup, and only shows it if the command is present. --- testing/icewm/APKBUILD | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/testing/icewm/APKBUILD b/testing/icewm/APKBUILD index 7a4d36e..9fcd7f8 100644 --- a/testing/icewm/APKBUILD +++ b/testing/icewm/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Isaac Dunham pkgname=icewm pkgver=1.3.8 -pkgrel=2 +pkgrel=3 pkgdesc="A lightweight Win95/Motif-style window manager in C++" url="http://www.icewm.org" arch="all" @@ -47,6 +47,12 @@ package() { cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 rm -f "$pkgdir"/usr/lib/*.la + sed -e 's/rxvt/urxvt/g' \ + -e 's/\(prog xterm.*\)/\1\nprog Terminal xterm xfce4-terminal/' \ + -e 's/\(prog xterm.*\)/\1\nprog st xterm st/' \ + -e 's/\(prog xterm.*\)/\1\nprog mrxvt xterm mrxvt/' \ + -e 's/prog Mozil.*/\nprog Firefox mozilla firefox\nprog Midori midori midori/' \ + -i "$pkgdir"/usr/share/icewm/menu } doc() { cd "$_builddir" -- 2.0.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---