Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/busybox: busybox-1.12.2-r1.ebuild
Date: Sun, 23 Nov 2008 15:02:47
Message-Id: E1L4GU0-0007J3-As@stork.gentoo.org
1 vapier 08/11/23 15:02:44
2
3 Modified: busybox-1.12.2-r1.ebuild
4 Log:
5 make option setting a bit more readable and disable a few more daemons
6 (Portage version: 2.2_rc14/cvs/Linux 2.6.27.4 x86_64)
7
8 Revision Changes Path
9 1.2 sys-apps/busybox/busybox-1.12.2-r1.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild?r1=1.1&r2=1.2
14
15 Index: busybox-1.12.2-r1.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- busybox-1.12.2-r1.ebuild 21 Nov 2008 00:14:05 -0000 1.1
22 +++ busybox-1.12.2-r1.ebuild 23 Nov 2008 15:02:44 -0000 1.2
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2008 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.1 2008/11/21 00:14:05 matsuu Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/busybox-1.12.2-r1.ebuild,v 1.2 2008/11/23 15:02:44 vapier Exp $
28
29 inherit eutils flag-o-matic savedconfig toolchain-funcs
30
31 @@ -75,7 +75,7 @@
32 return 0
33 ;;
34 esac
35 - einfo $(grep "CONFIG_$2[= ]" .config)
36 + einfo $(grep "CONFIG_$2[= ]" .config || echo Could not find CONFIG_$2 ...)
37 }
38
39 src_unpack() {
40 @@ -147,10 +147,21 @@
41 busybox_config_option selinux SELINUX
42
43 # default a bunch of uncommon options to off
44 - for opt in LOCALE_SUPPORT TFTP FTP{GET,PUT} IPCALC TFTP HUSH \
45 - LASH MSH INETD DPKG RPM2CPIO RPM FOLD LOGNAME OD CRONTAB \
46 - UUDECODE UUENCODE SULOGIN DC DEBUG_YANK_SUSv2 DEBUG_INIT \
47 - DEBUG_CROND_OPTION FEATURE_UDHCP_DEBUG TASKSET INOTIFYD
48 + local opt
49 + for opt in \
50 + APP_UDHCPD \
51 + CRONTAB \
52 + DC DEBUG_CROND_OPTION DEBUG_INIT DPKG \
53 + FAKEIDENTD FBSPLASH FEATURE_UDHCP_DEBUG FOLD FTP{GET,PUT} \
54 + HTTPD HUSH \
55 + INETD INOTIFYD IPCALC \
56 + LASH LOCALE_SUPPORT LOGNAME \
57 + MSH \
58 + OD \
59 + SULOGIN \
60 + TASKSET TFTP{,D} \
61 + RPM RPM2CPIO \
62 + UDPSVD UUDECODE UUENCODE
63 do
64 busybox_config_option n ${opt}
65 done