# HG changeset patch # User Aleksej Bobylev # Date 1461934989 -10800 # Node ID 15f961c96e6254c9ef8c5de65b90c19cb8dd9267 # Parent e0f5430541075f2f7a1d41a37d7a92afe6734c26 Tiny edits: use Freedesktop standard icons for terminal and text editor... diff -r e0f543054107 -r 15f961c96e62 aterm/stuff/aterm.desktop --- a/aterm/stuff/aterm.desktop Fri Apr 29 12:53:30 2016 +0200 +++ b/aterm/stuff/aterm.desktop Fri Apr 29 16:03:09 2016 +0300 @@ -29,5 +29,5 @@ GenericName[zh_CN]=终端程序 GenericName[zh_TW]=終端機程式 Exec=aterm -Icon=terminal +Icon=utilities-terminal Categories=System;TerminalEmulator; diff -r e0f543054107 -r 15f961c96e62 leafpad/stuff/leafpad.desktop --- a/leafpad/stuff/leafpad.desktop Fri Apr 29 12:53:30 2016 +0200 +++ b/leafpad/stuff/leafpad.desktop Fri Apr 29 16:03:09 2016 +0300 @@ -7,6 +7,6 @@ Name[ru]=Текстовый редактор Leafpad Name[zh_CN]=Leafpad文本编辑器 Exec=leafpad %f -Icon=leafpad +Icon=accessories-text-editor Categories=GTK;Utility;TextEditor; MimeType=text/plain; diff -r e0f543054107 -r 15f961c96e62 links/stuff/links.desktop --- a/links/stuff/links.desktop Fri Apr 29 12:53:30 2016 +0200 +++ b/links/stuff/links.desktop Fri Apr 29 16:03:09 2016 +0300 @@ -1,10 +1,10 @@ [Desktop Entry] -Encoding=UTF-8 +Type=Application Name=Links Web browser -Name[fr]=Navigateur Web Links +Name[fr]=Navigateur Web Links Name[pt]=Navegador web Links Name[pt_BR]=Navegador web Links +Name[ru]=Браузер Links Exec=links -g file:///usr/share/webhome/links.html Icon=links -Type=Application -Categories=Network; +Categories=Network;WebBrowser; diff -r e0f543054107 -r 15f961c96e62 nano/stuff/nano.desktop --- a/nano/stuff/nano.desktop Fri Apr 29 12:53:30 2016 +0200 +++ b/nano/stuff/nano.desktop Fri Apr 29 16:03:09 2016 +0300 @@ -9,5 +9,5 @@ Comment[fr]=Editeur de texte avançé Comment[ru]=Консольный текстовый редактор Exec=terminal -e nano -Icon=nano +Icon=accessories-text-editor Categories=ConsoleOnly;Utility;TextEditor; diff -r e0f543054107 -r 15f961c96e62 nano/stuff/nano.png Binary file nano/stuff/nano.png has changed diff -r e0f543054107 -r 15f961c96e62 urxvt-full/receipt --- a/urxvt-full/receipt Fri Apr 29 12:53:30 2016 +0200 +++ b/urxvt-full/receipt Fri Apr 29 16:03:09 2016 +0300 @@ -24,10 +24,13 @@ # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --enable-everything --enable-256-color \ - --with-terminfo=/usr/share/terminfo $CONFIGURE_ARGS && \ + ./configure \ + --enable-everything \ + --enable-256-color \ + --with-terminfo=/usr/share/terminfo \ + $CONFIGURE_ARGS && make && make install + R="$install/usr/share/terminfo"; mkdir -p $R tic -s -o $R $src/doc/etc/rxvt-unicode.terminfo } @@ -37,5 +40,4 @@ { cp -a $install/* $fs rm -rf $fs/usr/share/man - P="$fs/usr/share/pixmaps"; mkdir -p $P; cp -a $stuff/urxvt.png $P } diff -r e0f543054107 -r 15f961c96e62 urxvt-full/stuff/urxvt-full.desktop --- a/urxvt-full/stuff/urxvt-full.desktop Fri Apr 29 12:53:30 2016 +0200 +++ b/urxvt-full/stuff/urxvt-full.desktop Fri Apr 29 16:03:09 2016 +0300 @@ -1,9 +1,8 @@ [Desktop Entry] -Encoding=UTF-8 +Type=Application Name=Urxvt-full GenericName=Unicode Terminal Comment=Terminal emulator with unicode CJK support Exec=urxvt -bg black -fg white -cr orange -pr green -Icon=urxvt -Type=Application +Icon=utilities-terminal Categories=Utility;Terminal; diff -r e0f543054107 -r 15f961c96e62 urxvt-full/stuff/urxvt.png Binary file urxvt-full/stuff/urxvt.png has changed diff -r e0f543054107 -r 15f961c96e62 urxvt/receipt --- a/urxvt/receipt Fri Apr 29 12:53:30 2016 +0200 +++ b/urxvt/receipt Fri Apr 29 16:03:09 2016 +0300 @@ -12,16 +12,20 @@ WGET_URL="http://dist.schmorp.de/rxvt-unicode/$TARBALL" TAGS="terminal" -DEPENDS="fontconfig xorg-libX11 expat freetype xorg-libXft zlib gcc-lib-base xorg-xmessage" +DEPENDS="fontconfig xorg-libX11 expat freetype xorg-libXft zlib gcc-lib-base \ +xorg-xmessage" # Rules to configure and make the package. compile_rules() { - cd $src busybox patch -p0 -i $stuff/gcc.u - ./configure --prefix=/usr --infodir=/usr/share/info \ - --disable-perl --with-codesets='eu' \ - --mandir=/usr/share/man $CONFIGURE_ARGS && \ + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --disable-perl \ + --with-codesets='eu' \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && \ make && make DESTDIR=$DESTDIR install } @@ -31,4 +35,3 @@ mkdir -p $fs/usr cp -a $install/usr/bin $fs/usr } - diff -r e0f543054107 -r 15f961c96e62 urxvt/stuff/urxvt.desktop --- a/urxvt/stuff/urxvt.desktop Fri Apr 29 12:53:30 2016 +0200 +++ b/urxvt/stuff/urxvt.desktop Fri Apr 29 16:03:09 2016 +0300 @@ -5,5 +5,5 @@ Comment=Terminal emulator with unicode support Comment[ru]=Эмулятор терминала с поддержкой юникода Exec=urxvt -bg black -fg white -cr orange -pr green -Icon=urxvt +Icon=utilities-terminal Categories=System;TerminalEmulator; diff -r e0f543054107 -r 15f961c96e62 urxvt/stuff/urxvt.png Binary file urxvt/stuff/urxvt.png has changed diff -r e0f543054107 -r 15f961c96e62 xterm/stuff/xterm.desktop --- a/xterm/stuff/xterm.desktop Fri Apr 29 12:53:30 2016 +0200 +++ b/xterm/stuff/xterm.desktop Fri Apr 29 16:03:09 2016 +0300 @@ -4,5 +4,5 @@ Name[fr]=Terminal Xterm Name[ru]=Терминал XTerm Exec=xterm -ls -Icon=xterm +Icon=utilities-terminal Categories=System;TerminalEmulator;