diff options
author | Deposite Pirate | 2018-09-16 18:48:36 +0200 |
---|---|---|
committer | Deposite Pirate | 2018-09-16 18:48:36 +0200 |
commit | d150a5f3e462fa7fe194a805a4aa0076f4d03ab9 (patch) | |
tree | ce5e44d69c5f3175bfdbd1e3717b52c5dcca5638 /network/mutt-kz | |
parent | f29d3519ce073ec30f99754d93304324f7f26d65 (diff) |
Add ports.
Diffstat (limited to 'network/mutt-kz')
-rw-r--r-- | network/mutt-kz/mutt-kz-20130515-config.patch.xz | bin | 0 -> 1144 bytes | |||
-rwxr-xr-x | network/mutt-kz/mutt-kz.build | 114 |
2 files changed, 114 insertions, 0 deletions
diff --git a/network/mutt-kz/mutt-kz-20130515-config.patch.xz b/network/mutt-kz/mutt-kz-20130515-config.patch.xz Binary files differnew file mode 100644 index 0000000..27ff0b0 --- /dev/null +++ b/network/mutt-kz/mutt-kz-20130515-config.patch.xz diff --git a/network/mutt-kz/mutt-kz.build b/network/mutt-kz/mutt-kz.build new file mode 100755 index 0000000..f1bf051 --- /dev/null +++ b/network/mutt-kz/mutt-kz.build @@ -0,0 +1,114 @@ +#!/bin/bash +# +# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd> + +source /usr/src/ports/Build/build.sh + +NAME=mutt-kz +VERSION=20130515 +BUILD=2 +DEPENDS=('openssl >= 1.0.1e-1' 'cyrus_sasl >= 2.1.26-1' 'gpgme >= 1.3.2-1' 'gdbm >= 1.10-1' 'libnotmuch >= 0.15-1') + +# Description + +cat > ${PKG}/install/slack-desc <<EOF +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' +# on the right side marks the last column you can put a character in. You must +# make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':'. + +$(padd)|-----handy-ruler------------------------------------------------------| +${NAME}: mutt-kz (mail user agent) +${NAME}: +${NAME}: Mutt is a small but very powerful text-based MIME mail client. Mutt +${NAME}: is highly configurable, and is well suited to the mail power user +${NAME}: with advanced features like key bindings, keyboard macros, mail +${NAME}: threading, regular expression searches and a powerful pattern +${NAME}: matching language for selecting groups of messages. Mutt-kz is a +${NAME}: fork of Mutt that adds notmuch support, sidebar and other +${NAME}: improvements. +${NAME}: +${NAME}: Homepage: https://github.com/karelzak/mutt-kz +EOF + +cat >> ${PKG}/install/doinst.sh <<EOF +#!/bin/sh + +config() { + NEW="\$1" + OLD="\$(dirname \$NEW)/\$(basename \$NEW .new)" + # If there's no config file by that name, mv it over: + if [ ! -r \$OLD ]; then + mv \$NEW \$OLD + elif [ "\$(cat \$OLD | md5sum)" = "\$(cat \$NEW | md5sum)" ]; then + # toss the redundant copy + rm \$NEW + fi + # Otherwise, we leave the .new copy for the admin to consider... +} + +config etc/mutt/mutt.conf.new +EOF + +# Sources + +SRCNAME[0]=${NAME} +SRCVERS[0]=${VERSION} +SRCPACK[0]=ftp://ftp.mutt.org/mutt/${SRCNAME[0]}-${SRCVERS[0]}.tar.xz +SRCCOPY[0]="GPL2" + +build0() +{ +CPPFLAGS="-I${SYS_DIR[include]}/idn" \ +CFLAGS="${FLAGS}" CXXFLAGS="${FLAGS}" \ +./configure \ + --build="${ARCH}-slackware-linux" \ + --disable-dependency-tracking \ + --disable-silent-rules \ + --prefix="${SYS_DIR[usr]}" \ + --mandir="${SYS_DIR[man]}" \ + --sysconfdir="${SYS_DIR[etc]}/mutt" \ + --libdir="${SYS_DIR[lib]}" \ + --localstatedir="${SYS_DIR[var]}" \ + --with-mailpath="${SYS_DIR[var]}/spool/mail" \ + --with-docdir="${SYS_DIR[doc]}/${NAME}-${VERSION}" \ + --without-wc-funcs \ + --with-ssl \ + --enable-locales-fix \ + --enable-gpgme \ + --enable-notmuch \ + --enable-pop \ + --enable-imap \ + --enable-smtp \ + --enable-hcache \ + --with-curses="${SYS_DIR[usr]}" \ + --with-ssl="${SYS_DIR[usr]}" \ + --with-sasl="${SYS_DIR[usr]}" \ + --with-idn +# --with-gnutls="${SYS_DIR[usr]}" +make ${JOBS} V=1 +make install DESTDIR="${PKG}" +changelog NEWS +mv \ + ${PKG}${SYS_DIR[etc]}/mutt/Muttrc \ + ${PKG}${SYS_DIR[etc]}/mutt/mutt.conf.new +mv \ + ${PKG}${SYS_DIR[etc]}/mutt/Muttrc.dist \ + ${PKG}${SYS_DIR[etc]}/mutt/mutt.conf.dist +mv \ + ${DOC}/samples/{colors.*,*.rc,sample.*} \ + ${PKG}${SYS_DIR[etc]}/mutt +install.dir ${PKG}${SYS_DIR[html]}/mutt +mv \ + ${DOC}/*.html \ + ${PKG}${SYS_DIR[html]}/mutt +rm -rf \ + ${PKG}${SYS_DIR[etc]}/mutt/mime.types* \ + ${PKG}${SYS_DIR[bin]}/{flea,muttbug} \ + ${PKG}${SYS_DIR[man]}/man?/{flea,muttbug}.? \ + ${DOC}/samples \ + ${DOC}/{COPYRIGHT,GPL,INSTALL,README*,TODO,NEWS,UPDATING} \ + ${DOC}/{applying-patches,*-*otes,manual}.txt +} |