Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] New package: libical
@ 2012-01-27 14:59 yegorslists at googlemail.com
  2012-01-30 22:43 ` Arnout Vandecappelle
  0 siblings, 1 reply; 4+ messages in thread
From: yegorslists at googlemail.com @ 2012-01-27 14:59 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 package/Config.in          |    1 +
 package/libical/Config.in  |   11 +++++++++++
 package/libical/libical.mk |   12 ++++++++++++
 3 files changed, 24 insertions(+), 0 deletions(-)
 create mode 100644 package/libical/Config.in
 create mode 100644 package/libical/libical.mk

diff --git a/package/Config.in b/package/Config.in
index c74c08b..4ceb7b1 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -372,6 +372,7 @@ source "package/libevent/Config.in"
 source "package/libev/Config.in"
 source "package/libffi/Config.in"
 source "package/libglib2/Config.in"
+source "package/libical/Config.in"
 source "package/libnspr/Config.in"
 source "package/libsigc/Config.in"
 source "package/orc/Config.in"
diff --git a/package/libical/Config.in b/package/libical/Config.in
new file mode 100644
index 0000000..12abdb2
--- /dev/null
+++ b/package/libical/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_LIBICAL
+	bool "libical"
+	depends on BR2_USE_WCHAR
+	help
+	  libical is an Open Source (MPL/LGPL) implementation of the IETF's 
+	  iCalendar Calendaring and Scheduling protocols.
+
+	  http://www.citadel.org/doku.php/documentation:featured_projects:libical
+
+comment "libical requires a toolchain with WCHAR support"
+	depends on !(BR2_USE_WCHAR)
diff --git a/package/libical/libical.mk b/package/libical/libical.mk
new file mode 100644
index 0000000..63311eb
--- /dev/null
+++ b/package/libical/libical.mk
@@ -0,0 +1,12 @@
+#############################################################
+#
+# libical
+#
+#############################################################
+
+LIBICAL_VERSION = 0.48
+LIBICAL_SITE = http://heanet.dl.sourceforge.net/project/freeassociation/libical/libical-$(LIBICAL_VERSION)
+LIBICAL_INSTALL_STAGING = YES
+
+$(eval $(call AUTOTARGETS))
+
-- 
1.7.1.1

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

* [Buildroot] [PATCH] New package: libical
  2012-01-27 14:59 [Buildroot] [PATCH] New package: libical yegorslists at googlemail.com
@ 2012-01-30 22:43 ` Arnout Vandecappelle
  2012-01-31  9:23   ` Yegor Yefremov
  0 siblings, 1 reply; 4+ messages in thread
From: Arnout Vandecappelle @ 2012-01-30 22:43 UTC (permalink / raw)
  To: buildroot

On Friday 27 January 2012 15:59:05 yegorslists at googlemail.com wrote:
> From: Yegor Yefremov <yegorslists@googlemail.com>
> 
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

[snip]
> diff --git a/package/libical/Config.in b/package/libical/Config.in
> new file mode 100644
> index 0000000..12abdb2
> --- /dev/null
> +++ b/package/libical/Config.in
> @@ -0,0 +1,11 @@
> +config BR2_PACKAGE_LIBICAL
> +	bool "libical"
> +	depends on BR2_USE_WCHAR
> +	help
> +	  libical is an Open Source (MPL/LGPL) implementation of the IETF's 
> +	  iCalendar Calendaring and Scheduling protocols.
> +
> +	  http://www.citadel.org/doku.php/documentation:featured_projects:libical
> +
> +comment "libical requires a toolchain with WCHAR support"
> +	depends on !(BR2_USE_WCHAR)
 I think the brackets are redundant here.

> diff --git a/package/libical/libical.mk b/package/libical/libical.mk
> new file mode 100644
> index 0000000..63311eb
> --- /dev/null
> +++ b/package/libical/libical.mk
> @@ -0,0 +1,12 @@
> +#############################################################
> +#
> +# libical
> +#
> +#############################################################
> +
> +LIBICAL_VERSION = 0.48
> +LIBICAL_SITE = http://heanet.dl.sourceforge.net/project/freeassociation/libical/libical-$(LIBICAL_VERSION)
 Please use $(BR2_SOURCEFORGE_MIRROR)

> +LIBICAL_INSTALL_STAGING = YES
> +
> +$(eval $(call AUTOTARGETS))
> +
> 

 Regards,
 Arnout

-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
Essensium/Mind                                     http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium                BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

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

* [Buildroot] [PATCH] New package: libical
  2012-01-30 22:43 ` Arnout Vandecappelle
@ 2012-01-31  9:23   ` Yegor Yefremov
  2012-01-31  9:34     ` Peter Korsgaard
  0 siblings, 1 reply; 4+ messages in thread
From: Yegor Yefremov @ 2012-01-31  9:23 UTC (permalink / raw)
  To: buildroot

On Mon, Jan 30, 2012 at 11:43 PM, Arnout Vandecappelle <arnout@mind.be> wrote:
> On Friday 27 January 2012 15:59:05 yegorslists at googlemail.com wrote:
>> From: Yegor Yefremov <yegorslists@googlemail.com>
>>
>> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>

Thanks for review.

> [snip]
>> diff --git a/package/libical/Config.in b/package/libical/Config.in
>> new file mode 100644
>> index 0000000..12abdb2
>> --- /dev/null
>> +++ b/package/libical/Config.in
>> @@ -0,0 +1,11 @@
>> +config BR2_PACKAGE_LIBICAL
>> + ? ? bool "libical"
>> + ? ? depends on BR2_USE_WCHAR
>> + ? ? help
>> + ? ? ? libical is an Open Source (MPL/LGPL) implementation of the IETF's
>> + ? ? ? iCalendar Calendaring and Scheduling protocols.
>> +
>> + ? ? ? http://www.citadel.org/doku.php/documentation:featured_projects:libical
>> +
>> +comment "libical requires a toolchain with WCHAR support"
>> + ? ? depends on !(BR2_USE_WCHAR)
> ?I think the brackets are redundant here.

This is how Peter made this for blue-utils, so I just copied this.

>> diff --git a/package/libical/libical.mk b/package/libical/libical.mk
>> new file mode 100644
>> index 0000000..63311eb
>> --- /dev/null
>> +++ b/package/libical/libical.mk
>> @@ -0,0 +1,12 @@
>> +#############################################################
>> +#
>> +# libical
>> +#
>> +#############################################################
>> +
>> +LIBICAL_VERSION = 0.48
>> +LIBICAL_SITE = http://heanet.dl.sourceforge.net/project/freeassociation/libical/libical-$(LIBICAL_VERSION)
> ?Please use $(BR2_SOURCEFORGE_MIRROR)

Will do.

Yegor

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

* [Buildroot] [PATCH] New package: libical
  2012-01-31  9:23   ` Yegor Yefremov
@ 2012-01-31  9:34     ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2012-01-31  9:34 UTC (permalink / raw)
  To: buildroot

>>>>> "Yegor" == Yegor Yefremov <yegorslists@googlemail.com> writes:

Hi,

 >>> +comment "libical requires a toolchain with WCHAR support"
 >>> + ? ? depends on !(BR2_USE_WCHAR)
 >> ?I think the brackets are redundant here.

 Yegor> This is how Peter made this for blue-utils, so I just copied this.

I did? That must have been a mistake, I prefer to get rid of the ().

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2012-01-31  9:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-27 14:59 [Buildroot] [PATCH] New package: libical yegorslists at googlemail.com
2012-01-30 22:43 ` Arnout Vandecappelle
2012-01-31  9:23   ` Yegor Yefremov
2012-01-31  9:34     ` Peter Korsgaard

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