diff options
-rw-r--r-- | extra/rxvt-unicode/.footprint (renamed from test/rxvt-unicode/.footprint) | 0 | ||||
-rw-r--r-- | extra/rxvt-unicode/.md5sum (renamed from test/rxvt-unicode/.md5sum) | 3 | ||||
-rw-r--r-- | extra/rxvt-unicode/Pkgfile (renamed from test/rxvt-unicode/Pkgfile) | 14 | ||||
-rw-r--r-- | extra/rxvt-unicode/font-width-fix.patch (renamed from test/rxvt-unicode/font-width-fix.patch) | 0 | ||||
-rw-r--r-- | extra/rxvt-unicode/rxvt-unicode.desktop (renamed from test/rxvt-unicode/rxvt-unicode.desktop) | 0 | ||||
-rw-r--r-- | extra/rxvt-unicode/rxvt-unicode.png (renamed from test/rxvt-unicode/rxvt-unicode.png) | bin | 1513 -> 1513 bytes | |||
-rw-r--r-- | test/rxvt-unicode/gcc4.4.patch | 23 |
7 files changed, 4 insertions, 36 deletions
diff --git a/test/rxvt-unicode/.footprint b/extra/rxvt-unicode/.footprint index f4c14ca0f..f4c14ca0f 100644 --- a/test/rxvt-unicode/.footprint +++ b/extra/rxvt-unicode/.footprint diff --git a/test/rxvt-unicode/.md5sum b/extra/rxvt-unicode/.md5sum index 5c84aa833..224e2225e 100644 --- a/test/rxvt-unicode/.md5sum +++ b/extra/rxvt-unicode/.md5sum @@ -1,5 +1,4 @@ df0c3a8b6bb0578d1b91e4081c47881c font-width-fix.patch -9ef634386594969e106f0858a2e6df8c gcc4.4.patch -4cb9330e99fc0b0b05cebf3581557dd8 rxvt-unicode-9.06.tar.bz2 +49bb52c99e002bf85eb41d8385d903b5 rxvt-unicode-9.07.tar.bz2 ef2dfa44a86cae36a60f45559d8ad783 rxvt-unicode.desktop 84328cada91751df07324d95f8be4d1b rxvt-unicode.png diff --git a/test/rxvt-unicode/Pkgfile b/extra/rxvt-unicode/Pkgfile index 811717734..b0674f7f3 100644 --- a/test/rxvt-unicode/Pkgfile +++ b/extra/rxvt-unicode/Pkgfile @@ -2,16 +2,15 @@ # URL:http://software.schmorp.de/pkg/rxvt-unicode.html # Maintainer: NuTyX packager team # Packager: lesibel at free dot fr -# Depends on: xorg-libxft +# Depends on: xorg-libxft, p5-xml-parser name=rxvt-unicode -version=9.06 +version=9.07 release=1 source=(http://dist.schmorp.de/$name/$name-$version.tar.bz2 \ rxvt-unicode.desktop \ rxvt-unicode.png \ - font-width-fix.patch \ - gcc4.4.patch) + font-width-fix.patch ) build() { cd $name-$version @@ -21,9 +20,6 @@ build() { # Fix font width bug fix patch -p0 -i ../font-width-fix.patch || return 1 - # Port to compile with GCC4.4 - patch -p0 -i ../gcc4.4.patch - ./configure --prefix=/usr \ --with-terminfo=/usr/share/terminfo \ --with-term=rxvt-256color \ @@ -41,10 +37,6 @@ build() { make make DESTDIR=$PKG install -# install -d $PKG/usr/share/terminfo -# export TERMINFO=$PKG/usr/share/terminfo -# make DESTDIR=$PKG install - # install the tabbing wrapper sed -i 's/\"rxvt\"/"urxvt"/' doc/rxvt-tabbed install -D -m755 doc/rxvt-tabbed $PKG/usr/bin/urxvt-tabbed diff --git a/test/rxvt-unicode/font-width-fix.patch b/extra/rxvt-unicode/font-width-fix.patch index 811d9e615..811d9e615 100644 --- a/test/rxvt-unicode/font-width-fix.patch +++ b/extra/rxvt-unicode/font-width-fix.patch diff --git a/test/rxvt-unicode/rxvt-unicode.desktop b/extra/rxvt-unicode/rxvt-unicode.desktop index c6169949f..c6169949f 100644 --- a/test/rxvt-unicode/rxvt-unicode.desktop +++ b/extra/rxvt-unicode/rxvt-unicode.desktop diff --git a/test/rxvt-unicode/rxvt-unicode.png b/extra/rxvt-unicode/rxvt-unicode.png Binary files differindex 0738a7840..0738a7840 100644 --- a/test/rxvt-unicode/rxvt-unicode.png +++ b/extra/rxvt-unicode/rxvt-unicode.png diff --git a/test/rxvt-unicode/gcc4.4.patch b/test/rxvt-unicode/gcc4.4.patch deleted file mode 100644 index 06be6c4ba..000000000 --- a/test/rxvt-unicode/gcc4.4.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- src/command.C.old 2009-05-28 15:21:04.457772957 +0200 -+++ src/command.C 2009-05-28 15:18:52.684597530 +0200 -@@ -3336,7 +3336,7 @@ - } - else - { -- char *eq = strchr (str, '='); // constness lost, but verified to be ok -+ char *eq = (char *) strchr ( str, '='); // constness lost, but verified to be ok - - if (eq) - { ---- src/misc.C.old 2009-05-28 15:21:16.400270603 +0200 -+++ src/misc.C 2009-05-28 15:21:51.697108339 +0200 -@@ -170,7 +170,7 @@ - char * - rxvt_basename (const char *str) NOTHROW - { -- char *base = strrchr (str, '/'); -+ char *base = (char *) strrchr (str, '/'); - - return (char *) (base ? base + 1 : str); - } - |