diff options
author | xtraeme <xtraeme> | 2006-10-13 12:38:30 +0000 |
---|---|---|
committer | xtraeme <xtraeme> | 2006-10-13 12:38:30 +0000 |
commit | 328370eb4c5ca43dec542bc22fbaf8e185194db5 (patch) | |
tree | 3f9bb3648d13d5e3bf4c608af823b009f3f3b70f /mail/libsylph | |
parent | 28657a99f448b97596589986ef9963df68052976 (diff) | |
download | pkgsrc-328370eb4c5ca43dec542bc22fbaf8e185194db5.tar.gz |
Initial import of libsylph-0.3.0.
LibSylph is an e-mail client library which is derived from Sylpheed.
LibSylph is a lightweight but featureful library. It has many common e-mail
related features and other useful functions, and you can utilize them from
your application. Moreover you can create a new e-mail client by wrapping
LibSylph with any UI.
Diffstat (limited to 'mail/libsylph')
-rw-r--r-- | mail/libsylph/DESCR | 5 | ||||
-rw-r--r-- | mail/libsylph/Makefile | 22 | ||||
-rw-r--r-- | mail/libsylph/PLIST | 70 | ||||
-rw-r--r-- | mail/libsylph/buildlink3.mk | 23 | ||||
-rw-r--r-- | mail/libsylph/distinfo | 5 |
5 files changed, 125 insertions, 0 deletions
diff --git a/mail/libsylph/DESCR b/mail/libsylph/DESCR new file mode 100644 index 00000000000..ece2e2d91c1 --- /dev/null +++ b/mail/libsylph/DESCR @@ -0,0 +1,5 @@ +LibSylph is an e-mail client library which is derived from Sylpheed. +LibSylph is a lightweight but featureful library. It has many common e-mail +related features and other useful functions, and you can utilize them from +your application. Moreover you can create a new e-mail client by wrapping +LibSylph with any UI. diff --git a/mail/libsylph/Makefile b/mail/libsylph/Makefile new file mode 100644 index 00000000000..d4c3568cf7a --- /dev/null +++ b/mail/libsylph/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1.1.1 2006/10/13 12:38:30 xtraeme Exp $ +# + +DISTNAME= libsylph-0.3.0 +CATEGORIES= mail +MASTER_SITES= http://sylpheed.sraoss.jp/sylpheed/libsylph/alpha/ +EXTRACT_SUFX= .tar.bz2 + +MAINTAINER= xtraeme@NetBSD.org +HOMEPAGE= http://sylpheed.sraoss.jp/ +COMMENT= E-Mail client library + +GNU_CONFIGURE= yes +USE_LIBTOOL= yes +USE_PKGLOCALEDIR= yes + +USE_TOOLS+= lex + +.include "../../devel/gettext-lib/buildlink3.mk" +.include "../../devel/glib2/buildlink3.mk" +.include "../../security/openssl/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/mail/libsylph/PLIST b/mail/libsylph/PLIST new file mode 100644 index 00000000000..7a9f932ae47 --- /dev/null +++ b/mail/libsylph/PLIST @@ -0,0 +1,70 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2006/10/13 12:38:30 xtraeme Exp $ +include/sylph/account.h +include/sylph/base64.h +include/sylph/codeconv.h +include/sylph/compose.h +include/sylph/customheader.h +include/sylph/defs.h +include/sylph/displayheader.h +include/sylph/enums.h +include/sylph/filter.h +include/sylph/folder.h +include/sylph/html.h +include/sylph/imap.h +include/sylph/mbox.h +include/sylph/md5.h +include/sylph/md5_hmac.h +include/sylph/mh.h +include/sylph/news.h +include/sylph/nntp.h +include/sylph/pop.h +include/sylph/prefs.h +include/sylph/prefs_account.h +include/sylph/prefs_common.h +include/sylph/procheader.h +include/sylph/procmime.h +include/sylph/procmsg.h +include/sylph/quoted-printable.h +include/sylph/recv.h +include/sylph/session.h +include/sylph/smtp.h +include/sylph/socket.h +include/sylph/ssl.h +include/sylph/stringtable.h +include/sylph/sylmain.h +include/sylph/unmime.h +include/sylph/utils.h +include/sylph/uuencode.h +include/sylph/virtual.h +include/sylph/xml.h +lib/libsylph.la +share/locale/bg/LC_MESSAGES/libsylph.mo +share/locale/cs/LC_MESSAGES/libsylph.mo +share/locale/da/LC_MESSAGES/libsylph.mo +share/locale/de/LC_MESSAGES/libsylph.mo +share/locale/el/LC_MESSAGES/libsylph.mo +share/locale/es/LC_MESSAGES/libsylph.mo +share/locale/et/LC_MESSAGES/libsylph.mo +share/locale/fr/LC_MESSAGES/libsylph.mo +share/locale/gl/LC_MESSAGES/libsylph.mo +share/locale/hr/LC_MESSAGES/libsylph.mo +share/locale/hu/LC_MESSAGES/libsylph.mo +share/locale/it/LC_MESSAGES/libsylph.mo +share/locale/ja/LC_MESSAGES/libsylph.mo +share/locale/ko/LC_MESSAGES/libsylph.mo +share/locale/lt/LC_MESSAGES/libsylph.mo +share/locale/nl/LC_MESSAGES/libsylph.mo +share/locale/pl/LC_MESSAGES/libsylph.mo +share/locale/pt_BR/LC_MESSAGES/libsylph.mo +share/locale/ro/LC_MESSAGES/libsylph.mo +share/locale/ru/LC_MESSAGES/libsylph.mo +share/locale/sk/LC_MESSAGES/libsylph.mo +share/locale/sl/LC_MESSAGES/libsylph.mo +share/locale/sr/LC_MESSAGES/libsylph.mo +share/locale/sv/LC_MESSAGES/libsylph.mo +share/locale/tr/LC_MESSAGES/libsylph.mo +share/locale/uk/LC_MESSAGES/libsylph.mo +share/locale/vi/LC_MESSAGES/libsylph.mo +share/locale/zh_CN/LC_MESSAGES/libsylph.mo +share/locale/zh_TW/LC_MESSAGES/libsylph.mo +@dirrm include/sylph diff --git a/mail/libsylph/buildlink3.mk b/mail/libsylph/buildlink3.mk new file mode 100644 index 00000000000..3191a58ed8b --- /dev/null +++ b/mail/libsylph/buildlink3.mk @@ -0,0 +1,23 @@ +# $NetBSD: buildlink3.mk,v 1.1.1.1 2006/10/13 12:38:30 xtraeme Exp $ + +BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+ +LIBSYLPH_BUILDLINK3_MK:= ${LIBSYLPH_BUILDLINK3_MK}+ + +.if ${BUILDLINK_DEPTH} == "+" +BUILDLINK_DEPENDS+= libsylph +.endif + +BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nlibsylph} +BUILDLINK_PACKAGES+= libsylph +BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}libsylph + +.if ${LIBSYLPH_BUILDLINK3_MK} == "+" +BUILDLINK_API_DEPENDS.libsylph+= libsylph>=0.3.0 +BUILDLINK_PKGSRCDIR.libsylph?= ../../mail/libsylph +.endif # LIBSYLPH_BUILDLINK3_MK + +.include "../../devel/gettext-lib/buildlink3.mk" +.include "../../devel/glib2/buildlink3.mk" +.include "../../security/openssl/buildlink3.mk" + +BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//} diff --git a/mail/libsylph/distinfo b/mail/libsylph/distinfo new file mode 100644 index 00000000000..845dfd67181 --- /dev/null +++ b/mail/libsylph/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2006/10/13 12:38:30 xtraeme Exp $ + +SHA1 (libsylph-0.3.0.tar.bz2) = 1f9eedeb8abf4a974cf54dcc29ca51965e31d291 +RMD160 (libsylph-0.3.0.tar.bz2) = cedf54c42ed571202a5900ada5ad3ee130cd03dd +Size (libsylph-0.3.0.tar.bz2) = 1021084 bytes |