* [Buildroot] svn commit: trunk/buildroot/package/rxvt
@ 2006-07-20 15:50 andersen
0 siblings, 0 replies; 7+ messages in thread
From: andersen @ 2006-07-20 15:50 UTC (permalink / raw)
To: buildroot
Author: andersen
Date: 2006-07-20 15:50:22 -0700 (Thu, 20 Jul 2006)
New Revision: 15738
Log:
rxvt switched to sourceforge years ago... Fix things up so
that rxvt actually builds and runs...
Added:
trunk/buildroot/package/rxvt/rxvt_2.6.4-10.diff
Modified:
trunk/buildroot/package/rxvt/rxvt.mk
Changeset:
Sorry, the patch is too large to include (1202 lines).
Please use ViewCVS to see it!
http://uclibc.org/cgi-bin/viewcvs.cgi?view=rev&root=svn&rev=15738
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/rxvt
@ 2007-02-03 23:09 andersen at uclibc.org
0 siblings, 0 replies; 7+ messages in thread
From: andersen at uclibc.org @ 2007-02-03 23:09 UTC (permalink / raw)
To: buildroot
Author: andersen
Date: 2007-02-03 15:09:04 -0800 (Sat, 03 Feb 2007)
New Revision: 17746
Log:
bump version
Modified:
trunk/buildroot/package/rxvt/rxvt.mk
Changeset:
Modified: trunk/buildroot/package/rxvt/rxvt.mk
===================================================================
--- trunk/buildroot/package/rxvt/rxvt.mk 2007-02-03 21:07:43 UTC (rev 17745)
+++ trunk/buildroot/package/rxvt/rxvt.mk 2007-02-03 23:09:04 UTC (rev 17746)
@@ -20,7 +20,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA
-RXVT_VERSION:=2.6.4
+RXVT_VERSION:=2.7.5
RXVT_SOURCE:=rxvt-$(RXVT_VERSION).tar.gz
RXVT_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/rxvt
RXVT_CAT:=$(ZCAT)
@@ -52,7 +52,6 @@
--x-libraries=$(STAGING_DIR)/usr/X11R6/lib \
--disable-resources \
--disable-memset \
- --enable-xgetdefault \
);
touch $(RXVT_DIR)/.configured
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/rxvt
@ 2007-08-14 8:44 ulf at uclibc.org
0 siblings, 0 replies; 7+ messages in thread
From: ulf at uclibc.org @ 2007-08-14 8:44 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2007-08-14 01:44:28 -0700 (Tue, 14 Aug 2007)
New Revision: 19503
Log:
rxvt hardwired for X11R6, so ensure dependency is OK
Modified:
trunk/buildroot/package/rxvt/Config.in
Changeset:
Modified: trunk/buildroot/package/rxvt/Config.in
===================================================================
--- trunk/buildroot/package/rxvt/Config.in 2007-08-14 07:45:01 UTC (rev 19502)
+++ trunk/buildroot/package/rxvt/Config.in 2007-08-14 08:44:28 UTC (rev 19503)
@@ -1,7 +1,10 @@
config BR2_PACKAGE_RXVT
bool "rxvt"
default n
+ depends BR2_PACKAGE_XSERVER_xorg || BR2_PACKAGE_XSERVER_tinyx
+
help
A nice small colour vt102 X terminal emulator.
+ Does not build for X11R7 yet.
http://www.rxvt.org/
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/rxvt
@ 2007-08-28 22:23 ulf at uclibc.org
0 siblings, 0 replies; 7+ messages in thread
From: ulf at uclibc.org @ 2007-08-28 22:23 UTC (permalink / raw)
To: buildroot
Author: ulf
Date: 2007-08-28 15:23:08 -0700 (Tue, 28 Aug 2007)
New Revision: 19725
Log:
This is my attempt to realize a rxvt-version for xorg, tinyx and the new x11r7.
I tested it with xorg and x11r7. (Don't know if it works with tinyx,
because the tinyx-build fails)
Signed-off-by: Simon Pasch <fpasch@googlemail.com>
Modified:
trunk/buildroot/package/rxvt/Config.in
trunk/buildroot/package/rxvt/rxvt.mk
Changeset:
Modified: trunk/buildroot/package/rxvt/Config.in
===================================================================
--- trunk/buildroot/package/rxvt/Config.in 2007-08-28 22:21:35 UTC (rev 19724)
+++ trunk/buildroot/package/rxvt/Config.in 2007-08-28 22:23:08 UTC (rev 19725)
@@ -1,10 +1,8 @@
config BR2_PACKAGE_RXVT
bool "rxvt"
default n
- depends BR2_PACKAGE_XSERVER_xorg || BR2_PACKAGE_XSERVER_tinyx
-
+ depends BR2_PACKAGE_XSERVER_xorg || BR2_PACKAGE_XSERVER_tinyx || BR2_PACKAGE_XSERVER_x11r7
help
A nice small colour vt102 X terminal emulator.
- Does not build for X11R7 yet.
http://www.rxvt.org/
Modified: trunk/buildroot/package/rxvt/rxvt.mk
===================================================================
--- trunk/buildroot/package/rxvt/rxvt.mk 2007-08-28 22:21:35 UTC (rev 19724)
+++ trunk/buildroot/package/rxvt/rxvt.mk 2007-08-28 22:23:08 UTC (rev 19725)
@@ -27,6 +27,18 @@
RXVT_DIR:=$(BUILD_DIR)/rxvt-$(RXVT_VERSION)
RXVT_BINARY:=$(RXVT_DIR)/src/rxvt
+ifeq ($(strip $(BR2_PACKAGE_XSERVER_xorg)),y)
+RXVT_PREFIX:=/usr/X11R6
+endif
+
+ifeq ($(strip $(BR2_PACKAGE_XSERVER_tinyx)),y)
+RXVT_PREFIX:=/usr/X11R6
+endif
+
+ifeq ($(strip $(BR2_PACKAGE_XSERVER_x11r7)),y)
+RXVT_PREFIX:=/usr
+endif
+
$(DL_DIR)/$(RXVT_SOURCE):
$(WGET) -P $(DL_DIR) $(RXVT_SITE)/$(RXVT_SOURCE)
@@ -46,11 +58,11 @@
--target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \
- --prefix=/usr/X11R6 \
+ --prefix=$(RXVT_PREFIX) \
--mandir=/usr/man \
--infodir=/usr/info \
- --x-includes=$(STAGING_DIR)/usr/X11R6/include \
- --x-libraries=$(STAGING_DIR)/usr/X11R6/lib \
+ --x-includes=$(STAGING_DIR)$(RXVT_PREFIX)/include \
+ --x-libraries=$(STAGING_DIR)$(RXVT_PREFIX)/lib \
--disable-resources \
--disable-memset \
)
@@ -60,14 +72,14 @@
$(MAKE) CC=$(TARGET_CC) -C $(RXVT_DIR)
$(STRIP) $(STRIP_DISCARD_ALL) $(RXVT_BINARY)
-$(TARGET_DIR)/usr/X11R6/bin/rxvt: $(RXVT_BINARY)
- cp -f $(RXVT_BINARY) $(TARGET_DIR)/usr/X11R6/bin
- (cd $(TARGET_DIR)/usr/X11R6/bin; ln -fs rxvt xterm)
+$(TARGET_DIR)$(RXVT_PREFIX)/bin/rxvt: $(RXVT_BINARY)
+ cp -f $(RXVT_BINARY) $(TARGET_DIR)$(RXVT_PREFIX)/bin
+ (cd $(TARGET_DIR)$(RXVT_PREFIX)/bin; ln -fs rxvt xterm)
-rxvt: $(XSERVER) $(TARGET_DIR)/usr/X11R6/bin/rxvt
+rxvt: $(XSERVER) $(TARGET_DIR)$(RXVT_PREFIX)/bin/rxvt
rxvt-clean:
- rm -f $(TARGET_DIR)/usr/X11R6/bin/rxvt
+ rm -f $(TARGET_DIR)$(RXVT_PREFIX)/bin/rxvt
-$(MAKE) -C $(RXVT_DIR) clean
rxvt-dirclean:
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/rxvt
@ 2008-03-06 18:23 ninevoltz at uclibc.org
0 siblings, 0 replies; 7+ messages in thread
From: ninevoltz at uclibc.org @ 2008-03-06 18:23 UTC (permalink / raw)
To: buildroot
Author: ninevoltz
Date: 2008-03-06 10:23:39 -0800 (Thu, 06 Mar 2008)
New Revision: 21225
Log:
cleanup rxvt makefile
Modified:
trunk/buildroot/package/rxvt/rxvt.mk
Changeset:
Modified: trunk/buildroot/package/rxvt/rxvt.mk
===================================================================
--- trunk/buildroot/package/rxvt/rxvt.mk 2008-03-06 18:23:13 UTC (rev 21224)
+++ trunk/buildroot/package/rxvt/rxvt.mk 2008-03-06 18:23:39 UTC (rev 21225)
@@ -36,7 +36,7 @@
$(RXVT_CAT) $(DL_DIR)/$(RXVT_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
toolchain/patch-kernel.sh $(RXVT_DIR) package/rxvt/ \*.patch
$(CONFIG_UPDATE) $(RXVT_DIR)/autoconf
- touch $(RXVT_DIR)/.unpacked
+ touch $@
$(RXVT_DIR)/.configured: $(RXVT_DIR)/.unpacked
(cd $(RXVT_DIR); rm -rf config.cache; \
@@ -55,7 +55,7 @@
--disable-resources \
--disable-memset \
)
- touch $(RXVT_DIR)/.configured
+ touch $@
$(RXVT_BINARY): $(RXVT_DIR)/.configured
$(MAKE) CC=$(TARGET_CC) -C $(RXVT_DIR)
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/rxvt
@ 2008-06-27 11:15 jacmet at uclibc.org
0 siblings, 0 replies; 7+ messages in thread
From: jacmet at uclibc.org @ 2008-06-27 11:15 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-06-27 04:15:49 -0700 (Fri, 27 Jun 2008)
New Revision: 22532
Log:
rxvt: fix target install (make sure directory exists)
Modified:
trunk/buildroot/package/rxvt/rxvt.mk
Changeset:
Modified: trunk/buildroot/package/rxvt/rxvt.mk
===================================================================
--- trunk/buildroot/package/rxvt/rxvt.mk 2008-06-27 09:08:44 UTC (rev 22531)
+++ trunk/buildroot/package/rxvt/rxvt.mk 2008-06-27 11:15:49 UTC (rev 22532)
@@ -62,8 +62,8 @@
$(STRIPCMD) $(STRIP_DISCARD_ALL) $(RXVT_BINARY)
$(TARGET_DIR)$(X11_PREFIX)/bin/rxvt: $(RXVT_BINARY)
- cp -f $(RXVT_BINARY) $(TARGET_DIR)$(X11_PREFIX)/bin
- (cd $(TARGET_DIR)$(X11_PREFIX)/bin; ln -fs rxvt xterm)
+ $(INSTALL) -m 0755 -D $^ $@
+ (cd $(@D); ln -fs rxvt xterm)
rxvt: $(XSERVER) $(TARGET_DIR)$(X11_PREFIX)/bin/rxvt
^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/package/rxvt
@ 2008-12-22 22:10 jacmet at uclibc.org
0 siblings, 0 replies; 7+ messages in thread
From: jacmet at uclibc.org @ 2008-12-22 22:10 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-12-22 22:10:35 +0000 (Mon, 22 Dec 2008)
New Revision: 24512
Log:
rxvt: don't use getpt()
uClibc can be (and per default is) configured to not implement the glibc
function getpt(3), so use the non-getpt rxvt configuration.
Added:
trunk/buildroot/package/rxvt/rxvt-2.7.5-include.patch
Modified:
trunk/buildroot/package/rxvt/rxvt.mk
Changeset:
Added: trunk/buildroot/package/rxvt/rxvt-2.7.5-include.patch
===================================================================
--- trunk/buildroot/package/rxvt/rxvt-2.7.5-include.patch (rev 0)
+++ trunk/buildroot/package/rxvt/rxvt-2.7.5-include.patch 2008-12-22 22:10:35 UTC (rev 24512)
@@ -0,0 +1,17 @@
+uClibc doesn't have <sys/stropts.h>
+---
+ src/init.h | 1 -
+ 1 file changed, 1 deletion(-)
+
+Index: rxvt-2.7.5/src/init.h
+===================================================================
+--- rxvt-2.7.5.orig/src/init.h
++++ rxvt-2.7.5/src/init.h
+@@ -16,7 +16,6 @@
+
+ #if defined(PTYS_ARE_PTMX) && !defined(__CYGWIN32__)
+ # include <sys/resource.h> /* for struct rlimit */
+-# include <sys/stropts.h> /* for I_PUSH */
+ # define _NEW_TTY_CTRL /* to get proper defines in <termios.h> */
+ #endif
+
Modified: trunk/buildroot/package/rxvt/rxvt.mk
===================================================================
--- trunk/buildroot/package/rxvt/rxvt.mk 2008-12-22 22:10:30 UTC (rev 24511)
+++ trunk/buildroot/package/rxvt/rxvt.mk 2008-12-22 22:10:35 UTC (rev 24512)
@@ -42,7 +42,7 @@
(cd $(RXVT_DIR); rm -rf config.cache; \
$(TARGET_CONFIGURE_OPTS) \
$(TARGET_CONFIGURE_ARGS) \
- rxvt_cv_ptys=GLIBC \
+ rxvt_cv_ptys=USG \
./configure \
--target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2008-12-22 22:10 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-28 22:23 [Buildroot] svn commit: trunk/buildroot/package/rxvt ulf at uclibc.org
-- strict thread matches above, loose matches on Subject: below --
2008-12-22 22:10 jacmet at uclibc.org
2008-06-27 11:15 jacmet at uclibc.org
2008-03-06 18:23 ninevoltz at uclibc.org
2007-08-14 8:44 ulf at uclibc.org
2007-02-03 23:09 andersen at uclibc.org
2006-07-20 15:50 andersen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox