Irssi: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
Weibullguy (talk | contribs) m Categorized |
||
| (7 intermediate revisions by 3 users not shown) | |||
| Line 2: | Line 2: | ||
|- | |- | ||
!Download Source: | !Download Source: | ||
| http://www.irssi.org/files/irssi- | | http://www.irssi.org/files/irssi-{{Irssi-Version}}.tar.bz2 | ||
|- | |- | ||
!Download Patch: | !Download Patch: | ||
| http:// | | http://svn.cross-lfs.org/svn/repos/patches/irssi/irssi-{{Irssi-Version}}-gslice-1.patch | ||
|} | |} | ||
---- | ---- | ||
{{Package-Introduction|Irssi is a terminal based IRC, SILC, and IRB client.|http://www.irssi.org/}} | |||
== Dependencies == | == Dependencies == | ||
| Line 14: | Line 16: | ||
=== Optional === | === Optional === | ||
* [[Pkg-config]] | * [[Pkg-config]] | ||
* [[ | * [[Glib1]] or [[Glib2]] | ||
== Non-Multilib == | == Non-Multilib == | ||
| Line 20: | Line 22: | ||
Compile the package: | Compile the package: | ||
patch -Np1 -i ../irssi- | patch -Np1 -i ../irssi-{{Irssi-Version}}-gslice-1.patch && | ||
./configure --prefix=/usr --sysconfdir=/etc && | ./configure --prefix=/usr --sysconfdir=/etc && | ||
make | make | ||
| Line 29: | Line 31: | ||
== Multilib == | == Multilib == | ||
'''''This package does not provide any libraries so only one installation is needed.''''' | '''''This package does not provide any external libraries so only one installation is needed.''''' | ||
=== 32Bit === | === 32Bit === | ||
| Line 35: | Line 37: | ||
Compile the package: | Compile the package: | ||
patch -Np1 -i ../irssi- | export USE_ARCH=32 && | ||
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" | patch -Np1 -i ../irssi-{{Irssi-Version}}-gslice-1.patch && | ||
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ | |||
./configure --prefix=/usr --sysconfdir=/etc && | ./configure --prefix=/usr --sysconfdir=/etc && | ||
make | make | ||
| Line 42: | Line 45: | ||
Install the package | Install the package | ||
make install | make install && | ||
unset USE_ARCH | |||
=== N32 === | === N32 === | ||
| Line 48: | Line 52: | ||
Compile the package: | Compile the package: | ||
patch -Np1 -i ../irssi- | export USE_ARCH=n32 && | ||
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" | patch -Np1 -i ../irssi-{{Irssi-Version}}-gslice-1.patch && | ||
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ | |||
./configure --prefix=/usr --sysconfdir=/etc && | ./configure --prefix=/usr --sysconfdir=/etc && | ||
make | make | ||
| Line 55: | Line 60: | ||
Install the package | Install the package | ||
make install | make install && | ||
unset USE_ARCH | |||
=== 64Bit === | === 64Bit === | ||
| Line 61: | Line 67: | ||
Compile the package: | Compile the package: | ||
patch -Np1 -i ../irssi- | export USE_ARCH=64 && | ||
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" | patch -Np1 -i ../irssi-{{Irssi-Version}}-gslice-1.patch && | ||
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | |||
./configure --prefix=/usr --libdir=/usr/lib64 --sysconfdir=/etc && | ./configure --prefix=/usr --libdir=/usr/lib64 --sysconfdir=/etc && | ||
make | make | ||
| Line 68: | Line 75: | ||
Install the package | Install the package | ||
make install | make install && | ||
unset USE_ARCH | |||
[[Category:Non-GUI Clients]] | |||
Latest revision as of 18:02, 5 April 2009
| Download Source: | http://www.irssi.org/files/irssi-0.8.10a.tar.bz2 |
|---|---|
| Download Patch: | http://svn.cross-lfs.org/svn/repos/patches/irssi/irssi-0.8.10a-gslice-1.patch |
Introduction to Irssi
Irssi is a terminal based IRC, SILC, and IRB client.
Project Homepage: http://www.irssi.org/
Dependencies
Optional
- Pkg-config
- Glib1 or Glib2
Non-Multilib
Compile the package:
patch -Np1 -i ../irssi-0.8.10a-gslice-1.patch && ./configure --prefix=/usr --sysconfdir=/etc && make
Install the package
make install
Multilib
This package does not provide any external libraries so only one installation is needed.
32Bit
Compile the package:
export USE_ARCH=32 &&
patch -Np1 -i ../irssi-0.8.10a-gslice-1.patch &&
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --sysconfdir=/etc &&
make
Install the package
make install && unset USE_ARCH
N32
Compile the package:
export USE_ARCH=n32 &&
patch -Np1 -i ../irssi-0.8.10a-gslice-1.patch &&
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --sysconfdir=/etc &&
make
Install the package
make install && unset USE_ARCH
64Bit
Compile the package:
export USE_ARCH=64 &&
patch -Np1 -i ../irssi-0.8.10a-gslice-1.patch &&
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 --sysconfdir=/etc &&
make
Install the package
make install && unset USE_ARCH