User Tools

Site Tools


en:opensuse

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:opensuse [2010/09/09 20:09] zeten:opensuse [2019/04/28 13:53] (current) – external edit 127.0.0.1
Line 23: Line 23:
  
 <code> <code>
-cd /home+cd ~
 rm psi -r rm psi -r
 </code> </code>
Line 30: Line 30:
  
 <code> <code>
-cd /home+cd ~
 git clone git://git.psi-im.org/psi.git git clone git://git.psi-im.org/psi.git
 cd psi cd psi
Line 47: Line 47:
  
 <code> <code>
-cd /home+cd ~
 svn co http://psi-dev.googlecode.com/svn/trunk/patches/ psi svn co http://psi-dev.googlecode.com/svn/trunk/patches/ psi
 cd psi cd psi
 cat *.diff|patch -p1 cat *.diff|patch -p1
 +</code>
 +
 +Download iconsets needed to build and put the current revision to Psi+:
 +
 +<code>
 +cd ~/psi
 +svn export --force http://psi-dev.googlecode.com/svn/trunk/iconsets/system/default iconsets/system/default
 +svn export --force http://psi-dev.googlecode.com/svn/trunk/iconsets/roster/default iconsets/roster/default
 +rev=`svnversion`
 +sed "s/\(xxx\)/${rev}/" -i src/applicationinfo.cpp
 </code> </code>
  
Line 56: Line 66:
  
 <code> <code>
-cd /home/psi/+cd ~/psi
 qconf && ./configure --enable-plugins && make && make install qconf && ./configure --enable-plugins && make && make install
 </code> </code>
Line 101: Line 111:
  
  
-==== Настроения ====+==== Moods ====
  
 <code> <code>
Line 114: Line 124:
  
  
-==== Русская локализация ====+==== Russian localization ====
  
 <code> <code>
Line 123: Line 133:
  
  
-===== Сборка rpm-пакета =====+===== Building rpm package =====
  
  
  
-==== Собираем исходные коды и патчи ====+==== Building source code and patches ====
  
 <code> <code>
 #!/bin/sh #!/bin/sh
 # #
-#переменные+#variables
-#$USER - имя пользователя в системе+#$USER - username in the system
 home=/home/$USER home=/home/$USER
 psi=/home/$USER/psi_dev psi=/home/$USER/psi_dev
-#примечаниедля архитектуры x86_64 заменить app_info на $(ls /home/$USER/psi_dev/psi/ | grep application-info.diff)+#notefor the x86_64 architecture replace app_info to $(ls /home/$USER/psi_dev/psi/ | grep application-info.diff)
 app_info=ls /home/$USER/psi_dev/psi/ | grep application-info.diff app_info=ls /home/$USER/psi_dev/psi/ | grep application-info.diff
 build_root=/usr/src/packages/ build_root=/usr/src/packages/
-#примечаниедля архитектуры x86_64 заменить rev на $(svnversion "$/home/$USER/psi_dev/patches")+#notefor the x86_64 architecture replace rev to $(svnversion "$/home/$USER/psi_dev/patches")
 rev=`svnversion "$/home/$USER/psi_dev/patches"` rev=`svnversion "$/home/$USER/psi_dev/patches"`
 cd ${home} cd ${home}
Line 164: Line 174:
 </code> </code>
  
-__**Примечание**__: данный скрипт сам собирает исходные коды и подготавливает их к сброке в rpm-пакет (необходимо запускать с __правами root__).+__**Note**__: This script was going to the source code and prepares them for build a rpm-package (require root privileges). 
 + 
 + 
  
  
  
-==== Для сборки rpm-пакета необходим spec-файл ====+==== To build the rpm package requires spec file ====
  
 <code> <code>
-Summary: Client application for the Jabber network      +Summary: Client application for the XMPP network      
 Name: psi                                                Name: psi                                               
 Version: 0.15_dev                                        Version: 0.15_dev                                       
Line 190: Line 203:
 %description %description
 Psi is the premiere Instant Messaging application designed for Microsoft Windows,  Psi is the premiere Instant Messaging application designed for Microsoft Windows, 
-Apple Mac OS X and GNU/Linux. Built upon an open protocol named Jabber,           +Apple Mac OS X and GNU/Linux. Built upon an open protocol named XMPP,           
 si is a fast and lightweight messaging client that utilises the best in open       si is a fast and lightweight messaging client that utilises the best in open      
 source technologies. The goal of the Psi project is to create a powerful, yet      source technologies. The goal of the Psi project is to create a powerful, yet     
-easy-to-use Jabber/XMPP client that tries to strictly adhere to the XMPP drafts.   +easy-to-use XMPP client that tries to strictly adhere to the XMPP drafts.   
-and Jabber JEPs. This means that in most cases, Psi will not implement a feature   +and XMPP JEPs. This means that in most cases, Psi will not implement a feature   
-unless there is an accepted standard for it in the Jabber community. Doing so     +unless there is an accepted standard for it in the XMPP community. Doing so     
 ensures that Psi will be compatible, stable, and predictable, both from an end-user  ensures that Psi will be compatible, stable, and predictable, both from an end-user 
 and developer standpoint.                                                            and developer standpoint.                                                           
Line 206: Line 219:
 %build %build
 qconf qconf
-#для сборки без webkit'a нужно удалить флаг *--enable-qtwebkit*+to build without webkit you need to remove the flag *-- enable-qtwebkit*
 ./configure --prefix="%{_prefix}" --bindir="%{_bindir}" --datadir="%{_datadir}" --qtdir=$QTDIR --enable-plugins --enable-qtwebkit --no-separate-debug-info ./configure --prefix="%{_prefix}" --bindir="%{_bindir}" --datadir="%{_datadir}" --qtdir=$QTDIR --enable-plugins --enable-qtwebkit --no-separate-debug-info
 %{__make} %{?_smp_mflags}                                                                                                                %{__make} %{?_smp_mflags}                                                                                                               
Line 249: Line 262:
 </code> </code>
  
-__**Примечание**__: spec-файл нужно сохранить в **/usr/src/packages/SPECS/psi.spec**+__**Note**__: spec file needs to save at the **/usr/src/packages/SPECS/psi.spec**
  
  
Line 255: Line 268:
  
  
-==== Сборка rpm-пакета ====+==== Building rpm package ====
  
 <code> <code>
Line 264: Line 277:
  
  
-__**Примечание**__: Флаг **-bb** указывает программе на сборку бинарного пакетаПосле удачной сборки пакет можно забрать из директории **/usr/src/packages/RPMS/$архитектура-процессора**.+__**Note**__: Flag **- bb ** indicates program to build a binary packageAfter successful build of the package can be picked up from the directory **/usr/src/packages/RPMS/$processor-architecture**.
  
-И установить командой+And install by the command
  
 <code> <code>
Line 274: Line 287:
  
  
-===== В заключении =====+===== Finally =====
  
 Enjoy ;-) Enjoy ;-)
en/opensuse.1284062951.txt.gz · Last modified: 2010/10/17 15:36 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki