1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-14 07:43:06 +00:00

Add enigmail-thunderbird 0.83.1, a GnuPG extension for the Thunderbird

mail client.

Approved by:	nork (mentor)
This commit is contained in:
Alex Dupre 2004-01-28 18:05:39 +00:00
parent 33207219c1
commit b276bd5cbe
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=99330
4 changed files with 41 additions and 0 deletions

View File

@ -61,6 +61,7 @@
SUBDIR += emh-xemacs21-mule
SUBDIR += emil
SUBDIR += enigmail
SUBDIR += enigmail-thunderbird
SUBDIR += esmtp
SUBDIR += evolution
SUBDIR += exact

View File

@ -0,0 +1,23 @@
# New ports collection makefile for: enigmail
# Date created: 20 January 2004
# Whom: Alex Dupre <ale@FreeBSD.org>
#
# $FreeBSD$
#
PKGNAMESUFFIX= -thunderbird
COMMENT= A GnuPG extension for the Thunderbird mail client
EXTRACT_DEPENDS=${WRKSRC}/Makefile:${LOCAL_SRCDIR}:configure
RUN_DEPENDS= thunderbird:${LOCAL_SRCDIR}
MASTERDIR= ${.CURDIR}/../enigmail
PKGINSTALL= ${.CURDIR}/pkg-install
PKGDEINSTALL= ${.CURDIR}/pkg-deinstall
LOCAL_SRCDIR= ${PORTSDIR}/mail/mozilla-thunderbird
LOCAL_SUBDIR= lib/thunderbird/lib/mozilla-1.6b
.include "${MASTERDIR}/Makefile"

View File

@ -0,0 +1,8 @@
#!/bin/sh
if test "$2" = "POST-DEINSTALL"; then
FILE=${PKG_PREFIX}/lib/thunderbird/lib/mozilla-1.6b/chrome/installed-chrome.txt
cp ${FILE} ${FILE}.orig
cat ${FILE}.orig | grep -v enigmail > ${FILE}
rm ${FILE}.orig
fi

View File

@ -0,0 +1,9 @@
#!/bin/sh
if test "$2" = "POST-INSTALL"; then
cat << EOF >> ${PKG_PREFIX}/lib/thunderbird/lib/mozilla-1.6b/chrome/installed-chrome.txt
content,install,url,jar:resource:/chrome/enigmail.jar!/content/enigmail/
skin,install,url,jar:resource:/chrome/enigmail-skin-tbird.jar!/skin/classic/enigmail/
locale,install,url,jar:resource:/chrome/enigmail.jar!/locale/en-US/enigmail/
EOF
fi