buildroot: remove trailing spaces

for i in `find -name 'Config*' -o -name 'Makefile*' -o -name '*.mk'`;
do
	sed -i 's/ \+$//' $i;
done
This commit is contained in:
Peter Korsgaard 2008-08-04 19:07:05 +00:00
parent fa0ac2de33
commit 02a623ddf9
119 changed files with 244 additions and 244 deletions

View File

@ -207,9 +207,9 @@ choice
config BR2_DEBUG_1
bool "debug level 1"
help
Debug level 1 produces minimal information, enough
for making backtraces in parts of the program that
you don't plan to debug. This includes descriptions
Debug level 1 produces minimal information, enough
for making backtraces in parts of the program that
you don't plan to debug. This includes descriptions
of functions and external variables, but no information
about local variables and no line numbers.
@ -221,7 +221,7 @@ config BR2_DEBUG_2
config BR2_DEBUG_3
bool "debug level 3"
help
Level 3 includes extra information, such as all the
Level 3 includes extra information, such as all the
macro definitions present in the program. Some debuggers
support macro expansion when you use -g3.
endchoice
@ -266,41 +266,41 @@ config BR2_OPTIMIZE_0
bool "optimization level 0"
depends on !BR2_PACKAGE_LINUX
help
Do not optimize. This is the default.
Do not optimize. This is the default.
config BR2_OPTIMIZE_1
bool "optimization level 1"
depends on !BR2_PACKAGE_LINUX
help
Optimize. Optimizing compilation takes somewhat more time,
and a lot more memory for a large function. With -O, the
compiler tries to reduce code size and execution time,
without performing any optimizations that take a great deal
of compilation time. -O turns on the following optimization
flags: -fdefer-pop -fdelayed-branch -fguess-branch-probability
-fcprop-registers -floop-optimize -fif-conversion
-fif-conversion2 -ftree-ccp -ftree-dce -ftree-dominator-opts
-ftree-dse -ftree-ter -ftree-lrs -ftree-sra -ftree-copyrename
Optimize. Optimizing compilation takes somewhat more time,
and a lot more memory for a large function. With -O, the
compiler tries to reduce code size and execution time,
without performing any optimizations that take a great deal
of compilation time. -O turns on the following optimization
flags: -fdefer-pop -fdelayed-branch -fguess-branch-probability
-fcprop-registers -floop-optimize -fif-conversion
-fif-conversion2 -ftree-ccp -ftree-dce -ftree-dominator-opts
-ftree-dse -ftree-ter -ftree-lrs -ftree-sra -ftree-copyrename
-ftree-fre -ftree-ch -funit-at-a-time -fmerge-constants
-O also turns on -fomit-frame-pointer on machines where doing
-O also turns on -fomit-frame-pointer on machines where doing
so does not interfere with debugging.
config BR2_OPTIMIZE_2
bool "optimization level 2"
help
Optimize even more. GCC performs nearly all supported optimizations
that do not involve a space-speed tradeoff. The compiler does not
perform loop unrolling or function inlining when you specify -O2.
As compared to -O, this option increases both compilation time and
the performance of the generated code. -O2 turns on all optimization
flags specified by -O. It also turns on the following optimization
flags: -fthread-jumps -fcrossjumping -foptimize-sibling-calls
-fcse-follow-jumps -fcse-skip-blocks -fgcse -fgcse-lm
-fexpensive-optimizations -fstrength-reduce -frerun-cse-after-loop
-frerun-loop-opt -fcaller-saves -fpeephole2 -fschedule-insns
-fschedule-insns2 -fsched-interblock -fsched-spec -fregmove
-fstrict-aliasing -fdelete-null-pointer-checks -freorder-blocks
-freorder-functions -falign-functions -falign-jumps -falign-loops
that do not involve a space-speed tradeoff. The compiler does not
perform loop unrolling or function inlining when you specify -O2.
As compared to -O, this option increases both compilation time and
the performance of the generated code. -O2 turns on all optimization
flags specified by -O. It also turns on the following optimization
flags: -fthread-jumps -fcrossjumping -foptimize-sibling-calls
-fcse-follow-jumps -fcse-skip-blocks -fgcse -fgcse-lm
-fexpensive-optimizations -fstrength-reduce -frerun-cse-after-loop
-frerun-loop-opt -fcaller-saves -fpeephole2 -fschedule-insns
-fschedule-insns2 -fsched-interblock -fsched-spec -fregmove
-fstrict-aliasing -fdelete-null-pointer-checks -freorder-blocks
-freorder-functions -falign-functions -falign-jumps -falign-loops
-falign-labels -ftree-vrp -ftree-pre
Please note the warning under -fgcse about invoking -O2 on programs
that use computed gotos.
@ -308,20 +308,20 @@ config BR2_OPTIMIZE_2
config BR2_OPTIMIZE_3
bool "optimization level 3"
help
Optimize yet more. -O3 turns on all optimizations specified by -O2
and also turns on the -finline-functions, -funswitch-loops and
Optimize yet more. -O3 turns on all optimizations specified by -O2
and also turns on the -finline-functions, -funswitch-loops and
-fgcse-after-reload options.
config BR2_OPTIMIZE_S
bool "optimize for size"
help
Optimize for size. -Os enables all -O2 optimizations that do not
Optimize for size. -Os enables all -O2 optimizations that do not
typically increase code size. It also performs further optimizations
designed to reduce code size. -Os disables the following optimization
flags: -falign-functions -falign-jumps -falign-loops -falign-labels
designed to reduce code size. -Os disables the following optimization
flags: -falign-functions -falign-jumps -falign-loops -falign-labels
-freorder-blocks -freorder-blocks-and-partition -fprefetch-loop-arrays
-ftree-vect-loop-version
endchoice
config BR2_PREFER_STATIC_LIB

View File

@ -260,7 +260,7 @@ TARGETS+=target-devfiles
# target stuff is last so it can override anything else
include target/Makefile.in
TARGETS+=erase-fakeroots
TARGETS+=erase-fakeroots
TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS) $(BASE_TARGETS))
@ -337,10 +337,10 @@ ifeq ($(BR2_HAVE_DEVFILES),y)
( scripts/copy.sh $(STAGING_DIR) $(TARGET_DIR) )
else
rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/lib/pkgconfig
find $(TARGET_DIR)/usr/lib -name '*.a' -delete
find $(TARGET_DIR)/lib -name '*.a' -delete
find $(TARGET_DIR)/usr/lib -name '*.la' -delete
find $(TARGET_DIR)/lib -name '*.la' -delete
find $(TARGET_DIR)/usr/lib -name '*.a' -delete
find $(TARGET_DIR)/lib -name '*.a' -delete
find $(TARGET_DIR)/usr/lib -name '*.la' -delete
find $(TARGET_DIR)/lib -name '*.la' -delete
endif
source: $(TARGETS_SOURCE) $(HOST_SOURCE)
@ -485,7 +485,7 @@ prepatch: gcc-patched binutils-patched gdb-patched uclibc-patched
log: .lognr.$(PROJECT)
@expr `cat .lognr.$(PROJECT)` + 1 > .lognr.$(PROJECT)
@echo Creating $(PROJECT)-`cat .lognr.$(PROJECT)`.log
@$(MAKE) > $(PROJECT)-`cat .lognr.$(PROJECT)`.log 2>&1
@$(MAKE) > $(PROJECT)-`cat .lognr.$(PROJECT)`.log 2>&1
cross: $(BASE_TARGETS)

View File

@ -32,7 +32,7 @@ endif
# bool "Common Applications"
# default y
# help
# A set of applications, utilities and libraries for
# A set of applications, utilities and libraries for
# text processing, toolchain generation and other things.

View File

@ -157,7 +157,7 @@ $(BUILD_DIR)/%/.stamp_extracted:
# if the package uses libtool, patch it for cross-compiling in buildroot
for i in `find $(@D) -name ltmain.sh`; do \
toolchain/patch-kernel.sh $${i%/*} package buildroot-libtool.patch; \
done
done
$(Q)touch $@
# Patch

View File

@ -15,6 +15,6 @@ ACE_OF_PENGUINS_CONF_OPT = --target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) --build=$(GNU_HOST_NAME) \
--prefix=/usr --sysconfdir=/etc
ACE_OF_PENGUINS_DEPENDENCIES = uclibc libpng $(XSERVER)
ACE_OF_PENGUINS_DEPENDENCIES = uclibc libpng $(XSERVER)
$(eval $(call AUTOTARGETS,package,ace_of_penguins))

View File

@ -9,7 +9,7 @@ ATK_SITE = ftp://ftp.gtk.org/pub/gtk/v2.10/dependencies
ATK_AUTORECONF = NO
ATK_INSTALL_STAGING = YES
ATK_INSTALL_TARGET = YES
ATK_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
ATK_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
ATK_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes \
glib_cv_stack_grows=no glib_cv_uscore=no \
@ -40,7 +40,7 @@ ATK_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes \
gl_cv_func_mkstemp_limitations=no ac_cv_func_working_mktime=yes \
jm_cv_func_working_re_compile_pattern=yes ac_use_included_regex=no \
gl_cv_c_restrict=no ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal \
ac_cv_prog_F77=no ac_cv_prog_CXX=no
ac_cv_prog_F77=no ac_cv_prog_CXX=no
ifneq ($(BR2_PACKAGE_XSERVER_none),y)
ATK_CONF_OPT_X = --with-x \
@ -60,7 +60,7 @@ ATK_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(REAL_GNU_TARGET_NAME) \
--infodir=/usr/info --enable-shared \
--enable-static $(ATK_CONF_OPT_X) \
--disable-glibtest --enable-explicit-deps=no \
--disable-debug
--disable-debug
ATK_DEPENDENCIES = libglib2 pkgconfig

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_AUTOCONF
bool "autoconf"
help
Extensible program for developing configure scripts. These
Extensible program for developing configure scripts. These
scripts handle all the mundane system/feature detection.
http://www.gnu.org/software/autoconf/

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_AUTOMAKE
bool "automake"
help
Tool for automatically generating Makefile's for input to
Tool for automatically generating Makefile's for input to
configure scripts (made by autoconf).
http://www.gnu.org/software/automake/

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_BERKELEYDB
bool "berkeleydb"
help
The Berkeley database. A very common library for database
The Berkeley database. A very common library for database
applications.
http://www.sleepycat.com/products/db.shtml

View File

@ -8,7 +8,7 @@ config BR2_PACKAGE_BIND
* a Domain Name System server (named)
* a Domain Name System resolver library
* tools for verifying the proper operation of the DNS server
* tools for verifying the proper operation of the DNS server
The BIND DNS Server is used on the vast majority of name
serving machines on the Internet, providing a robust and
@ -16,6 +16,6 @@ config BR2_PACKAGE_BIND
architecture can be built. The resolver library included in
the BIND distribution provides the standard APIs for
translation between domain names and Internet addresses and is
intended to be linked with applications requiring name service.
intended to be linked with applications requiring name service.
http://www.isc.org/sw/bind/

View File

@ -1,8 +1,8 @@
config BR2_PACKAGE_BISON
bool "bison"
help
General-purpose parser generator that converts a
grammar description for an LALR context-free grammar into a C
General-purpose parser generator that converts a
grammar description for an LALR context-free grammar into a C
program to parse that grammar.
http://www.gnu.org/software/bison/

View File

@ -15,7 +15,7 @@ BLACKBOX_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
BLACKBOX_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) --prefix=/usr \
--sysconfdir=/etc --x-includes=$(STAGING_DIR)/usr/include/X11 \
--x-libraries=$(STAGING_DIR)/usr/lib
--x-libraries=$(STAGING_DIR)/usr/lib
BLACKBOX_DEPENDENCIES = uclibc $(XSERVER)

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_BOA
bool "boa"
help
A very small and very fast http daemon. Not intended as
A very small and very fast http daemon. Not intended as
a feature-packed server.
http://www.boa.org/

View File

@ -1,9 +1,9 @@
config BR2_PACKAGE_BOOTUTILS
bool "bootutils"
help
BootUtils is a collection of utilities to facilitate booting of
Linux 2.6-based systems. The process of finding the root volume
either by label or explicit label= on the kernel command line,
BootUtils is a collection of utilities to facilitate booting of
Linux 2.6-based systems. The process of finding the root volume
either by label or explicit label= on the kernel command line,
mounting it, and 'switchroot'ing is automated.
http://bootutils.pr.linuxrulz.org/

View File

@ -1,9 +1,9 @@
config BR2_PACKAGE_BZIP2
bool "bzip2"
help
Freely available, patent free, high-quality data compressor.
It typically compresses files to within 10% to 15% of the best
available techniques, while being around twice as fast at
Freely available, patent free, high-quality data compressor.
It typically compresses files to within 10% to 15% of the best
available techniques, while being around twice as fast at
compression and six times faster at decompression.
http://sources.redhat.com/bzip2/

View File

@ -9,7 +9,7 @@ CAIRO_SITE = http://cairographics.org/releases
CAIRO_AUTORECONF = NO
CAIRO_INSTALL_STAGING = YES
CAIRO_INSTALL_TARGET = YES
CAIRO_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
CAIRO_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
CAIRO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
glib_cv_uscore=no ac_cv_func_strtod=yes \
@ -39,13 +39,13 @@ CAIRO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
gl_cv_func_mkdir_trailing_slash_bug=no gl_cv_func_mkstemp_limitations=no \
ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
ac_use_included_regex=no gl_cv_c_restrict=no \
ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal
ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal
ifeq ($(BR2_PACKAGE_DIRECTFB),y)
CAIRO_CONF_OPT = --disable-xlib --without-x --enable-directfb
CAIRO_DEPENDENCIES_EXTRA = directfb
endif
CAIRO_DEPENDENCIES = uclibc gettext libintl pkgconfig libglib2 zlib png fontconfig $(CAIRO_DEPENDENCIES_EXTRA) $(XSERVER)
CAIRO_DEPENDENCIES = uclibc gettext libintl pkgconfig libglib2 zlib png fontconfig $(CAIRO_DEPENDENCIES_EXTRA) $(XSERVER)
$(eval $(call AUTOTARGETS,package,cairo))

View File

@ -3,8 +3,8 @@ config BR2_PACKAGE_COREUTILS
depends on BR2_USE_WCHAR
select BR2_UCLIBC_PROGRAM_INVOCATION
help
All of the basic file/text/shell utilities. These are the
core utilities which are expected to exist on every system.
All of the basic file/text/shell utilities. These are the
core utilities which are expected to exist on every system.
Busybox implements many of the most common.
Things like:

View File

@ -1,8 +1,8 @@
config BR2_PACKAGE_DISTCC
bool "distcc"
help
Distributed compiler client and server. Allows you to
distribute compilation of C code across several machines
Distributed compiler client and server. Allows you to
distribute compilation of C code across several machines
on a network.
http://distcc.samba.org/

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_DNSMASQ
bool "dnsmasq"
help
A lightweight DNS and DHCP server. It is intended to provide
A lightweight DNS and DHCP server. It is intended to provide
coupled DNS and DHCP service to a LAN.
http://www.thekelleys.org.uk/dnsmasq/

View File

@ -21,7 +21,7 @@ DOCKER_MAKE_OPT = CC=$(TARGET_CC) CXX=$(TARGET_CXX) LD=$(TARGET_LD) \
DOCKER_INSTALL_TARGET_OPT = PREFIX=$(TARGET_DIR)/usr install
DOCKER_DEPENDENCIES = uclibc
DOCKER_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,docker))

View File

@ -1,8 +1,8 @@
config BR2_PACKAGE_ED
bool "ed"
help
A line-oriented text editor. Used to create, display, modify,
and otherwise manipulate text files. Often used in scripts
A line-oriented text editor. Used to create, display, modify,
and otherwise manipulate text files. Often used in scripts
rather than invoked directly.
http://www.gnu.org/software/ed/

View File

@ -2,7 +2,7 @@ config BR2_PACKAGE_NANO
bool "nano"
select BR2_PACKAGE_NCURSES
help
A nice ncurses-based editor. Started out as a clone of pico.
A nice ncurses-based editor. Started out as a clone of pico.
Great editor for new users.
http://www.nano-editor.org/

View File

@ -11,7 +11,7 @@ SPEECH_TOOLS_INSTALL_STAGING = NO
SPEECH_TOOLS_INSTALL_TARGET = YES
SPEECH_TOOLS_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) STRIP=$(TARGET_STRIP) install
SPEECH_TOOLS_CONF_OPT =
SPEECH_TOOLS_CONF_OPT =
SPEECH_TOOLS_MAKE_OPT = CC=$(TARGET_CC) CXX=$(TARGET_CXX)
SPEECH_TOOLS_DEPENDENCIES = uclibc ncurses

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_FILE
bool "file"
help
Program to identify a file's format by scanning binary data
Program to identify a file's format by scanning binary data
for known patterns.
ftp://ftp.astron.com/pub/file/

View File

@ -2,7 +2,7 @@ config BR2_PACKAGE_FINDUTILS
bool "findutils"
depends on BR2_USE_WCHAR
help
Basic directory searching utilities. Provides the
Basic directory searching utilities. Provides the
common 'find', 'xargs', 'locate', and 'updatedb' binaries.
http://www.gnu.org/software/findutils/findutils.html

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_FLEX
bool "flex"
help
A fast lexical analyser generator. A tool for generating
A fast lexical analyser generator. A tool for generating
programs that perform pattern-matching on text.
http://www.gnu.org/software/flex/

View File

@ -18,6 +18,6 @@ FLTK_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) --prefix=/usr \
--sysconfdir=/etc --enable-shared --enable-threads --with-x
FLTK_DEPENDENCIES = uclibc $(XSERVER)
FLTK_DEPENDENCIES = uclibc $(XSERVER)
$(eval $(call AUTOTARGETS,package,fltk))

View File

@ -2,8 +2,8 @@ config BR2_PACKAGE_GAWK
bool "gawk"
depends on BR2_USE_WCHAR
help
A special-purpose programming language which is data driven
rather than procedural. Allows for simple data-reformatting jobs
A special-purpose programming language which is data driven
rather than procedural. Allows for simple data-reformatting jobs
with just a few lines of code.
http://www.gnu.org/software/gawk/

View File

@ -12,7 +12,7 @@ GNUCHESS_INSTALL_TARGET = YES
GNUCHESS_CONF_ENV = ac_cv_func_realloc_0_nonnull=yes ac_cv_func_malloc_0_nonnull=yes
GNUCHESS_DEPENDENCIES = uclibc
GNUCHESS_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,gnuchess))

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_GZIP
bool "gzip"
help
Standard GNU compressor. Provides things like gzip,
Standard GNU compressor. Provides things like gzip,
gunzip, gzcat, etc...
http://www.gnu.org/software/gzip/gzip.html

View File

@ -3,7 +3,7 @@ config BR2_PACKAGE_HOSTAP
depends on BR2_DEPRECATED
select BR2_PACKAGE_PCMCIA
help
Linux driver for wireless LAN cards based on Intersil's
Linux driver for wireless LAN cards based on Intersil's
Prism2/2.5/3 chipset.
http://hostap.epitest.fi/

View File

@ -51,7 +51,7 @@ $(ICU_HOST_DIR)/.done: $(ICU_DIR)/.configured
touch $(ICU_HOST_DIR)/.done
$(ICU_DIR)/.done: $(ICU_HOST_DIR)/.done
$(MAKE) -C $(ICU_DIR)
$(MAKE) -C $(ICU_DIR)
$(MAKE) -C $(ICU_DIR) install DESTDIR=$(STAGING_DIR)
$(MAKE) -C $(ICU_DIR) install DESTDIR=$(TARGET_DIR)
$(SED) "s,^default_prefix=.*,default_prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/icu-config

View File

@ -12,8 +12,8 @@ IPKG_INSTALL_STAGING = YES
IPKG_INSTALL_TARGET = YES
IPKG_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) --prefix=/usr --sysconfdir=/etc
--build=$(GNU_HOST_NAME) --prefix=/usr --sysconfdir=/etc
IPKG_DEPENDENCIES = uclibc
IPKG_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,ipkg))

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_IPROUTE2
bool "iproute2"
help
Kernel routing and traffic control utilities. Provides things
Kernel routing and traffic control utilities. Provides things
like ip and tc.
http://developer.osdl.org/dev/iproute2/

View File

@ -19,13 +19,13 @@ config BR2_PACKAGE_IPSEC_TOOLS_NATT
depends on BR2_PACKAGE_IPSEC_TOOLS
bool "Enable NAT-Traversal"
help
This needs kernel support, which is available on Linux. On
NetBSD, NAT-Traversal kernel support has not been integrated
yet, you can get it from here:
This needs kernel support, which is available on Linux. On
NetBSD, NAT-Traversal kernel support has not been integrated
yet, you can get it from here:
http://ipsec-tools.sourceforge.net/netbsd_nat-t.diff If you
http://ipsec-tools.sourceforge.net/netbsd_nat-t.diff If you
live in a country where software patents are legal, using
live in a country where software patents are legal, using
NAT-Traversal might infringe a patent.

View File

@ -37,7 +37,7 @@ config IRDA_TEKRAM
config IRDA_SMCINIT
bool "support toshiba-laptops"
help
Some Toshiba Laptops have buggy BIOSes which didn't initialize
Some Toshiba Laptops have buggy BIOSes which didn't initialize
Irda. This may help those.
endif

View File

@ -9,7 +9,7 @@ CLASSPATH_SITE = $(BR2_GNU_MIRROR)/classpath
CLASSPATH_AUTORECONF = NO
CLASSPATH_INSTALL_STAGING = YES
CLASSPATH_INSTALL_TARGET = YES
CLASSPATH_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
CLASSPATH_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
CLASSPATH_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
CLASSPATH_DIR_PREFIX = package/java
@ -42,7 +42,7 @@ CLASSPATH_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
ac_use_included_regex=no gl_cv_c_restrict=no \
ac_cv_path_GLIB_GENMARSHAL=/usr/bin/glib-genmarshal \
ac_cv_prog_F77=no ac_cv_prog_CXX=no ac_cv_path_CUPS_CONFIG=no
ac_cv_prog_F77=no ac_cv_prog_CXX=no ac_cv_path_CUPS_CONFIG=no
CLASSPATH_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
@ -63,21 +63,21 @@ CLASSPATH_DEPENDENCIES = uclibc pkgconfig png jpeg tiff
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
CLASSPATH_DEPENDENCIES+= alsa-lib
CLASSPATH_CONF_OPT+= --enable-alsa
else
else
CLASSPATH_CONF_OPT+= --disable-alsa
endif
ifeq ($(BR2_PACKAGE_QTOPIA4),y)
CLASSPATH_DEPENDENCIES+= qtopia4
CLASSPATH_CONF_OPT+= --enable-qt-peer
else
else
CLASSPATH_CONF_OPT+= --disable-qt-peer
endif
ifeq ($(BR2_PACKAGE_LIBGTK2),y)
CLASSPATH_DEPENDENCIES+= libgtk2
CLASSPATH_CONF_OPT+= --enable-gtk-peer
else
else
CLASSPATH_CONF_OPT+= --disable-gtk-peer
endif
@ -87,7 +87,7 @@ ifneq ($(BR2_PACKAGE_XSERVER_none),y)
--x-includes=$(STAGING_DIR)/usr/include/X11 \
--x-libraries=$(STAGING_DIR)/usr/lib
else
CLASSPATH_CONF_OPT+= --without-x
CLASSPATH_CONF_OPT+= --without-x
endif

View File

@ -23,7 +23,7 @@ $(TARGET_DIR)/usr/lib/concierge/: $(DL_DIR)/concierge
cp -dpf package/concierge/files/init.xargs $(TARGET_DIR)/usr/lib/concierge/
touch -c $@
$(TARGET_DIR)/usr/bin/concierge:
$(TARGET_DIR)/usr/bin/concierge:
cp -dpf package/concierge/files/concierge $(TARGET_DIR)/usr/bin/
chmod +x $(TARGET_DIR)/usr/bin/concierge
touch -c $@

View File

@ -3,7 +3,7 @@ config BR2_PACKAGE_JAMVM
depends on BR2_PACKAGE_CLASSPATH
select BR2_PACKAGE_PKGCONFIG
help
JamVM is a new Java Virtual Machine which conforms to
the JVM specification version 2 (blue book).
JamVM is a new Java Virtual Machine which conforms to
the JVM specification version 2 (blue book).
http://jamvm.sourceforge.net/

View File

@ -41,7 +41,7 @@ JAMVM_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
ac_use_included_regex=no gl_cv_c_restrict=no \
ac_cv_path_GLIB_GENMARSHAL=/usr/bin/glib-genmarshal \
ac_cv_prog_F77=no ac_cv_prog_CXX=no ac_cv_path_CUPS_CONFIG=no
ac_cv_prog_F77=no ac_cv_prog_CXX=no ac_cv_path_CUPS_CONFIG=no
JAMVM_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) --prefix=/usr \

View File

@ -1,6 +1,6 @@
config BR2_PACKAGE_KISMET
bool "kismet"
select BR2_PACKAGE_NCURSES
select BR2_PACKAGE_NCURSES
select BR2_PACKAGE_LIBPCAP
select BR2_PACKAGE_DBUS
select BR2_PACKAGE_DBUS_GLIB
@ -13,5 +13,5 @@ config BR2_PACKAGE_KISMET
Kismet identifies networks by passively collecting packets and detecting standard named
networks, detecting (and given time, decloaking) hidden networks, and infering the presence
of nonbeaconing networks via data traffic.
of nonbeaconing networks via data traffic.

View File

@ -1,11 +1,11 @@
config BR2_PACKAGE_LIBCGI
bool "libcgi"
help
LibCGI is a library written from scratch to easily make
LibCGI is a library written from scratch to easily make
CGI applications in C.
There are a lot of functions like string manipulation,
session and cookie support, GET and POST methods manipulation
There are a lot of functions like string manipulation,
session and cookie support, GET and POST methods manipulation
etc..., to help you to quickly write powerful CGI programs.
http://libcgi.sourceforge.net/

View File

@ -2,7 +2,7 @@ config BR2_PACKAGE_LIBDAEMON
bool "libdaemon"
select BR2_PACKAGE_PKGCONFIG
help
libdaemon is a lightweight C library that eases the
libdaemon is a lightweight C library that eases the
writing of UNIX daemons.
http://0pointer.de/lennart/projects/libdaemon/

View File

@ -4,7 +4,7 @@ config BR2_PACKAGE_LIBEXOSIP2
GNU Higher level SIP (Session Initiation Protocol)
This library aims to provide multimedia and telecom software
developers an easy and powerful interface to initiate and
control SIP based sessions in their applications.
control SIP based sessions in their applications.
SIP is a open standard replacement from IETF for H323.
http://www.gnu.org/software/osip/

View File

@ -56,7 +56,7 @@ $(LIBEXOSIP2_DIR)/.compiled: $(LIBEXOSIP2_DIR)/.configured
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(LIBEXOSIP2_DIR)
touch $@
#LDFLAGS=$(TARGET_LDFLAGS)
#LDFLAGS=$(TARGET_LDFLAGS)
$(STAGING_DIR)/usr/lib/libeXosip2.so: $(LIBEXOSIP2_DIR)/.compiled
cp -dpf $(LIBEXOSIP2_DIR)/src/.libs/libeXosip2.so* $(STAGING_DIR)/usr/lib

View File

@ -2,6 +2,6 @@ config BR2_PACKAGE_LIBFLOAT
bool "libfloat"
help
Soft floating point library.
http://netwinder.osuosl.org/devteam/scottb/libfloat/

View File

@ -2,6 +2,6 @@ config BR2_PACKAGE_LIBGCRYPT
bool "libgcrypt"
select BR2_PACKAGE_LIBGPG_ERROR
help
LibGCrypt is GNU's basic cryptographic library.
LibGCrypt is GNU's basic cryptographic library.
ftp://gd.tuwien.ac.at/privacy/gnupg/libgcrypt/

View File

@ -9,7 +9,7 @@ LIBGLIB2_SITE = http://ftp.gtk.org/pub/glib/2.15
LIBGLIB2_AUTORECONF = NO
LIBGLIB2_INSTALL_STAGING = YES
LIBGLIB2_INSTALL_TARGET = YES
LIBGLIB2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
LIBGLIB2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
LIBGLIB2_CONF_ENV = $(TARGET_CONFIGURE_OPTS) $(TARGET_CONFIGURE_ARGS) \
ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
@ -41,7 +41,7 @@ LIBGLIB2_CONF_ENV = $(TARGET_CONFIGURE_OPTS) $(TARGET_CONFIGURE_ARGS) \
ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
ac_use_included_regex=no gl_cv_c_restrict=no \
ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal ac_cv_prog_F77=no \
ac_cv_prog_CXX=no ac_cv_func_posix_getgrgid_r=no
ac_cv_prog_CXX=no ac_cv_func_posix_getgrgid_r=no
LIBGLIB2_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) --prefix=/usr \
@ -51,8 +51,8 @@ LIBGLIB2_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--datadir=/usr/share --localstatedir=/var \
--includedir=/usr/include --mandir=/usr/man \
--infodir=/usr/info --enable-shared \
--enable-static $(DISABLE_NLS)
--enable-static $(DISABLE_NLS)
LIBGLIB2_DEPENDENCIES = uclibc gettext libintl pkgconfig
LIBGLIB2_DEPENDENCIES = uclibc gettext libintl pkgconfig
$(eval $(call AUTOTARGETS,package,libglib2))

View File

@ -9,8 +9,8 @@ LIBGTK2_SITE = ftp://ftp.gtk.org/pub/gtk/2.12
LIBGTK2_AUTORECONF = NO
LIBGTK2_INSTALL_STAGING = YES
LIBGTK2_INSTALL_TARGET = YES
LIBGTK2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
LIBGTK2_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
LIBGTK2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
LIBGTK2_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
LIBGTK2_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
glib_cv_uscore=no \
@ -71,7 +71,7 @@ LIBGTK2_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
ac_cv_path_GDK_PIXBUF_CSOURCE=$(HOST_GLIB)/bin/gdk-pixbuf-csource \
ac_cv_prog_F77=no \
ac_cv_prog_CXX=no \
ac_cv_path_CUPS_CONFIG=no
ac_cv_path_CUPS_CONFIG=no
LIBGTK2_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \
@ -109,7 +109,7 @@ ifneq ($(BR2_PACKAGE_XSERVER_none),y)
--x-includes=$(STAGING_DIR)/usr/include/X11 \
--x-libraries=$(STAGING_DIR)/usr/lib \
--with-gdktarget=x11
LIBGTK2_DEPENDENCIES_EXTRA = xlib_libXcomposite $(XSERVER)
LIBGTK2_DEPENDENCIES_EXTRA = xlib_libXcomposite $(XSERVER)
else
LIBGTK2_CONF_OPT += --without-x
endif

View File

@ -12,7 +12,7 @@ LIBICONV_INSTALL_TARGET = YES
LIBICONV_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
LIBICONV_DEPENDENCIES = uclibc
LIBICONV_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,libiconv))

View File

@ -4,6 +4,6 @@ config BR2_PACKAGE_LIBOSIP2
GNU SIP (Session Initiation Protocol)
This library aims to provide multimedia and telecom software
developers an easy and powerful interface to initiate and
control SIP based sessions in their applications.
control SIP based sessions in their applications.
SIP is a open standard replacement from IETF for H323.

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_LIBSNDFILE
bool "libsndfile"
help
Libsndfile is a C library for reading and writing files containing
sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format)
Libsndfile is a C library for reading and writing files containing
sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format)
through one standard library interface.

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_LIBTOOL
bool "libtool"
help
Library that hides the complexity of using shared/static libraries
Library that hides the complexity of using shared/static libraries
on different platforms behind a consistent, portable interface.
http://www.gnu.org/software/libtool/

View File

@ -8,7 +8,7 @@ config BR2_PACKAGE_LIGHTTPD
Auth, Output-Compression, URL-Rewriting and many more) make
lighttpd the perfect webserver-software for every server that
is suffering load problems.
http://www.lighttpd.net/
if BR2_PACKAGE_LIGHTTPD

View File

@ -9,7 +9,7 @@ LIGHTTPD_SITE:=http://www.lighttpd.net/download
LIGHTTPD_INSTALL_STAGING = NO
LIGHTTPD_INSTALL_TARGET = YES
LIGHTTPD_DEPENDENCIES = uclibc
LIGHTTPD_CONF_ENV =
LIGHTTPD_CONF_ENV =
LIGHTTPD_CONF_OPT = \
--target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \

View File

@ -2,7 +2,7 @@ config BR2_PACKAGE_LSOF
bool "lsof"
help
lsof (LiSt Open Files)
The lsof tool lists information about files opened by
The lsof tool lists information about files opened by
processes.
ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/

View File

@ -15,7 +15,7 @@ $(DL_DIR)/$(LXDOOM_WAD_SOURCE):
$(LXDOOM_WAD_DIR)/.unpacked: $(DL_DIR)/$(LXDOOM_WAD_SOURCE)
mkdir -p $(LXDOOM_WAD_DIR)
cp -f $(DL_DIR)/$(LXDOOM_WAD_SOURCE) $(LXDOOM_WAD_DIR)
gunzip -d $(LXDOOM_WAD_DIR)/$(LXDOOM_WAD_SOURCE)
gunzip -d $(LXDOOM_WAD_DIR)/$(LXDOOM_WAD_SOURCE)
touch $@
$(LXDOOM_WAD_DIR)/.installed: $(LXDOOM_WAD_DIR)/.unpacked

View File

@ -17,6 +17,6 @@ LXDOOM_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--includedir=/usr/include --enable-shared \
$(DISABLE_NLS)
LXDOOM_DEPENDENCIES = uclibc
LXDOOM_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,lxdoom))

View File

@ -11,7 +11,7 @@ MAGICCUBE4D_INSTALL_STAGING = NO
MAGICCUBE4D_INSTALL_TARGET = YES
MAGICCUBE4D_INSTALL_TARGET_OPT = GAMESDIR=$(TARGET_DIR)/usr/games install
MAGICCUBE4D_DEPENDENCIES = uclibc
MAGICCUBE4D_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,magiccube4d))

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_MAKE
bool "make"
help
A tool which controls the generation of executables and other
A tool which controls the generation of executables and other
non-source files of a program from the program's source files.
http://www.gnu.org/software/make/

View File

@ -10,5 +10,5 @@ config BR2_PACKAGE_MICROPERL_MODULES
help
List of microperl modules to copy to the rootfs.
E.g.
warnings.pm warnings/register.pm strict.pm constant.pm vars.pm
warnings.pm warnings/register.pm strict.pm constant.pm vars.pm
Exporter.pm Exporter/Heavy.pm Carp.pm Getopt/Long.pm

View File

@ -3,5 +3,5 @@ config BR2_PACKAGE_MICROWIN
help
Microwindows Graphical User Interface for small and
embedded enviroments.
http://microwindows.censoft.com/

View File

@ -1,9 +1,9 @@
config BR2_PACKAGE_MODULE_INIT_TOOLS
bool "module-init-tools"
help
The module-init-tools package contains a set of programs for
loading, inserting, and removing kernel modules for Linux
(versions 2.5.48 and above). It serves the same function that
The module-init-tools package contains a set of programs for
loading, inserting, and removing kernel modules for Linux
(versions 2.5.48 and above). It serves the same function that
the "modutils" package serves for Linux 2.4.
http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/

View File

@ -2,9 +2,9 @@ config BR2_PACKAGE_MODUTILS
bool "modutils"
depends on !BR2_PACKAGE_MODULE_INIT_TOOLS
help
The modutils packages includes the kerneld program for automatic
loading and unloading of modules, as well as other module
management programs. Examples of loaded and unloaded modules are
The modutils packages includes the kerneld program for automatic
loading and unloading of modules, as well as other module
management programs. Examples of loaded and unloaded modules are
device drivers and filesystems, as well as some other things.
linux v.<2.6

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_NCURSES
bool "ncurses"
help
The Ncurses (new curses) library is a free software emulation of
The Ncurses (new curses) library is a free software emulation of
curses in System V Release 4.0, and more.
http://www.gnu.org/software/ncurses/
@ -11,13 +11,13 @@ config BR2_PACKAGE_NCURSES_TARGET_PANEL
depends on BR2_PACKAGE_NCURSES
help
Includes ncurses dynamic libpanel in target
config BR2_PACKAGE_NCURSES_TARGET_FORM
bool "ncurses libform in target"
depends on BR2_PACKAGE_NCURSES
help
Includes ncurses dynamic libform in target
config BR2_PACKAGE_NCURSES_TARGET_MENU
bool "ncurses libmenu in target"
depends on BR2_PACKAGE_NCURSES

View File

@ -25,7 +25,7 @@ config BR2_PACKAGE_NEON_LIBXML2
bool "libxml2"
depends on BR2_PACKAGE_LIBXML2
help
libxml2 use libxml2, a library to read, modify and
libxml2 use libxml2, a library to read, modify and
write XML and HTML files.
config BR2_PACKAGE_NEON_NOXML

View File

@ -4,9 +4,9 @@ config BR2_PACKAGE_NETCAT
Netcat is a featured networking utility which reads and writes data
across network connections, using the TCP/IP protocol.
It is designed to be a reliable "back-end" tool that can be used
directly or easily driven by other programs and scripts. At the
same time, it is a feature-rich network debugging and exploration
tool, since it can create almost any kind of connection you would
directly or easily driven by other programs and scripts. At the
same time, it is a feature-rich network debugging and exploration
tool, since it can create almost any kind of connection you would
need and has several interesting built-in capabilities.
http://netcat.sourceforge.net/download.php

View File

@ -2,7 +2,7 @@ config BR2_PACKAGE_NETSNMP
bool "netsnmp"
select BR2_PACKAGE_OPENSSL
help
Suite of applications used to implement SNMP v1, SNMP v2c, and
Suite of applications used to implement SNMP v1, SNMP v2c, and
SNMP v3 using both IPv4 and IPv6.
http://net-snmp.sourceforge.net/

View File

@ -13,7 +13,7 @@ NG_SPICE_REWORK_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
NG_SPICE_REWORK_CONF_OPT = CFLAGS="-I$(STAGING_DIR)/usr/include"
NG-SPICE-REWORK_DEPENDENCIES = uclibc
NG-SPICE-REWORK_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,ng-spice-rework))

View File

@ -42,14 +42,14 @@ $(NTFS-3G_DIR)/.configured: $(NTFS-3G_DIR)/.source
ac_cv_path_LDCONFIG=""\
);
touch $@
$(NTFS-3G_DIR)/.compiled: $(NTFS-3G_DIR)/.configured
$(MAKE) prefix=$/usr CC=$(TARGET_CC)-C $(NTFS-3G_DIR)
touch $@
# CROSS_COMPILE="$(TARGET_CROSS)"
$(STAGING_DIR)/usr/bin/ntfs-3g: $(NTFS-3G_DIR)/.compiled
$(MAKE) prefix=$/usr -C $(NTFS-3G_DIR) DESTDIR=$(STAGING_DIR)/ install
touch -c $@

View File

@ -2,7 +2,7 @@ config BR2_PACKAGE_OLSR
bool "OLSR mesh networking Daemon"
help
olsr
The Optimized Link State Routing protocol (OLSR) is a routing protocol that is optimised
for mobile ad-hoc networks, sometimes called wireless mesh networks. It is a proactive
link-state routing protocol that floods a full topology table to all nodes in the network

View File

@ -56,7 +56,7 @@ $(OPENMOTIF_DIR)/.configured: $(OPENMOTIF_HOST_DIR)/.configured
touch $(OPENMOTIF_DIR)/.configured
$(OPENMOTIF_HOST_DIR)/.done: $(OPENMOTIF_DIR)/.configured
$(MAKE) -C $(OPENMOTIF_HOST_DIR)
$(MAKE) -C $(OPENMOTIF_HOST_DIR)
ln -s -f $(OPENMOTIF_HOST_DIR)/config/util/makestrs $(OPENMOTIF_DIR)/config/util/makestrs-host
ln -s -f $(OPENMOTIF_HOST_DIR)/tools/wml/wmluiltok $(OPENMOTIF_DIR)/tools/wml/wmluiltok-host
ln -s -f $(OPENMOTIF_HOST_DIR)/tools/wml/wml $(OPENMOTIF_DIR)/tools/wml/wml-host
@ -70,7 +70,7 @@ $(OPENMOTIF_HOST_DIR)/.done: $(OPENMOTIF_DIR)/.configured
touch $(OPENMOTIF_HOST_DIR)/.done
$(OPENMOTIF_DIR)/.done: $(OPENMOTIF_HOST_DIR)/.done
$(MAKE) -C $(OPENMOTIF_DIR)
$(MAKE) -C $(OPENMOTIF_DIR)
$(MAKE) -C $(OPENMOTIF_DIR) install DESTDIR=$(STAGING_DIR)
$(MAKE) -C $(OPENMOTIF_DIR) install DESTDIR=$(TARGET_DIR)
touch $(OPENMOTIF_DIR)/.done

View File

@ -3,7 +3,7 @@ config BR2_PACKAGE_OPENSSH
select BR2_PACKAGE_OPENSSL
select BR2_PACKAGE_ZLIB
help
A free version of the SSH protocol suite of network connectivity
A free version of the SSH protocol suite of network connectivity
tools. The standard 'ssh', 'sshd', 'scp', and friends.
http://www.openssh.com/

View File

@ -1,9 +1,9 @@
config BR2_PACKAGE_OPENSSL
bool "openssl"
help
A collaborative effort to develop a robust, commercial-grade, fully
featured, and Open Source toolkit implementing the Secure Sockets
Layer (SSL v2/v3) and Transport Security (TLS v1) as well as a
A collaborative effort to develop a robust, commercial-grade, fully
featured, and Open Source toolkit implementing the Secure Sockets
Layer (SSL v2/v3) and Transport Security (TLS v1) as well as a
full-strength general-purpose cryptography library.
http://www.openssl.org/

View File

@ -3,11 +3,11 @@ config BR2_PACKAGE_OPENVPN
select BR2_PACKAGE_LZO
select BR2_PACKAGE_OPENSSL
help
OpenVPN is a full-featured SSL VPN solution which can
accomodate a wide range of configurations, including road
warrior access, home/office/campus telecommuting, WiFi
security, secure branch office linking, and enterprise-scale
remote access solutions with load balancing, failover, and
OpenVPN is a full-featured SSL VPN solution which can
accomodate a wide range of configurations, including road
warrior access, home/office/campus telecommuting, WiFi
security, secure branch office linking, and enterprise-scale
remote access solutions with load balancing, failover, and
fine-grained access-controls.
http://openvpn.sourceforge.net/

View File

@ -16,4 +16,4 @@ config BR2_PACKAGE_OPROFILE
statistics, which can also be used for basic time-spent
profiling. All code is profiled: hardware and software
interrupt handlers, kernel modules, the kernel, shared
libraries, and applications.
libraries, and applications.

View File

@ -9,7 +9,7 @@ PANGO_SITE = http://ftp.gnome.org/pub/GNOME/sources/pango/1.19
PANGO_AUTORECONF = YES
PANGO_INSTALL_STAGING = YES
PANGO_INSTALL_TARGET = YES
PANGO_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
PANGO_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
PANGO_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
PANGO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
@ -40,14 +40,14 @@ PANGO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
gl_cv_func_mkdir_trailing_slash_bug=no gl_cv_func_mkstemp_limitations=no \
ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
ac_use_included_regex=no gl_cv_c_restrict=no PKG_CONFIG_SYSROOT="$(STAGING_DIR)" \
ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal ac_cv_path_FREETYPE_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config
ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal ac_cv_path_FREETYPE_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config
ifneq ($(BR2_PACKAGE_XSERVER_none),y)
PANGO_CONF_OPT_X = --with-x \
--x-includes=$(STAGING_DIR)/usr/include/X11 \
--x-libraries=$(STAGING_DIR)/usr/lib --disable-glibtest
else
PANGO_CONF_OPT_X = --without-x
PANGO_CONF_OPT_X = --without-x
endif
PANGO_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
@ -62,7 +62,7 @@ PANGO_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--enable-explicit-deps=no --disable-debug PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig"
PANGO_DEPENDENCIES = uclibc gettext libintl pkgconfig libglib2 $(XSERVER) cairo
PANGO_DEPENDENCIES = uclibc gettext libintl pkgconfig libglib2 $(XSERVER) cairo
$(eval $(call AUTOTARGETS,package,pango))

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_PATCH
bool "patch"
help
Take patch files (containing difference listings) and apply them
Take patch files (containing difference listings) and apply them
to original files, producing patched versions.
http://www.gnu.org/software/patch/

View File

@ -12,7 +12,7 @@ config BR2_PACKAGE_PHP_CLI
depends on BR2_PACKAGE_PHP
default y
help
command line interface for php.
command line interface for php.
you must have at least cli or cgi selected.
config BR2_PACKAGE_PHP_CGI

View File

@ -33,7 +33,7 @@ ifneq ($(BR2_INET_IPV6),y)
PHP_CONFIGURE+=--disable-ipv6
endif
### Extensions
### Extensions
ifeq ($(BR2_PACKAGE_PHP_EXT_SOCKETS),y)
PHP_CONFIGURE+=--enable-sockets
endif

View File

@ -8,7 +8,7 @@ POPT_SITE = http://rpm5.org/files/popt
POPT_INSTALL_STAGING = YES
POPT_CONF_ENV = ac_cv_va_copy=yes
POPT_CONF_ENV = ac_cv_va_copy=yes
POPT_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(REAL_GNU_TARGET_NAME) \

View File

@ -74,7 +74,7 @@ config BR2_PACKAGE_PYTHON_READLINE
depends on BR2_PACKAGE_PYTHON
bool "readline"
help
readline module for Python (required for command-line
readline module for Python (required for command-line
editing in the Python shell).
config BR2_PACKAGE_PYTHON_SSL

View File

@ -83,7 +83,7 @@ config BR2_PACKAGE_QTOPIA4_QT3SUPPORT
bool "Compatibility with Qt3"
depends on BR2_PACKAGE_QTOPIA4
help
Turns on support for older Qt3. This will create an additional
Turns on support for older Qt3. This will create an additional
library with proxy code and increase the space required on target.
If unsure say n.
@ -185,7 +185,7 @@ config BR2_PACKAGE_QTOPIA4_SYSTEMZLIB
help
Use the shared zlib from the system.
endchoice
choice
prompt "freetype2 support"
depends on BR2_PACKAGE_QTOPIA4

View File

@ -11,9 +11,9 @@ RUBIX_INSTALL_STAGING = NO
RUBIX_INSTALL_TARGET = YES
RUBIX_INSTALL_TARGET_OPT = GAMESDIR=$(TARGET_DIR)/usr/games install
RUBIX_MAKE_OPT = CC=$(TARGET_CC) XINC="-I$(STAGING_DIR)/usr/include/X11" XLIB="-L$(STAGING_DIR)/usr/lib -lX11"
RUBIX_MAKE_OPT = CC=$(TARGET_CC) XINC="-I$(STAGING_DIR)/usr/include/X11" XLIB="-L$(STAGING_DIR)/usr/lib -lX11"
RUBIX_DEPENDENCIES = uclibc
RUBIX_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,rubix))

View File

@ -2,11 +2,11 @@ config BR2_PACKAGE_SCREEN
bool "screen"
select BR2_PACKAGE_NCURSES
help
Screen is a full-screen window manager that multiplexes a physical
terminal between several processes, typically interactive shells.
Each virtual terminal provides the functions of the DEC VT100
terminal and, in addition, several control functions from the ANSI
X3.64 (ISO 6429) and ISO 2022 standards (e.g., insert/delete line
Screen is a full-screen window manager that multiplexes a physical
terminal between several processes, typically interactive shells.
Each virtual terminal provides the functions of the DEC VT100
terminal and, in addition, several control functions from the ANSI
X3.64 (ISO 6429) and ISO 2022 standards (e.g., insert/delete line
and support for multiple character sets).
http://www.gnu.org/software/screen/

View File

@ -12,5 +12,5 @@ config BR2_PACKAGE_SPEEX_ARM5E
default y
depends on BR2_PACKAGE_SPEEX && BR2_arm
help
Use the additional instructions available in the ARM5E
Use the additional instructions available in the ARM5E
or later cores.

View File

@ -12,7 +12,7 @@ STARTUP_NOTIFICATION_INSTALL_TARGET = YES
STARTUP_NOTIFICATION_CONF_ENV = lf_cv_sane_realloc=yes
STARTUP_NOTIFICATION_DEPENDENCIES = uclibc
STARTUP_NOTIFICATION_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,startup-notification))

View File

@ -2,7 +2,7 @@ config BR2_PACKAGE_STRACE
bool "strace"
help
A useful diagnostic, instructional, and debugging tool.
Allows you to track what system calls a program makes
Allows you to track what system calls a program makes
while it is running.
http://sourceforge.net/projects/strace/

View File

@ -2,9 +2,9 @@ config BR2_PACKAGE_SYNERGY
bool "synergy"
depends on BR2_PACKAGE_XORG7
help
Synergy lets you easily share a single mouse and
keyboard between multiple computers with different
operating systems, each with its own display,
Synergy lets you easily share a single mouse and
keyboard between multiple computers with different
operating systems, each with its own display,
without special hardware.
http://synergy2.sourceforge.net/

View File

@ -12,7 +12,7 @@ SYNERGY_INSTALL_STAGING = NO
SYNERGY_INSTALL_TARGET = YES
SYNERGY_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) --prefix=/usr --sysconfdir=/etc
--build=$(GNU_HOST_NAME) --prefix=/usr --sysconfdir=/etc
SYNERGY_DEPENDENCIES = uclibc $(XSERVER)

View File

@ -3,7 +3,7 @@ config BR2_PACKAGE_TAR
depends on BR2_USE_WCHAR
select BR2_UCLIBC_PROGRAM_INVOCATION
help
A program that saves many files together into a single tape or disk
A program that saves many files together into a single tape or disk
archive, and can restore individual files from the archive.
http://www.gnu.org/software/tar/

View File

@ -3,5 +3,5 @@ config BR2_PACKAGE_TINYHTTPD
help
A relatively simple webserver written as a school project. It is
exceedingly simple, threaded and handles basic CGI scripts.
http://sourceforge.net/projects/tinyhttpd/

View File

@ -28,7 +28,7 @@ $(TINYHTTPD_DIR)/.unpacked: $(DL_DIR)/$(TINYHTTPD_SOURCE)
$(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY): $(TINYHTTPD_DIR)/.unpacked
$(TARGET_CONFIGURE_OPTS) CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" $(MAKE) -C $(TINYHTTPD_DIR)
$(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY): $(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY)
$(INSTALL) -m 0755 $(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY) $(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY)
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY)

View File

@ -1,8 +1,8 @@
config BR2_PACKAGE_TINYLOGIN
bool "tinylogin"
help
Suite of tiny Unix utilities for handling logging into,
being authenticated by, changing one's password for, and
Suite of tiny Unix utilities for handling logging into,
being authenticated by, changing one's password for, and
otherwise maintaining users and groups on an embedded system.
http://tinylogin.busybox.net/

View File

@ -12,7 +12,7 @@ TORSMO_INSTALL_TARGET = YES
TORSMO_CONF_OPT = --x-includes="-I$(STAGING_DIR)/usr/include/X11" --x-libraries="-I$(STAGING_DIR)/usr/lib" --with-x
TORSMO_DEPENDENCIES = uclibc
TORSMO_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,torsmo))

View File

@ -1,7 +1,7 @@
config BR2_PACKAGE_UDHCP
bool "udhcp"
help
An embedded dhcp server/client package that strives to be
An embedded dhcp server/client package that strives to be
fully functional, RFC compliant, and really tiny.
http://udhcp.busybox.net/

View File

@ -12,7 +12,7 @@ VICE_INSTALL_TARGET = YES
VICE_CONF_OPT = --without-resid --with-alsa CFLAGS="-O0"
VICE_DEPENDENCIES = uclibc
VICE_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,vice))

View File

@ -10,9 +10,9 @@ VLC_AUTORECONF = NO
VLC_INSTALL_STAGING = NO
VLC_INSTALL_TARGET = YES
VLC_CONF_OPT =
VLC_CONF_OPT =
VLC_DEPENDENCIES = uclibc
VLC_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,vlc))

View File

@ -3,7 +3,7 @@ config BR2_PACKAGE_VTUN
select BR2_PACKAGE_LZO
select BR2_PACKAGE_OPENSSL
help
Tool for easily creating Virtual Tunnels over TCP/IP networks
Tool for easily creating Virtual Tunnels over TCP/IP networks
with traffic shaping, compression, and encryption.
It supports IP, PPP, SLIP, Ethernet and other tunnel types.

View File

@ -2,12 +2,12 @@ config BR2_PACKAGE_WEBKIT
bool "webkit"
select BR2_PACKAGE_LIBGTK2
select BR2_PACKAGE_ICU
select BR2_PACKAGE_CURL
select BR2_PACKAGE_LIBXML2
select BR2_PACKAGE_LIBXSLT
select BR2_PACKAGE_CURL
select BR2_PACKAGE_LIBXML2
select BR2_PACKAGE_LIBXSLT
select BR2_PACKAGE_SQLITE
help
WebKit is an open source, standards compliant web browser engine.
WebKit is an open source, standards compliant web browser engine.
http://webkit.org/

Some files were not shown because too many files have changed in this diff Show More