talimat 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # Tanım: Ssl / ipv6 desteği olan IMAP ve POP3 sunucusu, öncelikle güvenlik göz önüne alınarak yazılmıştır
  2. # URL: http://dovecot.org
  3. # Paketçi: milisarge
  4. # Gerekler: clucene icu libcap pam mariadb kerberos openldap openssl postgresql sqlite valgrind
  5. # Grup: ağ
  6. isim=dovecot
  7. surum=2.2.21
  8. devir=1
  9. kaynak=(http://dovecot.org/releases/2.2/$isim-$surum.tar.gz local.conf)
  10. derle() {
  11. cd $isim-$surum
  12. source /etc/blfs-bootscripts
  13. wget http://www.linuxfromscratch.org/blfs/downloads/svn/$scripts-$scriptsversion.tar.bz2
  14. tar xvf $scripts-$scriptsversion.tar.bz2
  15. ./configure --prefix=/usr \
  16. --sysconfdir=/etc \
  17. --localstatedir=/var \
  18. --docdir=/usr/share/doc/dovecot-$surum \
  19. --disable-static \
  20. --with-ssl=openssl
  21. make
  22. make DESTDIR=$PKG install
  23. cp -r $SRC/$isim-$surum/doc/example-config/* $PKG/etc/dovecot
  24. sed -i '/^\!include / s/^/#/' $PKG/etc/dovecot/dovecot.conf
  25. cp -r $SRC/local.conf $PKG/etc/dovecot
  26. cd $scripts-$scriptsversion
  27. make DESTDIR=$PKG install-dovecot
  28. }