Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] libnspr: New package.
@ 2011-03-14 16:25 Will Newton
  0 siblings, 0 replies; 5+ messages in thread
From: Will Newton @ 2011-03-14 16:25 UTC (permalink / raw)
  To: buildroot

Add a package for the Netscape Portable Runtime library.

Signed-off-by: Will Newton <will.newton@imgtec.com>
---
 package/Config.in          |    1 +
 package/libnspr/Config.in  |   13 +++++++++++++
 package/libnspr/libnspr.mk |   17 +++++++++++++++++
 3 files changed, 31 insertions(+), 0 deletions(-)
 create mode 100644 package/libnspr/Config.in
 create mode 100644 package/libnspr/libnspr.mk

diff --git a/package/Config.in b/package/Config.in
index 0f0ec47..19c38fa 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -331,6 +331,7 @@ source "package/libelf/Config.in"
 source "package/libevent/Config.in"
 source "package/libffi/Config.in"
 source "package/libglib2/Config.in"
+source "package/libnspr/Config.in"
 source "package/liboil/Config.in"
 source "package/libsigc/Config.in"
 source "package/startup-notification/Config.in"
diff --git a/package/libnspr/Config.in b/package/libnspr/Config.in
new file mode 100644
index 0000000..53086f0
--- /dev/null
+++ b/package/libnspr/Config.in
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_LIBNSPR
+	bool "libnspr"
+	depends on BR2_LARGEFILE
+	help
+	  NSPR is the Netscape Portable Runtime library which provides
+	  a platform-neutral API for system level and libc like
+	  functions. The library is used by the Mozilla project as well
+	  as others.
+
+	  http://www.mozilla.org/projects/nspr/
+
+comment "libnspr requires a toolchain with LARGEFILE support"
+	depends on !BR2_LARGEFILE
diff --git a/package/libnspr/libnspr.mk b/package/libnspr/libnspr.mk
new file mode 100644
index 0000000..9ba7431
--- /dev/null
+++ b/package/libnspr/libnspr.mk
@@ -0,0 +1,17 @@
+#############################################################
+#
+# libnspr
+#
+#############################################################
+LIBNSPR_VERSION = 4.8.7
+LIBNSPR_SOURCE = nspr-$(LIBNSPR_VERSION).tar.gz
+LIBNSPR_SITE =
https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v$(LIBNSPR_VERSION)/src/
+LIBNSPR_SUBDIR = mozilla/nsprpub
+LIBNSPR_INSTALL_STAGING = YES
+# Set the host CFLAGS and LDFLAGS so NSPR does not guess wrongly
+LIBNSPR_CONF_ENV = HOST_CFLAGS="-g -O2" \
+		   HOST_LDFLAGS="-lc"
+# NSPR mixes up --build and --host
+LIBNSPR_CONF_OPT = --host=$(GNU_HOST_NAME)
+
+$(eval $(call AUTOTARGETS,package,libnspr))
-- 
1.7.3.4
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-libnspr-New-package.patch
Type: text/x-patch
Size: 2459 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20110314/96f71ecc/attachment.bin>

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] libnspr: New package.
@ 2011-03-25 12:06 Will Newton
  2011-04-01 10:00 ` Will Newton
  0 siblings, 1 reply; 5+ messages in thread
From: Will Newton @ 2011-03-25 12:06 UTC (permalink / raw)
  To: buildroot

Add a package for the Netscape Portable Runtime library.

Signed-off-by: Will Newton <will.newton@imgtec.com>
---
 package/Config.in          |    1 +
 package/libnspr/Config.in  |   13 +++++++++++++
 package/libnspr/libnspr.mk |   17 +++++++++++++++++
 3 files changed, 31 insertions(+), 0 deletions(-)
 create mode 100644 package/libnspr/Config.in
 create mode 100644 package/libnspr/libnspr.mk

diff --git a/package/Config.in b/package/Config.in
index 0f0ec47..19c38fa 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -331,6 +331,7 @@ source "package/libelf/Config.in"
 source "package/libevent/Config.in"
 source "package/libffi/Config.in"
 source "package/libglib2/Config.in"
+source "package/libnspr/Config.in"
 source "package/liboil/Config.in"
 source "package/libsigc/Config.in"
 source "package/startup-notification/Config.in"
diff --git a/package/libnspr/Config.in b/package/libnspr/Config.in
new file mode 100644
index 0000000..53086f0
--- /dev/null
+++ b/package/libnspr/Config.in
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_LIBNSPR
+	bool "libnspr"
+	depends on BR2_LARGEFILE
+	help
+	  NSPR is the Netscape Portable Runtime library which provides
+	  a platform-neutral API for system level and libc like
+	  functions. The library is used by the Mozilla project as well
+	  as others.
+
+	  http://www.mozilla.org/projects/nspr/
+
+comment "libnspr requires a toolchain with LARGEFILE support"
+	depends on !BR2_LARGEFILE
diff --git a/package/libnspr/libnspr.mk b/package/libnspr/libnspr.mk
new file mode 100644
index 0000000..9ba7431
--- /dev/null
+++ b/package/libnspr/libnspr.mk
@@ -0,0 +1,17 @@
+#############################################################
+#
+# libnspr
+#
+#############################################################
+LIBNSPR_VERSION = 4.8.7
+LIBNSPR_SOURCE = nspr-$(LIBNSPR_VERSION).tar.gz
+LIBNSPR_SITE =
https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v$(LIBNSPR_VERSION)/src/
+LIBNSPR_SUBDIR = mozilla/nsprpub
+LIBNSPR_INSTALL_STAGING = YES
+# Set the host CFLAGS and LDFLAGS so NSPR does not guess wrongly
+LIBNSPR_CONF_ENV = HOST_CFLAGS="-g -O2" \
+		   HOST_LDFLAGS="-lc"
+# NSPR mixes up --build and --host
+LIBNSPR_CONF_OPT = --host=$(GNU_HOST_NAME)
+
+$(eval $(call AUTOTARGETS,package,libnspr))
-- 
1.7.3.4
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-libnspr-New-package.patch
Type: text/x-patch
Size: 2459 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20110325/5f3bc7db/attachment.bin>

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] libnspr: New package.
  2011-03-25 12:06 Will Newton
@ 2011-04-01 10:00 ` Will Newton
  0 siblings, 0 replies; 5+ messages in thread
From: Will Newton @ 2011-04-01 10:00 UTC (permalink / raw)
  To: buildroot

Ping?

On Fri, Mar 25, 2011 at 12:06 PM, Will Newton <will.newton@gmail.com> wrote:
> Add a package for the Netscape Portable Runtime library.
>
> Signed-off-by: Will Newton <will.newton@imgtec.com>
> ---
> ?package/Config.in ? ? ? ? ?| ? ?1 +
> ?package/libnspr/Config.in ?| ? 13 +++++++++++++
> ?package/libnspr/libnspr.mk | ? 17 +++++++++++++++++
> ?3 files changed, 31 insertions(+), 0 deletions(-)
> ?create mode 100644 package/libnspr/Config.in
> ?create mode 100644 package/libnspr/libnspr.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index 0f0ec47..19c38fa 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -331,6 +331,7 @@ source "package/libelf/Config.in"
> ?source "package/libevent/Config.in"
> ?source "package/libffi/Config.in"
> ?source "package/libglib2/Config.in"
> +source "package/libnspr/Config.in"
> ?source "package/liboil/Config.in"
> ?source "package/libsigc/Config.in"
> ?source "package/startup-notification/Config.in"
> diff --git a/package/libnspr/Config.in b/package/libnspr/Config.in
> new file mode 100644
> index 0000000..53086f0
> --- /dev/null
> +++ b/package/libnspr/Config.in
> @@ -0,0 +1,13 @@
> +config BR2_PACKAGE_LIBNSPR
> + ? ? ? bool "libnspr"
> + ? ? ? depends on BR2_LARGEFILE
> + ? ? ? help
> + ? ? ? ? NSPR is the Netscape Portable Runtime library which provides
> + ? ? ? ? a platform-neutral API for system level and libc like
> + ? ? ? ? functions. The library is used by the Mozilla project as well
> + ? ? ? ? as others.
> +
> + ? ? ? ? http://www.mozilla.org/projects/nspr/
> +
> +comment "libnspr requires a toolchain with LARGEFILE support"
> + ? ? ? depends on !BR2_LARGEFILE
> diff --git a/package/libnspr/libnspr.mk b/package/libnspr/libnspr.mk
> new file mode 100644
> index 0000000..9ba7431
> --- /dev/null
> +++ b/package/libnspr/libnspr.mk
> @@ -0,0 +1,17 @@
> +#############################################################
> +#
> +# libnspr
> +#
> +#############################################################
> +LIBNSPR_VERSION = 4.8.7
> +LIBNSPR_SOURCE = nspr-$(LIBNSPR_VERSION).tar.gz
> +LIBNSPR_SITE =
> https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v$(LIBNSPR_VERSION)/src/
> +LIBNSPR_SUBDIR = mozilla/nsprpub
> +LIBNSPR_INSTALL_STAGING = YES
> +# Set the host CFLAGS and LDFLAGS so NSPR does not guess wrongly
> +LIBNSPR_CONF_ENV = HOST_CFLAGS="-g -O2" \
> + ? ? ? ? ? ? ? ? ?HOST_LDFLAGS="-lc"
> +# NSPR mixes up --build and --host
> +LIBNSPR_CONF_OPT = --host=$(GNU_HOST_NAME)
> +
> +$(eval $(call AUTOTARGETS,package,libnspr))
> --
> 1.7.3.4
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] libnspr: New package.
@ 2011-07-07 12:07 Will Newton
  2011-07-07 20:16 ` Peter Korsgaard
  0 siblings, 1 reply; 5+ messages in thread
From: Will Newton @ 2011-07-07 12:07 UTC (permalink / raw)
  To: buildroot

Add a package for the Netscape Portable Runtime library.

Signed-off-by: Will Newton <will.newton@imgtec.com>
---
 package/Config.in          |    1 +
 package/libnspr/Config.in  |   13 +++++++++++++
 package/libnspr/libnspr.mk |   17 +++++++++++++++++
 3 files changed, 31 insertions(+), 0 deletions(-)
 create mode 100644 package/libnspr/Config.in
 create mode 100644 package/libnspr/libnspr.mk

diff --git a/package/Config.in b/package/Config.in
index 8f1f030..2a48d82 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -338,6 +338,7 @@ source "package/libelf/Config.in"
 source "package/libevent/Config.in"
 source "package/libffi/Config.in"
 source "package/libglib2/Config.in"
+source "package/libnspr/Config.in"
 source "package/liboil/Config.in"
 source "package/libsigc/Config.in"
 source "package/startup-notification/Config.in"
diff --git a/package/libnspr/Config.in b/package/libnspr/Config.in
new file mode 100644
index 0000000..53086f0
--- /dev/null
+++ b/package/libnspr/Config.in
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_LIBNSPR
+	bool "libnspr"
+	depends on BR2_LARGEFILE
+	help
+	  NSPR is the Netscape Portable Runtime library which provides
+	  a platform-neutral API for system level and libc like
+	  functions. The library is used by the Mozilla project as well
+	  as others.
+
+	  http://www.mozilla.org/projects/nspr/
+
+comment "libnspr requires a toolchain with LARGEFILE support"
+	depends on !BR2_LARGEFILE
diff --git a/package/libnspr/libnspr.mk b/package/libnspr/libnspr.mk
new file mode 100644
index 0000000..9ba7431
--- /dev/null
+++ b/package/libnspr/libnspr.mk
@@ -0,0 +1,17 @@
+#############################################################
+#
+# libnspr
+#
+#############################################################
+LIBNSPR_VERSION = 4.8.7
+LIBNSPR_SOURCE = nspr-$(LIBNSPR_VERSION).tar.gz
+LIBNSPR_SITE =
https://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v$(LIBNSPR_VERSION)/src/
+LIBNSPR_SUBDIR = mozilla/nsprpub
+LIBNSPR_INSTALL_STAGING = YES
+# Set the host CFLAGS and LDFLAGS so NSPR does not guess wrongly
+LIBNSPR_CONF_ENV = HOST_CFLAGS="-g -O2" \
+		   HOST_LDFLAGS="-lc"
+# NSPR mixes up --build and --host
+LIBNSPR_CONF_OPT = --host=$(GNU_HOST_NAME)
+
+$(eval $(call AUTOTARGETS,package,libnspr))
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH] libnspr: New package.
  2011-07-07 12:07 [Buildroot] [PATCH] libnspr: New package Will Newton
@ 2011-07-07 20:16 ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2011-07-07 20:16 UTC (permalink / raw)
  To: buildroot

>>>>> "Will" == Will Newton <will.newton@gmail.com> writes:

 Will> Add a package for the Netscape Portable Runtime library.
 Will> Signed-off-by: Will Newton <will.newton@imgtec.com>

Committed, thanks.

Notice that your mailer wrapped long lines (E.G. the URL), so I had to
fixup manually. Please consider using git send-email in the future.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-07-07 20:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-07 12:07 [Buildroot] [PATCH] libnspr: New package Will Newton
2011-07-07 20:16 ` Peter Korsgaard
  -- strict thread matches above, loose matches on Subject: below --
2011-03-25 12:06 Will Newton
2011-04-01 10:00 ` Will Newton
2011-03-14 16:25 Will Newton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox