nail renamed to mailx by author, update to 12.0

This commit is contained in:
Juergen Daubert 2006-03-04 15:10:18 +00:00
parent 300c53bb67
commit 45f35a217b
3 changed files with 41 additions and 0 deletions

11
mailx/.footprint Normal file
View File

@ -0,0 +1,11 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
lrwxrwxrwx root/root usr/bin/Mail -> mailx
lrwxrwxrwx root/root usr/bin/mail -> mailx
-rwxr-xr-x root/root usr/bin/mailx
drwxr-xr-x root/root usr/etc/
-rw-r--r-- root/root usr/etc/mailx.rc
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
lrwxrwxrwx root/root usr/man/man1/mail.1.gz -> mailx.1.gz
-rw-r--r-- root/root usr/man/man1/mailx.1.gz

1
mailx/.md5sum Normal file
View File

@ -0,0 +1 @@
67e8236a73f8a2d85c45cf8a2bdf7af1 mailx-12.0.tar.bz2

29
mailx/Pkgfile Normal file
View File

@ -0,0 +1,29 @@
# Description: Replacement for Berkeley Mail and System V mailx command
# URL: http://nail.sourceforge.net/
# Maintainer: Jürgen Daubert, juergen dot daubert at t-online dot de
# Depends on: openssl
name=mailx
version=12.0
release=1
source=(http://dl.sourceforge.net/sourceforge/heirloom/$name-$version.tar.bz2)
build() {
cd $name-$version
sed -i 's|/etc/nail.rc|/usr/etc/mailx.rc|' mailx.1
make install \
PREFIX=/usr \
SYSCONFDIR=/usr/etc \
MAILRC=/usr/etc/mailx.rc \
MANDIR=/usr/man \
SENDMAIL=/usr/sbin/sendmail \
MAILSPOOL=/var/spool/mail \
UCBINSTALL=/usr/bin/install \
DESTDIR=$PKG
ln -s mailx $PKG/usr/bin/Mail
ln -s mailx $PKG/usr/bin/mail
ln -s mailx.1 $PKG/usr/man/man1/mail.1
}