1
0
forked from ports/opt

Initial import of opt ports from old base/opt.

This commit is contained in:
Per Lidn 2005-11-10 00:34:36 +00:00
parent 575fab944c
commit 429837f860
40 changed files with 1598 additions and 0 deletions

20
audiofile/.footprint Normal file
View File

@ -0,0 +1,20 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/audiofile-config
-rwxr-xr-x root/root usr/bin/sfconvert
-rwxr-xr-x root/root usr/bin/sfinfo
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/af_vfs.h
-rw-r--r-- root/root usr/include/audiofile.h
-rw-r--r-- root/root usr/include/aupvlist.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libaudiofile.a
-rwxr-xr-x root/root usr/lib/libaudiofile.la
lrwxrwxrwx root/root usr/lib/libaudiofile.so -> libaudiofile.so.0.0.2
lrwxrwxrwx root/root usr/lib/libaudiofile.so.0 -> libaudiofile.so.0.0.2
-rwxr-xr-x root/root usr/lib/libaudiofile.so.0.0.2
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/audiofile.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/aclocal/
-rw-r--r-- root/root usr/share/aclocal/audiofile.m4

1
audiofile/.md5sum Normal file
View File

@ -0,0 +1 @@
9c1049876cd51c0f1b12c2886cce4d42 audiofile-0.2.6.tar.gz

14
audiofile/Pkgfile Normal file
View File

@ -0,0 +1,14 @@
# $Id: Pkgfile,v 1.7 2004/03/07 19:36:18 per Exp $
# Maintainer: Per Lidén <per@fukt.bth.se>
name=audiofile
version=0.2.6
release=1
source=(http://www.68k.org/~michael/audiofile/$name-$version.tar.gz)
build () {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}

16
bftpd/.footprint Normal file
View File

@ -0,0 +1,16 @@
drwxr-xr-x root/root etc/
-rw------- root/root etc/bftpd.conf
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/ftpd
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/bftpd.8.gz
drwxr-xr-x root/root usr/sbin/
-rwx------ root/root usr/sbin/bftpd
lrwxrwxrwx root/root usr/sbin/in.ftpd -> bftpd
drwxr-xr-x root/root var/
drwxr-xr-x root/root var/log/
-rw-r--r-- root/root var/log/bftpd (EMPTY)
drwxr-xr-x root/root var/run/
-rw-r--r-- root/root var/run/bftpdutmp (EMPTY)

3
bftpd/.md5sum Normal file
View File

@ -0,0 +1,3 @@
0c35b6eb9ed83cd309fee096ca92b4d6 bftpd-1.0.24.patch
74b1c2bad8fe85d78c8fa67cbf135bed bftpd-1.0.24.tar.gz
a6a2a3522075a9453413d97e168c9a09 ftpd

20
bftpd/Pkgfile Normal file
View File

@ -0,0 +1,20 @@
# $Id: Pkgfile,v 1.7 2004/05/01 18:20:48 per Exp $
# Maintainer: Per Lidén <per@fukt.bth.se>
name=bftpd
version=1.0.24
release=3
source=(http://bftpd.sourceforge.net/downloads/src/$name-$version.tar.gz \
$name-$version.patch ftpd)
build () {
cd $name-$version
patch -p1 < ../$name-$version.patch
./configure --prefix=/usr --enable-libz
make
mkdir -p $PKG/usr/sbin $PKG/usr/man/man8 $PKG/etc $PKG/etc/rc.d
make DESTDIR=$PKG install
install -D -m 755 ../ftpd $PKG/etc/rc.d/ftpd
chmod 600 $PKG/etc/bftpd.conf
ln -sf bftpd $PKG/usr/sbin/in.ftpd
}

70
bftpd/bftpd-1.0.24.patch Normal file
View File

@ -0,0 +1,70 @@
diff -ru bftpd-1.0.24/Makefile.in bftpd-1.0.24-new/Makefile.in
--- bftpd-1.0.24/Makefile.in 2003-05-09 23:47:48.000000000 +0200
+++ bftpd-1.0.24-new/Makefile.in 2003-05-11 12:20:20.000000000 +0200
@@ -30,10 +30,9 @@
$(INSTALL) -g 0 -m 644 -o 0 bftpd.8 $(DESTDIR)/$(mandir)/man8
[ -f $(DESTDIR)/etc/bftpd.conf ] || \
$(INSTALL) -g 0 -m 600 -o 0 bftpd.conf $(DESTDIR)/etc
- touch /var/log/bftpd.log
- chmod 644 /var/log/bftpd.log
- mkdir -p /var/run/bftpd
- chmod 755 /var/run/bftpd
+ mkdir -p $(DESTDIR)/var/{log,run}
+ touch $(DESTDIR)/var/{log/bftpd,run/bftpdutmp}
+ chmod 644 $(DESTDIR)/var/{log/bftpd,run/bftpdutmp}
clean distclean:
rm -f *~ $(OBJS) bftpd mksources.finished
diff -ru bftpd-1.0.24/bftpd.conf bftpd-1.0.24-new/bftpd.conf
--- bftpd-1.0.24/bftpd.conf 2003-05-09 23:47:48.000000000 +0200
+++ bftpd-1.0.24-new/bftpd.conf 2003-05-11 12:23:14.000000000 +0200
@@ -1,5 +1,6 @@
-#Configuration file for bftpd.
-#The given values are only examples, modify this file for your own needs.
+#
+# /etc/bftpd.conf: bftpd(8) configuration
+#
global {
@@ -53,7 +54,7 @@
#Note that the directory in which the file resides must already exist.
#Set the option to "" if you do not want that. This is discouraged for normal
#use, but can be helpful if you want to create a boot floppy or something.
- PATH_BFTPDUTMP="/var/run/bftpd/bftpdutmp"
+ PATH_BFTPDUTMP="/var/run/bftpdutmp"
#This option controls the buffer size while transferring files.
#If you are on a very fast network (fast meaning 100 Mbit/s or more),
@@ -70,11 +71,11 @@
ALLOW_FXP="no"
#After how many seconds of idle time should a user be kicked from the server?
- CONTROL_TIMEOUT="300"
+ CONTROL_TIMEOUT="0"
#After how many seconds of idle time should a user be kicked from the server
#during a file transfer?
- DATA_TIMEOUT="30"
+ DATA_TIMEOUT="60"
#Use Ratio if you want the client to send a file before he can get a file.
#Usage: RATIO=send/receive or RATIO=none. Example: RATIO=2/1 lets the client
@@ -90,7 +91,7 @@
#Name of the log file. Say "syslog" to log into syslog.
#Say "" for no logging.
- LOGFILE="/var/log/bftpd.log"
+ LOGFILE="/var/log/bftpd"
#Use %v for version, %h for the server FQDN and %i for the server IP address.
HELLO_STRING="bftpd %v at %i ready."
@@ -171,7 +172,7 @@
user ftp {
#Any password fits.
- ANONYMOUS_USER="yes"
+ ANONYMOUS_USER="no"
}
user anonymous {

23
bftpd/ftpd Executable file
View File

@ -0,0 +1,23 @@
#!/bin/sh
#
# /etc/rc.d/ftpd: start/stop ftp daemon
#
case $1 in
start)
/usr/sbin/bftpd -d
;;
stop)
killall -q /usr/sbin/bftpd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file

6
dialog/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/dialog
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/dialog.1.gz

1
dialog/.md5sum Normal file
View File

@ -0,0 +1 @@
0c133cb4bd01cdb34984095b90a29b18 dialog-1.0-20051107.tgz

14
dialog/Pkgfile Normal file
View File

@ -0,0 +1,14 @@
# $Id: Pkgfile,v 1.27 2005/11/09 23:15:35 per Exp $
# Maintainer: Per Lidén <per@fukt.bth.se>
name=dialog
version=1.0-20051107
release=1
source=(ftp://dickey.his.com/dialog/$name-$version.tgz)
build () {
cd $name-$version
./configure --prefix=/usr --with-ncurses
make
make DESTDIR=$PKG install
}

1060
emacs/.footprint Normal file

File diff suppressed because it is too large Load Diff

1
emacs/.md5sum Normal file
View File

@ -0,0 +1 @@
8f9d97cbd126121bd5d97e5e31168a87 emacs-21.4a.tar.gz

23
emacs/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# $Id: Pkgfile,v 1.11 2005/03/21 22:07:03 per Exp $
# Maintainer: Per Lidén <per@fukt.bth.se>
name=emacs
version=21.4a
release=1
source=(http://mirrors.sunsite.dk/gnu/$name/$name-$version.tar.gz)
build() {
cd $name-21.4
./configure --prefix=/usr \
--libexecdir=/usr/lib \
--with-x
make
make prefix=$PKG/usr libexecdir=$PKG/usr/lib install
rm -rf $PKG/usr/bin/emacs-21.4 $PKG/usr/info
find $PKG/usr/share/emacs -name "*.el" | while read file; do
[ -f ${file}c ] && rm -f $file
done
chown -R root.root $PKG
find $PKG/usr/share -type d -exec chmod 755 {} \;
find $PKG/usr/share -type f -exec chmod 644 {} \;
}

49
esound/.footprint Normal file
View File

@ -0,0 +1,49 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/esound
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/esd
-rwxr-xr-x root/root usr/bin/esd-config
-rwxr-xr-x root/root usr/bin/esdcat
-rwxr-xr-x root/root usr/bin/esdctl
-rwxr-xr-x root/root usr/bin/esddsp
-rwxr-xr-x root/root usr/bin/esdfilt
-rwxr-xr-x root/root usr/bin/esdloop
-rwxr-xr-x root/root usr/bin/esdmon
-rwxr-xr-x root/root usr/bin/esdplay
-rwxr-xr-x root/root usr/bin/esdrec
-rwxr-xr-x root/root usr/bin/esdsample
drwxr-xr-x root/root usr/etc/
-rw-r--r-- root/root usr/etc/esd.conf
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/esd.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libesd.a
-rwxr-xr-x root/root usr/lib/libesd.la
lrwxrwxrwx root/root usr/lib/libesd.so -> libesd.so.0.2.36
lrwxrwxrwx root/root usr/lib/libesd.so.0 -> libesd.so.0.2.36
-rwxr-xr-x root/root usr/lib/libesd.so.0.2.36
-rw-r--r-- root/root usr/lib/libesddsp.a
-rwxr-xr-x root/root usr/lib/libesddsp.la
lrwxrwxrwx root/root usr/lib/libesddsp.so -> libesddsp.so.0.2.36
lrwxrwxrwx root/root usr/lib/libesddsp.so.0 -> libesddsp.so.0.2.36
-rwxr-xr-x root/root usr/lib/libesddsp.so.0.2.36
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/esound.pc
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/esd-config.1.gz
-rw-r--r-- root/root usr/man/man1/esd.1.gz
-rw-r--r-- root/root usr/man/man1/esdcat.1.gz
-rw-r--r-- root/root usr/man/man1/esdctl.1.gz
-rw-r--r-- root/root usr/man/man1/esddsp.1.gz
-rw-r--r-- root/root usr/man/man1/esdfilt.1.gz
-rw-r--r-- root/root usr/man/man1/esdloop.1.gz
-rw-r--r-- root/root usr/man/man1/esdmon.1.gz
-rw-r--r-- root/root usr/man/man1/esdplay.1.gz
-rw-r--r-- root/root usr/man/man1/esdrec.1.gz
-rw-r--r-- root/root usr/man/man1/esdsample.1.gz
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/aclocal/
-rw-r--r-- root/root usr/share/aclocal/esd.m4

2
esound/.md5sum Normal file
View File

@ -0,0 +1,2 @@
b76ef759b72bdf67754e79a6eb139cd2 esound
f2ba3597ef584f4eed7a8aa0ce875c2d esound-0.2.36.tar.gz

16
esound/Pkgfile Normal file
View File

@ -0,0 +1,16 @@
# $Id: Pkgfile,v 1.7 2005/07/19 23:58:23 per Exp $
# Maintainer: Per Lidén <per@fukt.bth.se>
name=esound
version=0.2.36
release=1
source=(http://ftp.gnome.org/pub/GNOME/sources/esound/0.2/$name-$version.tar.gz \
esound)
build () {
cd $name-$version
./configure --prefix=/usr --with-audiofile
make
make DESTDIR=$PKG install
install -D -m 755 ../esound $PKG/etc/rc.d/esound
}

23
esound/esound Executable file
View File

@ -0,0 +1,23 @@
#!/bin/sh
#
# /etc/rc.d/esound: start/stop esound daemon
#
case $1 in
start)
/usr/bin/esd -nobeeps &
;;
stop)
killall -q /usr/bin/esd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file

6
fetchmail/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/fetchmail
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/fetchmail.1.gz

1
fetchmail/.md5sum Normal file
View File

@ -0,0 +1 @@
9956b30139edaa4f5f77c4d0dbd80225 fetchmail-6.2.5.tar.gz

15
fetchmail/Pkgfile Normal file
View File

@ -0,0 +1,15 @@
# $Id: Pkgfile,v 1.13 2003/10/17 12:17:04 per Exp $
# Maintainer: Per Lidén <per@fukt.bth.se>
name=fetchmail
version=6.2.5
release=1
source=(http://catb.org/~esr/fetchmail/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr --with-ssl=/usr --disable-nls
make
make DESTDIR=$PKG install
rm $PKG/usr/bin/fetchmailconf $PKG/usr/man/man?/fetchmailconf.?
}

17
libogg/.footprint Normal file
View File

@ -0,0 +1,17 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/ogg/
-rw-r--r-- root/root usr/include/ogg/config_types.h
-rw-r--r-- root/root usr/include/ogg/ogg.h
-rw-r--r-- root/root usr/include/ogg/os_types.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libogg.a
-rwxr-xr-x root/root usr/lib/libogg.la
lrwxrwxrwx root/root usr/lib/libogg.so -> libogg.so.0.5.2
lrwxrwxrwx root/root usr/lib/libogg.so.0 -> libogg.so.0.5.2
-rwxr-xr-x root/root usr/lib/libogg.so.0.5.2
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/ogg.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/aclocal/
-rw-r--r-- root/root usr/share/aclocal/ogg.m4

1
libogg/.md5sum Normal file
View File

@ -0,0 +1 @@
4d82996517bf33bb912c97e9d0b635c4 libogg-1.1.2.tar.gz

15
libogg/Pkgfile Normal file
View File

@ -0,0 +1,15 @@
# $Id: Pkgfile,v 1.5 2004/09/26 18:41:43 per Exp $
# Maintainer: Per Lidén <per@fukt.bth.se>
name=libogg
version=1.1.2
release=1
source=(http://downloads.xiph.org/releases/ogg/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}

29
libvorbis/.footprint Normal file
View File

@ -0,0 +1,29 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/vorbis/
-rw-r--r-- root/root usr/include/vorbis/codec.h
-rw-r--r-- root/root usr/include/vorbis/vorbisenc.h
-rw-r--r-- root/root usr/include/vorbis/vorbisfile.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libvorbis.a
-rwxr-xr-x root/root usr/lib/libvorbis.la
lrwxrwxrwx root/root usr/lib/libvorbis.so -> libvorbis.so.0.3.0
lrwxrwxrwx root/root usr/lib/libvorbis.so.0 -> libvorbis.so.0.3.0
-rwxr-xr-x root/root usr/lib/libvorbis.so.0.3.0
-rw-r--r-- root/root usr/lib/libvorbisenc.a
-rwxr-xr-x root/root usr/lib/libvorbisenc.la
lrwxrwxrwx root/root usr/lib/libvorbisenc.so -> libvorbisenc.so.2.0.1
lrwxrwxrwx root/root usr/lib/libvorbisenc.so.2 -> libvorbisenc.so.2.0.1
-rwxr-xr-x root/root usr/lib/libvorbisenc.so.2.0.1
-rw-r--r-- root/root usr/lib/libvorbisfile.a
-rwxr-xr-x root/root usr/lib/libvorbisfile.la
lrwxrwxrwx root/root usr/lib/libvorbisfile.so -> libvorbisfile.so.3.1.0
lrwxrwxrwx root/root usr/lib/libvorbisfile.so.3 -> libvorbisfile.so.3.1.0
-rwxr-xr-x root/root usr/lib/libvorbisfile.so.3.1.0
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/vorbis.pc
-rw-r--r-- root/root usr/lib/pkgconfig/vorbisenc.pc
-rw-r--r-- root/root usr/lib/pkgconfig/vorbisfile.pc
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/aclocal/
-rw-r--r-- root/root usr/share/aclocal/vorbis.m4

1
libvorbis/.md5sum Normal file
View File

@ -0,0 +1 @@
b77270c24840af4de54bea5ad1c0b252 libvorbis-1.1.1.tar.gz

15
libvorbis/Pkgfile Normal file
View File

@ -0,0 +1,15 @@
# $Id: Pkgfile,v 1.6 2005/07/20 00:09:55 per Exp $
# Maintainer: Per Lidén <per@fukt.bth.se>
name=libvorbis
version=1.1.1
release=1
source=(http://downloads.xiph.org/releases/vorbis/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}

8
pine/.footprint Normal file
View File

@ -0,0 +1,8 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/pico
-rwxr-xr-x root/root usr/bin/pine
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/pico.1.gz
-rw-r--r-- root/root usr/man/man1/pine.1.gz

1
pine/.md5sum Normal file
View File

@ -0,0 +1 @@
39ca07b3d305b4cd0d6aaf4585123275 pine4.64.tar.bz2

18
pine/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# $Id: Pkgfile,v 1.14 2005/11/10 00:17:50 per Exp $
# Maintainer: Per Lidén <per@fukt.bth.se>
name=pine
version=4.64
release=1
source=(ftp://ftp.cac.washington.edu/pine/$name$version.tar.bz2)
build() {
cd $name$version
./build EXTRACFLAGS="$CFLAGS" \
SSLDIR=/usr \
SSLCERTS=/etc/ssl/certs \
slx
mkdir -p $PKG/usr/bin $PKG/usr/man/man1
cp bin/pine bin/pico $PKG/usr/bin
cp doc/pine.1 doc/pico.1 $PKG/usr/man/man1
}

15
procmail/.footprint Normal file
View File

@ -0,0 +1,15 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/formail
-rwxr-xr-x root/root usr/bin/lockfile
-rwxr-xr-x root/root usr/bin/mailstat
-rwsr-xr-x root/root usr/bin/procmail
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/formail.1.gz
-rw-r--r-- root/root usr/man/man1/lockfile.1.gz
-rw-r--r-- root/root usr/man/man1/procmail.1.gz
drwxr-xr-x root/root usr/man/man5/
-rw-r--r-- root/root usr/man/man5/procmailex.5.gz
-rw-r--r-- root/root usr/man/man5/procmailrc.5.gz
-rw-r--r-- root/root usr/man/man5/procmailsc.5.gz

1
procmail/.md5sum Normal file
View File

@ -0,0 +1 @@
1678ea99b973eb77eda4ecf6acae53f1 procmail-3.22.tar.gz

14
procmail/Pkgfile Normal file
View File

@ -0,0 +1,14 @@
# $Id: Pkgfile,v 1.3 2002/09/10 22:11:47 per Exp $
# Maintainer: Per Lidén <per@fukt.bth.se>
name=procmail
version=3.22
release=2
source=(ftp://ftp.procmail.net/pub/procmail/$name-$version.tar.gz)
build() {
cd $name-$version
make CFLAGS0="$CFLAGS" LOCKINGTEST=/tmp all
make BASENAME=$PKG/usr install
make BASENAME=$PKG/usr install-suid
}

9
webfs/.footprint Normal file
View File

@ -0,0 +1,9 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/httpd
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/webfsd
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/webfsd.1.gz

2
webfs/.md5sum Normal file
View File

@ -0,0 +1,2 @@
30cbf8683e3a11aea7a3c5343106fdce httpd
6dc125fe160479404147e7bbfc781dbc webfs-1.21.tar.gz

13
webfs/Pkgfile Normal file
View File

@ -0,0 +1,13 @@
# $Id: Pkgfile,v 1.9 2005/03/22 20:02:59 per Exp $
# Maintainer: Per Lidén <per@fukt.bth.se>
name=webfs
version=1.21
release=2
source=(http://dl.bytesex.org/releases/webfs/webfs-$version.tar.gz httpd)
build() {
cd $name-$version
make prefix=$PKG/usr mandir=$PKG/usr/man install
install -D -m 0755 ../httpd $PKG/etc/rc.d/httpd
}

23
webfs/httpd Executable file
View File

@ -0,0 +1,23 @@
#!/bin/sh
#
# /etc/rc.d/httpd: start/stop http daemon
#
case $1 in
start)
/usr/bin/webfsd -u nobody -g nobody -r /var/www -p 80 -f index.html
;;
stop)
killall -q /usr/bin/webfsd
;;
restart)
$0 stop
sleep 2
$0 start
;;
*)
echo "usage: $0 [start|stop|restart]"
;;
esac
# End of file

8
xchat/.footprint Normal file
View File

@ -0,0 +1,8 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/xchat
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/xchat/
drwxr-xr-x root/root usr/lib/xchat/plugins/
-rwxr-xr-x root/root usr/lib/xchat/plugins/perl.la
-rwxr-xr-x root/root usr/lib/xchat/plugins/perl.so

1
xchat/.md5sum Normal file
View File

@ -0,0 +1 @@
0c827bf6df0572231cbbb1e25965fb61 xchat-2.6.0.tar.bz2

23
xchat/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# $Id: Pkgfile,v 1.19 2005/11/10 00:10:11 per Exp $
# Maintainer: Per Lidén <per@fukt.bth.se>
name=xchat
version=2.6.0
release=1
source=(http://www.xchat.org/files/source/2.6/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--enable-openssl \
--enable-perl \
--enable-ipv6 \
--disable-gnome \
--disable-textfe \
--disable-python \
--disable-tcl \
--disable-nls
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/{etc,share}
}