From: Jose V Beneyto Date: Tue, 14 Jun 2011 07:53:49 +0000 (+0200) Subject: msmtp: moved from core collection X-Git-Url: http://gitweb/?a=commitdiff_plain;h=9058be71715ab7765a9567ed3995f4399a0ec378;p=attic%2Fports%2Fopt-cross.git msmtp: moved from core collection --- diff --git a/msmtp/.footprint b/msmtp/.footprint new file mode 100644 index 0000000..92c6289 --- /dev/null +++ b/msmtp/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/msmtp +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/msmtp.1.gz +drwxr-xr-x root/root usr/man/man8/ +drwxr-xr-x root/root usr/sbin/ +lrwxrwxrwx root/root usr/sbin/sendmail -> /usr/bin/msmtp diff --git a/msmtp/.md5sum b/msmtp/.md5sum new file mode 100644 index 0000000..0d70915 --- /dev/null +++ b/msmtp/.md5sum @@ -0,0 +1 @@ +5fb7ae88186624cdb125d3efad3fdc16 msmtp-1.4.23.tar.bz2 diff --git a/msmtp/Pkgfile b/msmtp/Pkgfile new file mode 100644 index 0000000..c858c8a --- /dev/null +++ b/msmtp/Pkgfile @@ -0,0 +1,27 @@ +# Description: An SMTP client suitable for use with mutt etc. +# URL: http://msmtp.sourceforge.net/ +# Packager: Jukka Heino, jukka dot heino at gmail dot com +# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de +# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu +# Depends on: openssl + +name=msmtp +version=1.4.23 +release=1 +source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2) + +build() { + cd $name-$version + ./configure --build=$CHOST \ + --host=$CTARGET \ + --prefix=/usr \ + --mandir=/usr/man \ + --with-ssl=openssl \ + --disable-nls + make + make DESTDIR=$PKG install + rm -r $PKG/usr/share + install -d $PKG/usr/{sbin,man/man8} + ln -s /usr/bin/$name $PKG/usr/sbin/sendmail + ln -s /usr/man/man1/$name.1 $PKG/usr/man/man8/sendmail.8 +}