mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
network/znc: Misc buildscript fixes.
This commit is contained in:
parent
92231b7765
commit
67df1ff636
3 changed files with 8 additions and 23 deletions
|
@ -1,18 +0,0 @@
|
|||
znc README.SLACKWARE
|
||||
|
||||
Once the package is installed, you should create your config file using
|
||||
znc's own interactive utility; run the following command:
|
||||
su - @ZNC_USER@ -c '/usr/bin/znc --makeconf --datadir /etc/znc'
|
||||
|
||||
Since znc is configured to run as a nonprivileged user by default in
|
||||
this build script, you must choose a listening port higher than 1024.
|
||||
|
||||
Once you have answered all the questions, your znc.conf file will be
|
||||
located at /etc/znc/configs/znc.conf
|
||||
|
||||
It should be noted that by default (if run without any arguments), ZNC
|
||||
will look for its configuation file in ~/.znc (which is /etc/znc/.znc
|
||||
as suggested by the build script). This is irrelevant if you are using
|
||||
the init script supplied with the package, but it might be worth knowing
|
||||
just in case.
|
||||
|
|
@ -7,13 +7,13 @@
|
|||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
znc: ZNC (an advanced IRC bouncer)
|
||||
znc:
|
||||
znc:
|
||||
znc: ZNC will remain connected to an IPv4 or IPv6 IRC server even while you
|
||||
znc: are offline. You can reattach your client at a later time and catch up
|
||||
znc: with what happened while you were gone via the history buffer. You can
|
||||
znc: add additional users under one running process, useful for public shells
|
||||
znc: that limit background processes. ZNC also supports the dynamic loading
|
||||
znc: of C++ and Perl modules.
|
||||
znc:
|
||||
znc:
|
||||
znc: Homepage: http://en.znc.in/wiki/ZNC
|
||||
znc:
|
||||
znc:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/sh -e
|
||||
#!/bin/sh
|
||||
|
||||
# Slackware build script for ZNC
|
||||
|
||||
|
@ -59,6 +59,8 @@ if ! grep -q "^$ZNC_USER:" /etc/passwd; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
|
@ -90,6 +92,7 @@ CFLAGS="$SLKCFLAGS" \
|
|||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
|
@ -131,4 +134,4 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
|
|||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
||||
|
|
Loading…
Reference in a new issue