* [Buildroot] svn commit: trunk/buildroot/package/at
@ 2006-12-02 18:36 aldot at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: aldot at uclibc.org @ 2006-12-02 18:36 UTC (permalink / raw)
To: buildroot
Author: aldot
Date: 2006-12-02 10:36:55 -0800 (Sat, 02 Dec 2006)
New Revision: 16762
Log:
- rm cruft via fakeroot, not afterwards where it has no effect.
Modified:
trunk/buildroot/package/at/at.mk
Changeset:
Modified: trunk/buildroot/package/at/at.mk
===================================================================
--- trunk/buildroot/package/at/at.mk 2006-12-02 18:36:04 UTC (rev 16761)
+++ trunk/buildroot/package/at/at.mk 2006-12-02 18:36:55 UTC (rev 16762)
@@ -46,8 +46,8 @@
echo "$(MAKE) DAEMON_USERNAME=root DAEMON_GROUPNAME=root " \
"$(TARGET_CONFIGURE_OPTS) DESTDIR=$(TARGET_DIR) -C $(AT_DIR) install" \
> $(STAGING_DIR)/.fakeroot.at
+ echo "rm -rf $(TARGET_DIR)/usr/man" >> $(STAGING_DIR)/.fakeroot.at
$(INSTALL) -m 0755 -D $(AT_DIR)/debian/rc $(TARGET_DIR)/etc/init.d/S99at
- rm -rf $(TARGET_DIR)/usr/man
touch -c $(TARGET_DIR)/$(AT_TARGET_BINARY)
at: uclibc host-fakeroot $(TARGET_DIR)/$(AT_TARGET_BINARY)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/at
@ 2006-12-20 17:46 aldot at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: aldot at uclibc.org @ 2006-12-20 17:46 UTC (permalink / raw)
To: buildroot
Author: aldot
Date: 2006-12-20 09:46:43 -0800 (Wed, 20 Dec 2006)
New Revision: 17022
Log:
- don't install the docs
Modified:
trunk/buildroot/package/at/at.mk
Changeset:
Modified: trunk/buildroot/package/at/at.mk
===================================================================
--- trunk/buildroot/package/at/at.mk 2006-12-20 17:46:00 UTC (rev 17021)
+++ trunk/buildroot/package/at/at.mk 2006-12-20 17:46:43 UTC (rev 17022)
@@ -46,7 +46,7 @@
echo "$(MAKE) DAEMON_USERNAME=root DAEMON_GROUPNAME=root " \
"$(TARGET_CONFIGURE_OPTS) DESTDIR=$(TARGET_DIR) -C $(AT_DIR) install" \
> $(STAGING_DIR)/.fakeroot.at
- echo "rm -rf $(TARGET_DIR)/usr/man" >> $(STAGING_DIR)/.fakeroot.at
+ echo "rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/doc/at" >> $(STAGING_DIR)/.fakeroot.at
$(INSTALL) -m 0755 -D $(AT_DIR)/debian/rc $(TARGET_DIR)/etc/init.d/S99at
touch -c $(TARGET_DIR)/$(AT_TARGET_BINARY)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/at
@ 2007-01-22 13:56 aldot at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: aldot at uclibc.org @ 2007-01-22 13:56 UTC (permalink / raw)
To: buildroot
Author: aldot
Date: 2007-01-22 05:56:04 -0800 (Mon, 22 Jan 2007)
New Revision: 17458
Log:
- add missing include panic.h to parsetime.h
- add missing prerequisite y.tab.h of lex.yy.c to fix parallel builds
Modified:
trunk/buildroot/package/at/at-crosscompile.patch
trunk/buildroot/package/at/at.mk
Changeset:
Modified: trunk/buildroot/package/at/at-crosscompile.patch
===================================================================
--- trunk/buildroot/package/at/at-crosscompile.patch 2007-01-22 12:27:33 UTC (rev 17457)
+++ trunk/buildroot/package/at/at-crosscompile.patch 2007-01-22 13:56:04 UTC (rev 17458)
@@ -1,15 +1,38 @@
---- at/config.h.in
-+++ at/config.h.in
-@@ -182,3 +182,6 @@
+diff -rdup at-3.1.10.orig/Makefile.in at-3.1.10/Makefile.in
+--- at-3.1.10.orig/Makefile.in 2007-01-22 14:35:41.000000000 +0100
++++ at-3.1.10/Makefile.in 2007-01-22 14:41:41.000000000 +0100
+@@ -62,6 +62,8 @@ MISC = COPYING Makefile.in configure a
+ DIST = $(CSRCS) $(HEADERS) $(MISC) $(OTHERS)
+ LIST = Filelist Filelist.asc
++IROOT = $(DESTDIR)
++
+ .PHONY: all install clean dist distclean
+
+ all: at atd atrun
+@@ -78,7 +80,7 @@ atd: $(RUNOBJECTS)
+ y.tab.c y.tab.h: parsetime.y
+ $(YACC) -d parsetime.y
+
+-lex.yy.c: parsetime.l
++lex.yy.c: parsetime.l y.tab.h
+ $(LEX) -i parsetime.l
+
+ atrun: atrun.in
+diff -rdup at-3.1.10.orig/config.h.in at-3.1.10/config.h.in
+--- at-3.1.10.orig/config.h.in 2007-01-22 14:35:41.000000000 +0100
++++ at-3.1.10/config.h.in 2007-01-22 14:35:35.000000000 +0100
+@@ -181,3 +181,6 @@
+
#undef HAVE_ATTRIBUTE_NORETURN
#undef HAVE_PAM
+
+#undef NEED_YYWRAP
+
---- at/configure
-+++ at/configure
-@@ -1037,7 +1037,7 @@
+diff -rdup at-3.1.10.orig/configure at-3.1.10/configure
+--- at-3.1.10.orig/configure 2007-01-22 14:35:41.000000000 +0100
++++ at-3.1.10/configure 2007-01-22 14:35:35.000000000 +0100
+@@ -1037,7 +1037,7 @@ esac
echo $ac_n "checking Trying to compile a trivial ANSI C program""... $ac_c" 1>&6
echo "configure:1039: checking Trying to compile a trivial ANSI C program" >&5
if test "$cross_compiling" = yes; then
@@ -18,9 +41,10 @@
else
cat > conftest.$ac_ext <<EOF
#line 1044 "configure"
---- at/getloadavg.c
-+++ at/getloadavg.c
-@@ -66,11 +66,12 @@
+diff -rdup at-3.1.10.orig/getloadavg.c at-3.1.10/getloadavg.c
+--- at-3.1.10.orig/getloadavg.c 2007-01-22 14:35:41.000000000 +0100
++++ at-3.1.10/getloadavg.c 2007-01-22 14:35:35.000000000 +0100
+@@ -66,11 +66,12 @@ Boston, MA 02110-1301 USA */
/* This should always be first. */
#ifdef HAVE_CONFIG_H
@@ -36,22 +60,23 @@
#ifndef HAVE_GETLOADAVG
---- at/Makefile.in
-+++ at/Makefile.in
-@@ -62,6 +62,8 @@
- DIST = $(CSRCS) $(HEADERS) $(MISC) $(OTHERS)
- LIST = Filelist Filelist.asc
+diff -rdup at-3.1.10.orig/parsetime.h at-3.1.10/parsetime.h
+--- at-3.1.10.orig/parsetime.h 2005-08-05 05:16:01.000000000 +0200
++++ at-3.1.10/parsetime.h 2007-01-22 14:45:41.000000000 +0100
+@@ -17,6 +17,7 @@
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
-+IROOT = $(DESTDIR)
-+
- .PHONY: all install clean dist distclean
++#include "panic.h"
+ time_t parsetime(int argc, char **argv);
- all:@atd atrun
---- at/parsetime.l
-+++ at/parsetime.l
+ extern char *last_token;
+diff -rdup at-3.1.10.orig/parsetime.l at-3.1.10/parsetime.l
+--- at-3.1.10.orig/parsetime.l 2007-01-22 14:35:41.000000000 +0100
++++ at-3.1.10/parsetime.l 2007-01-22 14:35:35.000000000 +0100
@@ -1,5 +1,6 @@
%{
-
+
+#include "config.h"
#include <string.h>
#include <time.h>
Modified: trunk/buildroot/package/at/at.mk
===================================================================
--- trunk/buildroot/package/at/at.mk 2007-01-22 12:27:33 UTC (rev 17457)
+++ trunk/buildroot/package/at/at.mk 2007-01-22 13:56:04 UTC (rev 17458)
@@ -18,7 +18,7 @@
$(AT_DIR)/.unpacked: $(DL_DIR)/$(AT_SOURCE)
$(AT_CAT) $(DL_DIR)/$(AT_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
toolchain/patch-kernel.sh $(AT_DIR) package/at/ at\*.patch
- touch $(AT_DIR)/.unpacked
+ touch $@
$(AT_DIR)/.configured: $(AT_DIR)/.unpacked
(cd $(AT_DIR); rm -rf config.cache; \
@@ -38,7 +38,7 @@
--with-daemon_username=at \
--with-daemon_groupname=at \
);
- touch $(AT_DIR)/.configured
+ touch $@
$(AT_DIR)/$(AT_BINARY): $(AT_DIR)/.configured
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(AT_DIR)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/at
@ 2007-01-24 15:52 aldot at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: aldot at uclibc.org @ 2007-01-24 15:52 UTC (permalink / raw)
To: buildroot
Author: aldot
Date: 2007-01-24 07:52:46 -0800 (Wed, 24 Jan 2007)
New Revision: 17501
Log:
- fix spurious rebuilds caused by at
Modified:
trunk/buildroot/package/at/at.mk
Changeset:
Modified: trunk/buildroot/package/at/at.mk
===================================================================
--- trunk/buildroot/package/at/at.mk 2007-01-24 15:12:12 UTC (rev 17500)
+++ trunk/buildroot/package/at/at.mk 2007-01-24 15:52:46 UTC (rev 17501)
@@ -9,6 +9,7 @@
AT_DIR:=$(BUILD_DIR)/at-$(AT_VER)
AT_CAT:=$(ZCAT)
AT_TARGET_BINARY:=usr/bin/at
+AT_BINARY:=at
$(DL_DIR)/$(AT_SOURCE):
$(WGET) -P $(DL_DIR) $(AT_SITE)/$(AT_SOURCE)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/at
@ 2007-06-25 10:23 aldot at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: aldot at uclibc.org @ 2007-06-25 10:23 UTC (permalink / raw)
To: buildroot
Author: aldot
Date: 2007-06-25 03:23:24 -0700 (Mon, 25 Jun 2007)
New Revision: 18917
Log:
- preserve quotes
Modified:
trunk/buildroot/package/at/at.mk
Changeset:
Modified: trunk/buildroot/package/at/at.mk
===================================================================
--- trunk/buildroot/package/at/at.mk 2007-06-25 09:44:12 UTC (rev 18916)
+++ trunk/buildroot/package/at/at.mk 2007-06-25 10:23:24 UTC (rev 18917)
@@ -48,10 +48,10 @@
$(TARGET_DIR)/$(AT_TARGET_BINARY): $(AT_DIR)/$(AT_BINARY)
# Use fakeroot to pretend to do 'make install' as root
- echo "$(MAKE) DAEMON_USERNAME=root DAEMON_GROUPNAME=root " \
- "$(TARGET_CONFIGURE_OPTS) DESTDIR=$(TARGET_DIR) -C $(AT_DIR) install" \
+ echo '$(MAKE) DAEMON_USERNAME=root DAEMON_GROUPNAME=root ' \
+ '$(TARGET_CONFIGURE_OPTS) DESTDIR=$(TARGET_DIR) -C $(AT_DIR) install' \
> $(STAGING_DIR)/.fakeroot.at
- echo "rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/doc/at" >> $(STAGING_DIR)/.fakeroot.at
+ echo 'rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/doc/at' >> $(STAGING_DIR)/.fakeroot.at
$(INSTALL) -m 0755 -D $(AT_DIR)/debian/rc $(TARGET_DIR)/etc/init.d/S99at
touch -c $(TARGET_DIR)/$(AT_TARGET_BINARY)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/at
@ 2007-07-16 8:12 ulf at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: ulf at uclibc.org @ 2007-07-16 8:12 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2007-07-16 01:12:15 -0700 (Mon, 16 Jul 2007)
New Revision: 19106
Log:
Get rid of repeated rebuild of 'at'
Modified:
trunk/buildroot/package/at/at.mk
Changeset:
Modified: trunk/buildroot/package/at/at.mk
===================================================================
--- trunk/buildroot/package/at/at.mk 2007-07-16 07:55:50 UTC (rev 19105)
+++ trunk/buildroot/package/at/at.mk 2007-07-16 08:12:15 UTC (rev 19106)
@@ -8,8 +8,8 @@
AT_SITE:=http://ftp.debian.org/debian/pool/main/a/at
AT_DIR:=$(BUILD_DIR)/at-$(AT_VERSION)
AT_CAT:=$(ZCAT)
-AT_TARGET_BINARY:=usr/bin/at
-AT_BINARY:=at
+AT_TARGET_SCRIPT:=etc/init.d/S99at
+AT_BINARY:=.at
$(DL_DIR)/$(AT_SOURCE):
$(WGET) -P $(DL_DIR) $(AT_SITE)/$(AT_SOURCE)
@@ -43,22 +43,21 @@
$(AT_DIR)/$(AT_BINARY): $(AT_DIR)/.configured
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(AT_DIR)
- touch -c $(AT_DIR)/$(AT_BINARY)
+ touch $@
-$(TARGET_DIR)/$(AT_TARGET_BINARY): $(AT_DIR)/$(AT_BINARY)
+$(TARGET_DIR)/$(AT_TARGET_SCRIPT): $(AT_DIR)/$(AT_BINARY)
# Use fakeroot to pretend to do 'make install' as root
echo '$(MAKE) DAEMON_USERNAME=root DAEMON_GROUPNAME=root ' \
'$(TARGET_CONFIGURE_OPTS) DESTDIR=$(TARGET_DIR) -C $(AT_DIR) install' \
> $(STAGING_DIR)/.fakeroot.at
echo 'rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/doc/at' >> $(STAGING_DIR)/.fakeroot.at
- $(INSTALL) -m 0755 -D $(AT_DIR)/debian/rc $(TARGET_DIR)/etc/init.d/S99at
- touch -c $(TARGET_DIR)/$(AT_TARGET_BINARY)
+ $(INSTALL) -m 0755 -D $(AT_DIR)/debian/rc $(TARGET_DIR)/$(AT_TARGET_SCRIPT)
-at: uclibc host-fakeroot $(TARGET_DIR)/$(AT_TARGET_BINARY)
+at: uclibc host-fakeroot $(TARGET_DIR)/$(AT_TARGET_SCRIPT)
at-clean:
-$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(AT_DIR) uninstall
- rm -f $(TARGET_DIR)/$(AT_TARGET_BINARY) $(TARGET_DIR)/etc/init.d/S99at
+ rm -f $(TARGET_DIR)/$(AT_TARGET_SCRIPT) $(TARGET_DIR)/etc/init.d/S99at
-$(MAKE) -C $(AT_DIR) clean
at-dirclean:
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/at
@ 2007-07-27 7:38 ulf at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: ulf at uclibc.org @ 2007-07-27 7:38 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2007-07-27 00:38:48 -0700 (Fri, 27 Jul 2007)
New Revision: 19269
Log:
Use correct binary in 'at' to avoid rebuilds
Modified:
trunk/buildroot/package/at/at.mk
Changeset:
Modified: trunk/buildroot/package/at/at.mk
===================================================================
--- trunk/buildroot/package/at/at.mk 2007-07-27 07:35:49 UTC (rev 19268)
+++ trunk/buildroot/package/at/at.mk 2007-07-27 07:38:48 UTC (rev 19269)
@@ -9,7 +9,7 @@
AT_DIR:=$(BUILD_DIR)/at-$(AT_VERSION)
AT_CAT:=$(ZCAT)
AT_TARGET_SCRIPT:=etc/init.d/S99at
-AT_BINARY:=.at
+AT_BINARY:=at
$(DL_DIR)/$(AT_SOURCE):
$(WGET) -P $(DL_DIR) $(AT_SITE)/$(AT_SOURCE)
@@ -62,6 +62,8 @@
at-dirclean:
rm -rf $(AT_DIR)
+
+.PHONY: at
#############################################################
#
# Toplevel Makefile options
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/at
@ 2007-08-21 17:00 aldot at uclibc.org
0 siblings, 0 replies; 8+ messages in thread
From: aldot at uclibc.org @ 2007-08-21 17:00 UTC (permalink / raw)
To: buildroot
Author: aldot
Date: 2007-08-21 10:00:18 -0700 (Tue, 21 Aug 2007)
New Revision: 19622
Log:
- honour BR2_HAVE_MANPAGES
Modified:
trunk/buildroot/package/at/at.mk
Changeset:
Modified: trunk/buildroot/package/at/at.mk
===================================================================
--- trunk/buildroot/package/at/at.mk 2007-08-21 16:51:46 UTC (rev 19621)
+++ trunk/buildroot/package/at/at.mk 2007-08-21 17:00:18 UTC (rev 19622)
@@ -48,9 +48,12 @@
$(TARGET_DIR)/$(AT_TARGET_SCRIPT): $(AT_DIR)/$(AT_BINARY)
# Use fakeroot to pretend to do 'make install' as root
echo '$(MAKE) DAEMON_USERNAME=root DAEMON_GROUPNAME=root ' \
- '$(TARGET_CONFIGURE_OPTS) DESTDIR=$(TARGET_DIR) -C $(AT_DIR) install' \
+ '$(TARGET_CONFIGURE_OPTS) DESTDIR=$(TARGET_DIR) -C $(AT_DIR) install' \
> $(PROJECT_BUILD_DIR)/.fakeroot.at
- echo 'rm -rf $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/doc/at' >> $(PROJECT_BUILD_DIR)/.fakeroot.at
+ifneq ($(BR2_HAVE_MANPAGES),y)
+ echo 'rm -rf $(TARGET_DIR)/usr/man' >> $(PROJECT_BUILD_DIR)/.fakeroot.at
+endif
+ echo 'rm -rf $(TARGET_DIR)/usr/doc/at' >> $(PROJECT_BUILD_DIR)/.fakeroot.at
$(INSTALL) -m 0755 -D $(AT_DIR)/debian/rc $(TARGET_DIR)/$(AT_TARGET_SCRIPT)
at: uclibc host-fakeroot $(TARGET_DIR)/$(AT_TARGET_SCRIPT)
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2007-08-21 17:00 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-24 15:52 [Buildroot] svn commit: trunk/buildroot/package/at aldot at uclibc.org
-- strict thread matches above, loose matches on Subject: below --
2007-08-21 17:00 aldot at uclibc.org
2007-07-27 7:38 ulf at uclibc.org
2007-07-16 8:12 ulf at uclibc.org
2007-06-25 10:23 aldot at uclibc.org
2007-01-22 13:56 aldot at uclibc.org
2006-12-20 17:46 aldot at uclibc.org
2006-12-02 18:36 aldot 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