ports/95547: [new port] mail/sylpheed-claws-vcalendar
Pawel Pekala
c0rn at o2.pl
Sun Apr 9 15:40:20 UTC 2006
>Number: 95547
>Category: ports
>Synopsis: [new port] mail/sylpheed-claws-vcalendar
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: change-request
>Submitter-Id: current-users
>Arrival-Date: Sun Apr 09 15:40:18 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator: Pawel Pekala
>Release: FreeBSD 5.4-RELEASE-p11 i386
>Organization:
>Environment:
System: FreeBSD 5.4-RELEASE-p11 #2: Thu Feb 2 21:14:41 CET 2006
root at blaviken.slowicza.org:/usr/src/sys/i386/compile/CORN
>Description:
This plugin enables vCalendar message handling like that produced by
Evolution or Outlook, and handles webCal subscriptions.
>How-To-Repeat:
>Fix:
--- sc-vcalendar.shar begins here ---
# This is a shell archive. Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file". Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
# sylpheed-claws-vcalendar/
# sylpheed-claws-vcalendar/Makefile
# sylpheed-claws-vcalendar/pkg-descr
# sylpheed-claws-vcalendar/distinfo
# sylpheed-claws-vcalendar/files
# sylpheed-claws-vcalendar/files/patch-configure.ac
# sylpheed-claws-vcalendar/files/patch-vcalendar.c
# sylpheed-claws-vcalendar/pkg-plist
#
echo c - sylpheed-claws-vcalendar/
mkdir -p sylpheed-claws-vcalendar/ > /dev/null 2>&1
echo x - sylpheed-claws-vcalendar/Makefile
sed 's/^X//' >sylpheed-claws-vcalendar/Makefile << 'END-of-sylpheed-claws-vcalendar/Makefile'
X# New ports collection makefile for: sylpheed-claws-vcalendar
X# Date created: 3 April 2006
X# Whom: Pawel Pekala <c0rn at o2.pl>
X#
X# $FreeBSD$
X#
X
XPORTNAME= vcalendar
XPORTVERSION= 1.71
XCATEGORIES= mail
XMASTER_SITES= http://claws.sylpheed.org/downloads/plugins/
XPKGNAMEPREFIX= sylpheed-claws-
X
XMAINTAINER= c0rn at o2.pl
XCOMMENT= vCalendar plugin for sylpheed-claws
X
XLIB_DEPENDS= curl.3:${PORTSDIR}/ftp/curl
XBUILD_DEPENDS= sylpheed-claws>=2.1:${PORTSDIR}/mail/sylpheed-claws
XRUN_DEPENDS= sylpheed-claws>=2.1:${PORTSDIR}/mail/sylpheed-claws
X
XUSE_GMAKE= yes
XUSE_GETTEXT= yes
XUSE_ICONV= yes
XUSE_X_PREFIX= yes
XUSE_AUTOTOOLS= autoconf:259
X
XCONFIGURE_ARGS= --with-libiconv-prefix=${LOCALBASE} \
X --with-libintl-prefix=${LOCALBASE}
X
Xpre-configure:
X @cd ${WRKDIR}/${PORTNAME}-${PORTVERSION} && ${AUTOHEADER}
X
X.include <bsd.port.mk>
END-of-sylpheed-claws-vcalendar/Makefile
echo x - sylpheed-claws-vcalendar/pkg-descr
sed 's/^X//' >sylpheed-claws-vcalendar/pkg-descr << 'END-of-sylpheed-claws-vcalendar/pkg-descr'
XThis plugin enables vCalendar message handling like that produced by
XEvolution or Outlook, and handles webCal subscriptions.
END-of-sylpheed-claws-vcalendar/pkg-descr
echo x - sylpheed-claws-vcalendar/distinfo
sed 's/^X//' >sylpheed-claws-vcalendar/distinfo << 'END-of-sylpheed-claws-vcalendar/distinfo'
XMD5 (vcalendar-1.71.tar.gz) = 96a72c8020c1458ee83d3cd9569a8f64
XSHA256 (vcalendar-1.71.tar.gz) = e5a11feeaf2791d20e207af04fd14d8458b0c5da5dc6a58b854c7ec84b51094e
XSIZE (vcalendar-1.71.tar.gz) = 664712
END-of-sylpheed-claws-vcalendar/distinfo
echo c - sylpheed-claws-vcalendar/files
mkdir -p sylpheed-claws-vcalendar/files > /dev/null 2>&1
echo x - sylpheed-claws-vcalendar/files/patch-configure.ac
sed 's/^X//' >sylpheed-claws-vcalendar/files/patch-configure.ac << 'END-of-sylpheed-claws-vcalendar/files/patch-configure.ac'
X--- configure.ac.orig Mon Mar 27 09:54:25 2006
X+++ configure.ac Sun Apr 9 17:03:45 2006
X@@ -41,10 +41,16 @@
X PKG_CHECK_MODULES(SYLPHEED_CLAWS, sylpheed-claws >= 2.0.0.94)
X AC_SUBST(SYLPHEED_CLAWS_CFLAGS)
X AC_SUBST(SYLPHEED_CLAWS_LIBS)
X-SYLPHEED_CLAWS_PLUGINDIR=$( $PKG_CONFIG --variable=plugindir sylpheed-claws )
X+if test -z $prefix ; then
X+ SYLPHEED_CLAWS_PLUGINDIR=$( $PKG_CONFIG --variable=plugindir sylpheed-claws )
X+else
X+ SYLPHEED_CLAWS_PLUGINDIR=${prefix}/lib/sylpheed-claws/plugins
X+fi
X AC_SUBST(SYLPHEED_CLAWS_PLUGINDIR)
X
X-prefix=$( $PKG_CONFIG --variable=prefix sylpheed-claws )
X+if test -z $prefix ; then
X+ prefix=$( $PKG_CONFIG --variable=prefix sylpheed-claws )
X+fi
X localedir="${prefix}/share/locale"
X AC_ARG_WITH(localedir,
X [ --with-localedir=DIR Locale directory],
X@@ -120,7 +126,7 @@
X AC_DEFINE(ICAL_SAFESAVES, 1, [safesaves])
X AC_DEFINE(ICAL_UNIX_NEWLINE, 1, [unix newline])
X
X-AC_CHECK_HEADERS(time.h sys/types.h assert.h)
X+AC_CHECK_HEADERS(time.h sys/types.h assert.h wchar.h)
X
X dnl Checks for typedefs, structures, and compiler characteristics.
X AC_C_CONST
END-of-sylpheed-claws-vcalendar/files/patch-configure.ac
echo x - sylpheed-claws-vcalendar/files/patch-vcalendar.c
sed 's/^X//' >sylpheed-claws-vcalendar/files/patch-vcalendar.c << 'END-of-sylpheed-claws-vcalendar/files/patch-vcalendar.c'
X--- src/vcalendar.c.orig Mon Apr 3 21:48:28 2006
X+++ src/vcalendar.c Mon Apr 3 21:50:19 2006
X@@ -26,6 +26,7 @@
X #include <ical.h>
X #include "gettext.h"
X #include <gtk/gtk.h>
X+#include <pthread.h>
X
X #include "mimeview.h"
X #include "utils.h"
END-of-sylpheed-claws-vcalendar/files/patch-vcalendar.c
echo x - sylpheed-claws-vcalendar/pkg-plist
sed 's/^X//' >sylpheed-claws-vcalendar/pkg-plist << 'END-of-sylpheed-claws-vcalendar/pkg-plist'
Xinclude/ical.h
Xlib/sylpheed-claws/plugins/vcalendar.so
Xlib/sylpheed-claws/plugins/vcalendar.la
Xlib/sylpheed-claws/plugins/vcalendar.a
Xshare/locale/de/LC_MESSAGES/vcalendar.mo
Xshare/locale/es/LC_MESSAGES/vcalendar.mo
Xshare/locale/fi/LC_MESSAGES/vcalendar.mo
Xshare/locale/fr/LC_MESSAGES/vcalendar.mo
Xshare/locale/it/LC_MESSAGES/vcalendar.mo
Xshare/locale/pt_BR/LC_MESSAGES/vcalendar.mo
Xshare/locale/sk/LC_MESSAGES/vcalendar.mo
Xshare/locale/sr/LC_MESSAGES/vcalendar.mo
Xshare/locale/zh_CN/LC_MESSAGES/vcalendar.mo
END-of-sylpheed-claws-vcalendar/pkg-plist
exit
--- sc-vcalendar.shar ends here ---
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list