Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] svn commit: trunk/buildroot/package/pcre
@ 2008-08-16 12:32 jacmet at uclibc.org
  0 siblings, 0 replies; 7+ messages in thread
From: jacmet at uclibc.org @ 2008-08-16 12:32 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-08-16 05:32:57 -0700 (Sat, 16 Aug 2008)
New Revision: 23092

Log:
pcre: bump version

Modified:
   trunk/buildroot/package/pcre/pcre.mk


Changeset:
Modified: trunk/buildroot/package/pcre/pcre.mk
===================================================================
--- trunk/buildroot/package/pcre/pcre.mk	2008-08-16 12:32:54 UTC (rev 23091)
+++ trunk/buildroot/package/pcre/pcre.mk	2008-08-16 12:32:57 UTC (rev 23092)
@@ -3,7 +3,7 @@
 # PCRE
 #
 #############################################################
-PCRE_VERSION = 7.6
+PCRE_VERSION = 7.7
 PCRE_SOURCE = pcre-$(PCRE_VERSION).tar.bz2
 PCRE_SITE = ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre
 PCRE_INSTALL_STAGING = YES

^ permalink raw reply	[flat|nested] 7+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/pcre
@ 2008-09-17 21:33 jacmet at uclibc.org
  2008-09-18 10:28 ` Daniel Laird
  0 siblings, 1 reply; 7+ messages in thread
From: jacmet at uclibc.org @ 2008-09-17 21:33 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-09-17 14:33:19 -0700 (Wed, 17 Sep 2008)
New Revision: 23416

Log:
pcre: fixup paths in pcre-config

Modified:
   trunk/buildroot/package/pcre/pcre.mk


Changeset:
Modified: trunk/buildroot/package/pcre/pcre.mk
===================================================================
--- trunk/buildroot/package/pcre/pcre.mk	2008-09-17 11:45:37 UTC (rev 23415)
+++ trunk/buildroot/package/pcre/pcre.mk	2008-09-17 21:33:19 UTC (rev 23416)
@@ -20,5 +20,8 @@
 $(eval $(call AUTOTARGETS,package,pcre))
 
 $(PCRE_HOOK_POST_INSTALL): $(PCRE_TARGET_INSTALL_TARGET)
+	$(SED) 's,^prefix=.*,prefix=$(STAGING_DIR)/usr,' \
+		-e 's,^exec_prefix=.*,exec_prefix=$(STAGING_DIR)/usr,' \
+		$(STAGING_DIR)/usr/bin/pcre-config
 	rm -rf $(TARGET_DIR)/usr/share/doc/pcre
 	touch $@

^ permalink raw reply	[flat|nested] 7+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/pcre
@ 2008-08-16 19:36 jacmet at uclibc.org
  0 siblings, 0 replies; 7+ messages in thread
From: jacmet at uclibc.org @ 2008-08-16 19:36 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-08-16 12:36:36 -0700 (Sat, 16 Aug 2008)
New Revision: 23094

Log:
pcre: fix target install

Use install-strip and clean up documentation files instead of
install-exec so files get stripped and manpages installed if
requested.

Modified:
   trunk/buildroot/package/pcre/pcre.mk


Changeset:
Modified: trunk/buildroot/package/pcre/pcre.mk
===================================================================
--- trunk/buildroot/package/pcre/pcre.mk	2008-08-16 19:13:53 UTC (rev 23093)
+++ trunk/buildroot/package/pcre/pcre.mk	2008-08-16 19:36:36 UTC (rev 23094)
@@ -8,6 +8,7 @@
 PCRE_SITE = ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre
 PCRE_INSTALL_STAGING = YES
 PCRE_INSTALL_TARGET = YES
+PCRE_INSTALL_TARGET_OPT:=DESTDIR=$(TARGET_DIR) install-strip
 
 ifneq ($(BR2_INSTALL_LIBSTDCPP),y)
 # pcre will use the host g++ if a cross version isn't available
@@ -17,3 +18,7 @@
 PCRE_DEPENDENCIES = uclibc
 
 $(eval $(call AUTOTARGETS,package,pcre))
+
+$(PCRE_HOOK_POST_INSTALL): $(PCRE_TARGET_INSTALL_TARGET)
+	rm -rf $(TARGET_DIR)/usr/share/doc/pcre
+	touch $@

^ permalink raw reply	[flat|nested] 7+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/pcre
@ 2008-08-16 12:32 jacmet at uclibc.org
  0 siblings, 0 replies; 7+ messages in thread
From: jacmet at uclibc.org @ 2008-08-16 12:32 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-08-16 05:32:54 -0700 (Sat, 16 Aug 2008)
New Revision: 23091

Log:
pcre: fix compilation when C++ support is disabled

pcre will use host g++ is no cross g++ is available, so explicitly disable
c++ support in pcre if it isn't enabled in buildroot instead.

Modified:
   trunk/buildroot/package/pcre/pcre.mk


Changeset:
Modified: trunk/buildroot/package/pcre/pcre.mk
===================================================================
--- trunk/buildroot/package/pcre/pcre.mk	2008-08-16 11:59:59 UTC (rev 23090)
+++ trunk/buildroot/package/pcre/pcre.mk	2008-08-16 12:32:54 UTC (rev 23091)
@@ -9,9 +9,10 @@
 PCRE_INSTALL_STAGING = YES
 PCRE_INSTALL_TARGET = YES
 
-PCRE_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
-        --build=$(GNU_HOST_NAME) --prefix=/usr \
-        --includedir=/usr/include
+ifneq ($(BR2_INSTALL_LIBSTDCPP),y)
+# pcre will use the host g++ if a cross version isn't available
+PCRE_CONF_OPT = --disable-cpp
+endif
 
 PCRE_DEPENDENCIES = uclibc
 

^ permalink raw reply	[flat|nested] 7+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/pcre
@ 2008-08-16 12:00 jacmet at uclibc.org
  0 siblings, 0 replies; 7+ messages in thread
From: jacmet at uclibc.org @ 2008-08-16 12:00 UTC (permalink / raw)
  To: buildroot

Author: jacmet
Date: 2008-08-16 04:59:59 -0700 (Sat, 16 Aug 2008)
New Revision: 23090

Log:
pcre: add homepage to description

Modified:
   trunk/buildroot/package/pcre/Config.in


Changeset:
Modified: trunk/buildroot/package/pcre/Config.in
===================================================================
--- trunk/buildroot/package/pcre/Config.in	2008-08-16 11:59:56 UTC (rev 23089)
+++ trunk/buildroot/package/pcre/Config.in	2008-08-16 11:59:59 UTC (rev 23090)
@@ -2,3 +2,5 @@
 	bool "pcre"
 	help
 	  Perl Compatible Regular Expressions
+
+	  http://www.pcre.org/

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

end of thread, other threads:[~2008-09-18 10:34 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-16 12:32 [Buildroot] svn commit: trunk/buildroot/package/pcre jacmet at uclibc.org
  -- strict thread matches above, loose matches on Subject: below --
2008-09-17 21:33 jacmet at uclibc.org
2008-09-18 10:28 ` Daniel Laird
2008-09-18 10:34   ` Peter Korsgaard
2008-08-16 19:36 jacmet at uclibc.org
2008-08-16 12:32 jacmet at uclibc.org
2008-08-16 12:00 jacmet at uclibc.org

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