1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-12 07:27:57 +00:00

Now that also the plug-ins have been repocopied remove this port.

Approved by:	netchild@ (maintainer)
This commit is contained in:
Ion-Mihai Tetcu 2006-12-31 17:12:55 +00:00
parent a9e030583d
commit 7852033356
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=181165
11 changed files with 1 additions and 2964 deletions

3
MOVED
View File

@ -2638,5 +2638,4 @@ mail/sylpheed-claws-rssyl|mail/claws-mail-rssyl|2006-12-31|Project renamed upstr
mail/sylpheed-claws-smime|mail/claws-mail-smime|2006-12-31|Project renamed upstream
mail/sylpheed-claws-synce|mail/claws-mail-synce|2006-12-31|Project renamed upstream
mail/sylpheed-claws-vcalendar|mail/claws-mail-vcalendar|2006-12-31|Project renamed upstream
mail/sylpheed-claws|mail/claws-mail|2006-12-31|Removed: renamed to claws-mail

View File

@ -577,7 +577,6 @@
SUBDIR += svnmailer
SUBDIR += swaks
SUBDIR += sylpheed
SUBDIR += sylpheed-claws
SUBDIR += sylpheed2
SUBDIR += sylpheed2-devel
SUBDIR += sympa

View File

@ -1,224 +0,0 @@
# New ports collection makefile for: sylpheed-claws
# Date created: 3 January 2002
# Whom: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
#
# $FreeBSD$
#
PORTNAME= sylpheed-claws
PORTVERSION= 2.6.0
PORTREVISION= 1
CATEGORIES= mail news ipv6
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= sylpheed-claws
DISTFILES= ${EXTRACT_ONLY} \
${THEMEFILE}
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= netchild@FreeBSD.org
COMMENT= A lightweight and very featureful GTK+ based e-mail and news client
LIB_DEPENDS= etpan:${PORTSDIR}/mail/libetpan
RUN_DEPENDS= ${LOCALBASE}/etc/mime.types:${PORTSDIR}/misc/mime-support
DEPRECATED= renamed to claws-mail
CONFLICTS= claws-mail
THEMEVERSION= 20060615
THEMEFILE= sylpheed-claws-themes-${THEMEVERSION}.tar.gz
USE_BZIP2= yes
USE_GETTEXT= yes
USE_GMAKE= yes
USE_ICONV= yes
USE_XLIB= yes
USE_GNOME= gnomehack pkgconfig gtk20
#USE_AUTOTOOLS= autoconf:259 libtool:15
GNU_CONFIGURE= yes
USE_GCC= 3.3+
WANT_GNOME= yes
MAN1= sylpheed-claws.1
CONFIGURE_ARGS= \
--with-libiconv-prefix=${LOCALBASE} \
--with-manualdir=${DOCSDIR}/manual \
--with-faqdir=${DOCSDIR}/faq \
--mandir=${PREFIX}/man
CONFIGURE_ENV= CFLAGS="${CFLAGS} ${PTHREAD_CFLAGS}" \
CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
LDFLAGS="-L${X11BASE}/lib -L${LOCALBASE}/lib" \
LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
OPTIONS= ALL "Enable all options." off \
ASPELL "Enable spell checking support." on \
CLAMAV "Enable virus-checking support." off \
COMPFACE "Enable X-Face support." on \
DEBUG "Enable debug support." off \
DILLO "Enable Dillo HTML viewer." off \
GNOMEPRINT "Enable extended print support (GNOME)." off \
GPGME "Enable PGP/GnuPG support using GPGME." off \
IPV6 "Enable ipv6 support." on \
JPILOT "Enable JPilot support." off \
LDAP "Enable LDAP support." off \
SA_PLUG "Enable SpamAssassin support." off \
SSL "Enable OpenSSL support." on \
THEMES "Install additional themes." on
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_SSL)
# we can't use USE_OPENSSL=yes after including bsd.port.pre.mk
.include "${PORTSDIR}/Mk/bsd.openssl.mk"
CONFIGURE_ARGS+= --enable-openssl --with-openssl-includes=${OPENSSLINC} \
--with-openssl-libs=${OPENSSLLIB}
CONFIGURE_ENV+= OPENSSL_CFLAGS="-I${OPENSSLINC}" \
OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto -lssl"
.else
CONFIGURE_ARGS+= --disable-openssl
.endif
.if ${HAVE_GNOME:Mgnomeprint} != "" || defined(WITH_GNOMEPRINT)
PLIST_SUB+= GNOMEPRINT=""
USE_GNOME+= libgnomeprint libgnomeprintui
CONFIGURE_ARGS+= --enable-gnomeprint
.else
PLIST_SUB+= GNOMEPRINT="@comment "
CONFIGURE_ARGS+= --disable-gnomeprint
.endif
.if exists(${LOCALBASE}/include/clamav.h)
WITH_CLAMAV= yes
.endif
.if defined(WITH_CLAMAV) || defined(WITH_ALL)
CONFIGURE_ARGS+= --enable-clamav-plugin
PLIST_SUB+= CLAM_PLUG=""
BUILD_DEPENDS= ${LOCALBASE}/sbin/clamd:${PORTSDIR}/security/clamav
.else
CONFIGURE_ARGS+= --disable-clamav-plugin
PLIST_SUB+= CLAM_PLUG="@comment "
.endif
.if defined(WITH_COMPFACE) || defined(WITH_ALL)
LIB_DEPENDS+= compface.1:${PORTSDIR}/mail/faces
CONFIGURE_ARGS+= --enable-compface
.else
CONFIGURE_ARGS+= --disable-compface
.endif
.if defined(WITH_ASPELL) || defined(WITH_ALL)
LIB_DEPENDS+= pspell.16:${PORTSDIR}/textproc/aspell
CONFIGURE_ARGS+= --enable-aspell
.else
CONFIGURE_ARGS+= --disable-aspell
.endif
.if defined(WITH_JPILOT) || defined(WITH_ALL)
LIB_DEPENDS+= pisock:${PORTSDIR}/palm/pilot-link
RUN_DEPENDS+= jpilot:${PORTSDIR}/palm/jpilot
CONFIGURE_ARGS+= --enable-jpilot
.else
CONFIGURE_ARGS+= --disable-jpilot
.endif
.if defined(WITH_LDAP) || defined(WITH_ALL)
USE_OPENLDAP= yes
CONFIGURE_ARGS+= --enable-ldap
.else
CONFIGURE_ARGS+= --disable-ldap
.endif
.if defined(WITH_SA_PLUG) || defined(WITH_ALL)
RUN_DEPENDS+= spamd:${PORTSDIR}/mail/p5-Mail-SpamAssassin
CONFIGURE_ARGS+= --enable-spamassassin-plugin
PLIST_SUB+= SA_PLUG=""
.else
CONFIGURE_ARGS+= --disable-spamassassin-plugin
PLIST_SUB+= SA_PLUG="@comment "
.endif
.if defined(WITH_GPGME) || defined(WITH_ALL)
PLIST_SUB+= GPGME=""
CONFIGURE_ARGS+= --enable-pgpmime-plugin --enable-pgpcore-plugin \
--enable-pgpinline-plugin
LIB_DEPENDS+= gpgme:${PORTSDIR}/security/gpgme
RUN_DEPENDS+= gpg:${PORTSDIR}/security/gnupg
.else
PLIST_SUB+= GPGME="@comment "
CONFIGURE_ARGS+= --disable-pgpmime-plugin --disable-pgpcore-plugin \
--disable-pgpinline-plugin
.endif
.if defined(WITHOUT_THEMES)
PLIST_SUB+= THEMES="@comment "
.else
PLIST_SUB+= THEMES=""
.endif
.if defined(WITH_DEBUG) || defined(WITH_ALL)
CONFIGURE_ARGS+= --enable-maintainer-mode --enable-crash-dialog
STRIP=
.endif
.if defined(WITH_DILLO) || defined(WITH_ALL)
PLIST_SUB+= DILLO=""
RUN_DEPENDS+= dillo:${PORTSDIR}/www/dillo
.else
PLIST_SUB+= DILLO="@comment "
CONFIGURE_ARGS+= --disable-dillo-viewer-plugin
.endif
.if defined(WITHOUT_IPV6) || defined(WITH_ALL)
CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
post-extract:
.if !defined(WITHOUT_THEMES)
@${MKDIR} ${WRKSRC}/themes
@cd ${WRKDIR} && ${GZIP_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${THEMEFILE} ${EXTRACT_AFTER_ARGS}
.endif
post-patch:
@${REINPLACE_CMD} -e \
's|-lresolv||g; s|-lpisock\"|-liconv &|g' ${WRKSRC}/configure
@${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" \
${WRKSRC}/tools/README.sylprint ${WRKSRC}/tools/sylprint.pl
@${REINPLACE_CMD} -e 's|/etc|${LOCALBASE}&|g ; s|/usr/share|${LOCALBASE}/share|g' \
${WRKSRC}/src/procmime.c
@${REINPLACE_CMD} -e "s|po intl src|po src| ; s:@SYLPHEED_GNOME:#@SYLPHEED_GNOME:g" ${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e "s:-Wno-unused-function::" ${WRKSRC}/src/Makefile.in
@for f in `${FIND} ${WRKSRC}/tools -type f -print`; do \
${REINPLACE_CMD} -e "s|/usr/bin/perl|${PERL}|" $$f; done
# @${LN} -s ${WRKSRC}/po/sylpheed.pot ${WRKSRC}/po/${PORTNAME}.pot
.if defined(NOPORTDOCS)
@${REINPLACE_CMD} -e 's|src manual faq tools|src tools|' ${WRKSRC}/Makefile.in
.endif
post-install:
.if !defined(NOPORTDOCS)
.for i in NEWS README RELEASE_NOTES TODO tools/README.sylprint
@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
@${INSTALL_DATA} ${WRKSRC}/tools/README ${DOCSDIR}/README.tools
.endif
@${MKDIR} ${DATADIR}
@cd ${WRKSRC}/tools && \
${INSTALL_SCRIPT} OOo2sylpheed.pl acroread2sylpheed.pl \
calypso_convert.pl convert_mbox.pl eud2gc.py filter_conv.pl \
freshmeat_search.pl gif2xface.pl google_msgid.pl \
google_search.pl kmail2sylpheed.pl \
kmail2sylpheed_v2.pl maildir2sylpheed.pl multiwebsearch.conf \
multiwebsearch.pl nautilus2sylpheed.sh outlook2sylpheed.pl \
tb2sylpheed textviewer.sh update-po uudec vcard2xml.py \
${DATADIR}
@${MKDIR} ${PREFIX}/share/applications
@${INSTALL_DATA} ${WRKSRC}/sylpheed-claws.desktop ${PREFIX}/share/applications/
.if !defined(WITHOUT_THEMES)
@${MKDIR} ${DATADIR}/themes
@cd ${WRKDIR}/${THEMEFILE:C/.tar.gz//} && ${FIND} . -mindepth 2 -print | \
${GREP} -vE '(Makefile.*|INSTALL)' | \
${CPIO} -pdu -R ${BINOWN}:${BINGRP} --quiet ${DATADIR}/themes/
@${CHMOD} -R a+r ${DATADIR}/themes
@${FIND} ${DATADIR}/themes -type d -print0 | ${XARGS} -0 ${CHMOD} a+x
.endif
@${INSTALL_SCRIPT} ${WRKSRC}/tools/sylprint.pl ${PREFIX}/bin
@${INSTALL_DATA} ${WRKSRC}/tools/sylprint.rc ${PREFIX}/etc/sylprint.rc.example
@${MKDIR} ${PREFIX}/share/pixmaps
@${INSTALL_DATA} ${WRKSRC}/sylpheed-claws*.png ${PREFIX}/share/pixmaps/
.include <bsd.port.post.mk>

View File

@ -1,6 +0,0 @@
MD5 (sylpheed-claws-2.6.0.tar.bz2) = c16d658bd7d48bbecc2574e70b95c560
SHA256 (sylpheed-claws-2.6.0.tar.bz2) = 17aa56bd382d3ffb7ad2e76174a3a43b832a815a23b6b993d864e2e133cdc1c7
SIZE (sylpheed-claws-2.6.0.tar.bz2) = 5098855
MD5 (sylpheed-claws-themes-20060615.tar.gz) = 8cf1f94353be228d192d843e89557f42
SHA256 (sylpheed-claws-themes-20060615.tar.gz) = f34bfb8f53ef4b22e25055c588b19b3bc107b1a3dcf28faab409359b788444d7
SIZE (sylpheed-claws-themes-20060615.tar.gz) = 1716505

View File

@ -1,106 +0,0 @@
--- configure.orig Tue Sep 26 13:48:55 2006
+++ configure Tue Sep 26 13:52:15 2006
@@ -28199,6 +28199,18 @@
{ echo "$as_me:$LINENO: checking for OPENSSL" >&5
echo $ECHO_N "checking for OPENSSL... $ECHO_C" >&6; }
+ case $host_os in
+ *freebsd*)
+ if test $(openssl version | cut -d ' ' -f 2) \< 0.9.7 ; then
+ ac_cv_enable_openssl=no
+ else
+ OPENSSL_LIBS=${OPENSSL_LIBS-"-lcrypto -lssl"}
+ echo "${ECHO_T}yes" >&6;
+ fi
+ ;;
+ esac
+
+if false; then
if test -n "$PKG_CONFIG"; then
if test -n "$OPENSSL_CFLAGS"; then
pkg_cv_OPENSSL_CFLAGS="$OPENSSL_CFLAGS"
@@ -28265,6 +28277,8 @@
echo "${ECHO_T}yes" >&6; }
:
fi
+fi # if false
+
if test x$ac_cv_enable_openssl = xyes; then
cat >>confdefs.h <<\_ACEOF
@@ -29719,18 +29733,18 @@
rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
conftest$ac_exeext conftest.$ac_ext;
if test "$ac_cv_var__res_options" != "yes"; then
- LIBRESOLV="-lresolv"
+ LIBRESOLV=""
fi
LIBS="$t_oldLibs"
if test "x$LIBRESOLV" = "x"; then
- { echo "$as_me:$LINENO: checking for res_query in -lresolv" >&5
-echo $ECHO_N "checking for res_query in -lresolv... $ECHO_C" >&6; }
+ { echo "$as_me:$LINENO: checking for res_query in " >&5
+echo $ECHO_N "checking for res_query in ... $ECHO_C" >&6; }
if test "${ac_cv_lib_resolv_res_query+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
ac_check_lib_save_LIBS=$LIBS
-LIBS="-lresolv $LIBS"
+LIBS=" $LIBS"
cat >conftest.$ac_ext <<_ACEOF
/* confdefs.h. */
_ACEOF
@@ -29802,7 +29816,7 @@
{ echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_res_query" >&5
echo "${ECHO_T}$ac_cv_lib_resolv_res_query" >&6; }
if test $ac_cv_lib_resolv_res_query = yes; then
- LIBRESOLV=-lresolv
+ LIBRESOLV=
fi
LIBS="$t_oldLibs"
@@ -29833,13 +29847,13 @@
{ echo "$as_me:$LINENO: result: yes" >&5
echo "${ECHO_T}yes" >&6; }
- { echo "$as_me:$LINENO: checking for res_query in -lresolv" >&5
-echo $ECHO_N "checking for res_query in -lresolv... $ECHO_C" >&6; }
+ { echo "$as_me:$LINENO: checking for res_query in " >&5
+echo $ECHO_N "checking for res_query in ... $ECHO_C" >&6; }
if test "${ac_cv_lib_resolv_res_query+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
ac_check_lib_save_LIBS=$LIBS
-LIBS="-lresolv $LIBS"
+LIBS=" $LIBS"
cat >conftest.$ac_ext <<_ACEOF
/* confdefs.h. */
_ACEOF
@@ -29911,7 +29925,7 @@
{ echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_res_query" >&5
echo "${ECHO_T}$ac_cv_lib_resolv_res_query" >&6; }
if test $ac_cv_lib_resolv_res_query = yes; then
- LDAP_LIBS="$LDAP_LIBS -lresolv"
+ LDAP_LIBS="$LDAP_LIBS "
fi
{ echo "$as_me:$LINENO: checking for bind in -lsocket" >&5
@@ -30883,7 +30897,7 @@
fi
- { echo "$as_me:$LINENO: checking for unpack_Address in -lpisock" >&5
+ { echo "$as_me:$LINENO: checking for unpack_Address in -liconv -lpisock" >&5
echo $ECHO_N "checking for unpack_Address in -lpisock... $ECHO_C" >&6; }
if test "${ac_cv_lib_pisock_unpack_Address+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -30961,7 +30975,7 @@
{ echo "$as_me:$LINENO: result: $ac_cv_lib_pisock_unpack_Address" >&5
echo "${ECHO_T}$ac_cv_lib_pisock_unpack_Address" >&6; }
if test $ac_cv_lib_pisock_unpack_Address = yes; then
- JPILOT_LIBS="-lpisock"
+ JPILOT_LIBS="-liconv -lpisock"
else
JPILOT_LIBS="" ac_cv_enable_jpilot="no"
fi

View File

@ -1,22 +0,0 @@
--- configure.ac.orig Sat Jul 30 10:54:42 2005
+++ configure.ac Sat Jul 30 11:10:47 2005
@@ -303,7 +303,18 @@
AC_MSG_CHECKING([whether to use OpenSSL])
if test x"$ac_cv_enable_openssl" = xyes; then
AC_MSG_RESULT(yes)
- PKG_CHECK_MODULES(OPENSSL, openssl >= 0.9.7, :, ac_cv_enable_openssl=no)
+ case $host_os in
+ *freebsd*)
+ if test $(openssl version | cut -d ' ' -f 2) \< 0.9.7 ; then
+ ac_cv_enable_openssl=no
+ else
+ OPENSSL_LIBS=${OPENSSL_LIBS-"-lcrypto -lssl"}
+ fi
+ ;;
+ *)
+ PKG_CHECK_MODULES(OPENSSL, openssl >= 0.9.7, :, ac_cv_enable_openssl=no)
+ ;;
+ esac
if test x$ac_cv_enable_openssl = xyes; then
AC_DEFINE(USE_OPENSSL, 1, Define if you want OpenSSL support)
else

View File

@ -1,10 +0,0 @@
--- doc/man/Makefile.in.orig Sat Nov 5 12:14:20 2005
+++ doc/man/Makefile.in Sat Nov 5 12:15:52 2005
@@ -329,6 +329,7 @@
inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
inst=`echo $$inst | sed -e 's/^.*\///'`; \
inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+ inst=`echo $$inst | sed -e 's:sylpheed\.1:sylpheed-claws.1:'`; \
echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst"; \
done

View File

@ -1,18 +0,0 @@
--- tools/README.sylprint.orig Sat Nov 5 11:35:01 2005
+++ tools/README.sylprint Sat Nov 5 11:36:54 2005
@@ -144,11 +144,12 @@
sylprint.pl
The script itself.
- sylprint.rc
+ %%PREFIX%%/etc/sylprint.rc
+ ~/.sylpheed/sylprint.rc
Stores user default preferred configuration for the
script. Settings in this file may be overriden by
- command line options. Must be stored in the same
- directory of the script and/or in the ~/.sylpheed-claws
+ command line options. Must be stored in the local
+ configuration directory and/or in the ~/.sylpheed-claws
one (Sylpheed user's configuration directory).
/tmp/sylprint.username.number

View File

@ -1,14 +0,0 @@
--- tools/sylprint.pl.orig Tue Jan 8 20:34:37 2002
+++ tools/sylprint.pl Tue Jan 15 00:13:15 2002
@@ -36,10 +36,7 @@
# get user config
if (defined($ARGV[1]) && $ARGV[1] eq '-r') { $a++; }
else {
- @spp = split('/',$0);
- $spp[$#spp] = '';
- $spp = join('/',@spp);
- $rcf="$spp$rc";
+ $rcf="%%PREFIX%%/etc/$rc";
if (-x $rcf) { do $rcf; }
$rcf="$ENV{'HOME'}/.sylpheed/$rc";
if (-x $rcf) { do $rcf; }

View File

@ -1,13 +0,0 @@
Sylpheed is an e-mail client (and news reader) based on GTK+
Currently, many features are supported including POP3, IMAP, NNTP,
multiple accounts, threading, filtering, MIME attachments, APOP, SMTP
AUTH, SSL, IPv6, GnuPG, internalization, and more.
In addition to the above, Sylpheed-claws has a lot of extra features,
e.g. a plugin mechanism, a new filtering/processing mechanism,
extra folder properties and much more...
WWW: http://sylpheed-claws.sourceforge.net/
- Simon 'corecode' Schubert

File diff suppressed because it is too large Load Diff