bitlbee: moved to attic

This commit is contained in:
Tilman Sauerbeck 2006-10-18 17:06:56 +00:00
parent d116872edb
commit ba2929cdc5
5 changed files with 0 additions and 79 deletions

View File

@ -1,18 +0,0 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/etc/
drwxr-xr-x root/root usr/etc/bitlbee/
-rw-r--r-- root/root usr/etc/bitlbee/bitlbee.conf
-rw-r--r-- root/root usr/etc/bitlbee/motd.txt
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man5/
-rw-r--r-- root/root usr/man/man5/bitlbee.conf.5.gz
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/bitlbee.8.gz
drwxr-xr-x root/root usr/sbin/
-rwxr-x--- root/bitlbee usr/sbin/bitlbee
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/bitlbee/
-rw-r--r-- root/root usr/share/bitlbee/help.txt
drwxr-xr-x root/root var/
drwxr-xr-x root/root var/lib/
drwx------ bitlbee/bitlbee var/lib/bitlbee/

View File

@ -1 +0,0 @@
e46682d54cbd6265dd4436b3b6838d63 bitlbee-1.0.3.tar.gz

View File

@ -1,29 +0,0 @@
# Description: IRC proxy to connect to ICQ, AOL, MSN and Jabber
# URL: http://www.bitlbee.org/
# Maintainer:
# Packager: Jukka Heino, jukka dot heino at gmail dot com
# Depends on: glib, openssl
name=bitlbee
version=1.0.3
release=1
source=(http://get.$name.org/src/$name-$version.tar.gz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--etcdir=/usr/etc/$name \
--config=/var/lib/$name \
--mandir=/usr/man \
--ssl=openssl
make
make DESTDIR=$PKG install
make DESTDIR=$PKG install-etc
mkdir -p $PKG/var/lib/bitlbee
chown bitlbee:bitlbee $PKG/var/lib/bitlbee
chmod 0700 $PKG/var/lib/bitlbee
chmod 0750 $PKG/usr/sbin/$name
chown root:bitlbee $PKG/usr/sbin/$name
}

View File

@ -1,19 +0,0 @@
REQUIREMENTS
PRE-INSTALL
Run the pre-install script with "sh pre-install" to create the 'bitlbee'
user and group.
POST-INSTALL
Add the following to /etc/inetd.conf:
ircd stream tcp nowait bitlbee /usr/sbin/bitlbee bitlbee
Start or restart inetd. Now you should be able to connect 127.0.0.1:6667
with your IRC client. You might want to add inetd to the SERVICES array
in /etc/rc.conf and set up a firewall or modify /etc/hosts.deny to stop
outsiders from accessing your BitlBee gateway.
PRECAUTION

View File

@ -1,12 +0,0 @@
#!/bin/sh
/usr/bin/grep -q ^bitlbee: /etc/group
if [ $? -eq 1 ] ; then
/usr/sbin/groupadd bitlbee
fi
/usr/bin/grep -q ^bitlbee: /etc/passwd
if [ $? -eq 1 ] ; then
/usr/sbin/useradd -g bitlbee -c BitlBee -d /var/lib/bitlbee -s /bin/false bitlbee
/usr/bin/passwd -l bitlbee
fi