diff options
author | Patrick Li <pat@FreeBSD.org> | 2002-01-09 00:52:08 +0000 |
---|---|---|
committer | Patrick Li <pat@FreeBSD.org> | 2002-01-09 00:52:08 +0000 |
commit | 6b69a655e9868bd891fb1c7977b018192d56aeab (patch) | |
tree | 56e41b8f4487949c451e04e3a6f81f393947733c | |
parent | 127ac3193ce8d11ea7bb63bbed90eb156158081f (diff) | |
download | ports-6b69a655e9868bd891fb1c7977b018192d56aeab.tar.gz ports-6b69a655e9868bd891fb1c7977b018192d56aeab.zip |
Notes
-rw-r--r-- | mail/sylpheed/Makefile | 71 | ||||
-rw-r--r-- | mail/sylpheed/distinfo | 2 | ||||
-rw-r--r-- | mail/sylpheed/pkg-plist | 4 | ||||
-rw-r--r-- | mail/sylpheed2-devel/Makefile | 71 | ||||
-rw-r--r-- | mail/sylpheed2-devel/distinfo | 2 | ||||
-rw-r--r-- | mail/sylpheed2-devel/pkg-plist | 4 | ||||
-rw-r--r-- | mail/sylpheed2/Makefile | 71 | ||||
-rw-r--r-- | mail/sylpheed2/distinfo | 2 | ||||
-rw-r--r-- | mail/sylpheed2/pkg-plist | 4 | ||||
-rw-r--r-- | mail/sylpheed3/Makefile | 71 | ||||
-rw-r--r-- | mail/sylpheed3/distinfo | 2 | ||||
-rw-r--r-- | mail/sylpheed3/pkg-plist | 4 |
12 files changed, 212 insertions, 96 deletions
diff --git a/mail/sylpheed/Makefile b/mail/sylpheed/Makefile index a38172a9ce1d..6107d71a7880 100644 --- a/mail/sylpheed/Makefile +++ b/mail/sylpheed/Makefile @@ -6,7 +6,7 @@ # PORTNAME= sylpheed -PORTVERSION= 0.6.6 +PORTVERSION= 0.7.0 CATEGORIES= mail ipv6 MASTER_SITES= http://sylpheed.good-day.net/sylpheed/ @@ -20,44 +20,71 @@ USE_LIBTOOL= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --disable-compface --disable-gdk-pixbuf --enable-ipv6 --prefix=${PREFIX} --with-included-gettext +CONFIGURE_ARGS= --enable-ipv6 --prefix=${PREFIX} --with-included-gettext +.if defined(WITH_PIXBUF) +LIB_DEPENDS+= gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf +CONFIGURE_ARGS+=--disable-imlib +.else +USE_IMLIB= yes +CONFIGURE_ARGS+=--disable-gdk-pixbuf +.endif .if defined(WITH_GPGME) LIB_DEPENDS+= gpgme.4:${PORTSDIR}/security/gpgme RUN_DEPENDS+= gpg:${PORTSDIR}/security/gnupg CONFIGURE_ARGS+=--enable-gpgme +.else +CONFIGURE_ARGS+=--disable-gpgme .endif -.if !defined(WITHOUT_SSL) -USE_OPENSSL= yes -CONFIGURE_ARGS+=--enable-ssl +.if defined(WITH_COMPFACE) +LIB_DEPENDS+= compface.1:${PORTSDIR}/mail/faces +CONFIGURE_ARGS+=--enable-compface +.else +CONFIGURE_ARGS+=--disable-compface .endif - -PORTDOCS= ChangeLog INSTALL README TODO - -pre-extract: -.if defined(WITH_GPGME) - @${ECHO_MSG} - @${ECHO_MSG} "WARNING: GnuPG support using GPGME is still experimental." +.if defined(WITH_JCONV) +LIB_DEPENDS+= jconv.0:${PORTSDIR}/japanese/libjconv +CONFIGURE_ARGS+=--enable-jconv +.else +CONFIGURE_ARGS+=--disable-jconv +.endif +.if defined(WITH_JPILOT) +LIB_DEPENDS+= expense.1:${PORTSDIR}/palm/jpilot +CONFIGURE_ARGS+=--enable-jpilot +CFLAGS+= -I${LOCALBASE}/pilot/include .else - @${ECHO_MSG} - @${ECHO_MSG} "You can enable GnuPG support using GPGME by defining WITH_GPGME." - @${ECHO_MSG} "WARNING: GnuPG support is still experimental." +CONFIGURE_ARGS+= --disable-jpilot .endif .if !defined(WITHOUT_SSL) - @${ECHO_MSG} - @${ECHO_MSG} "You can disable OpenSSL support by defining WITHOUT_SSL." +USE_OPENSSL= yes +CONFIGURE_ARGS+=--enable-ssl +.else +CONFIGURE_ARGS+=--disable-ssl .endif - @${ECHO_MSG} + +pre-everything:: + @${ECHO} "" + @${ECHO} "You may use the following build options:" + @${ECHO} "" + @${ECHO} " WITH_PIXBUF=yes Enable GDK Pixbuf support" + @${ECHO} " WITH_GPGME=yes Enable GnuPG support using GPGME." + @${ECHO} " WITH_COMPFACE=yes Enable X-Face support." + @${ECHO} " WITH_JCONV=yes Enable Japanese charset conversion" + @${ECHO} " library libjconv." + @${ECHO} " WITH_JPILOT=yes Enable JPilot support." + @${ECHO} "" + @${ECHO} " WITHOUT_SSL=yes Disable OpenSSL support." + @${ECHO} "" pre-build: ${LN} -sf ${LOCALBASE}/bin/${LIBTOOL} ${WRKSRC}/libtool post-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/sylpheed -.for i in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/sylpheed - ${INSTALL_DATA} ${WRKSRC}/${i}.jp ${PREFIX}/share/doc/sylpheed + @${MKDIR} ${DOCSDIR} +.for i in ChangeLog INSTALL README TODO + @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/${i}.jp ${DOCSDIR} .endfor .endif diff --git a/mail/sylpheed/distinfo b/mail/sylpheed/distinfo index 1c9c07803821..a1326bc2eb06 100644 --- a/mail/sylpheed/distinfo +++ b/mail/sylpheed/distinfo @@ -1 +1 @@ -MD5 (sylpheed-0.6.6.tar.bz2) = 1c7dc0f3074a9bb05da915892c7a6409 +MD5 (sylpheed-0.7.0.tar.bz2) = a50a0247662aca7c57533198b5562554 diff --git a/mail/sylpheed/pkg-plist b/mail/sylpheed/pkg-plist index 8757773b6fd1..44725b09d395 100644 --- a/mail/sylpheed/pkg-plist +++ b/mail/sylpheed/pkg-plist @@ -9,6 +9,7 @@ lib/charset.alias %%PORTDOCS%%share/doc/sylpheed/TODO %%PORTDOCS%%share/doc/sylpheed/TODO.jp share/locale/cs/LC_MESSAGES/sylpheed.mo +share/locale/da/LC_MESSAGES/sylpheed.mo share/locale/de/LC_MESSAGES/sylpheed.mo share/locale/el/LC_MESSAGES/sylpheed.mo share/locale/es/LC_MESSAGES/sylpheed.mo @@ -25,7 +26,8 @@ share/locale/pl/LC_MESSAGES/sylpheed.mo share/locale/pt_BR/LC_MESSAGES/sylpheed.mo share/locale/ru/LC_MESSAGES/sylpheed.mo share/locale/sv/LC_MESSAGES/sylpheed.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/sylpheed.mo +share/locale/tr/LC_MESSAGES/sylpheed.mo +share/locale/zh_CN/LC_MESSAGES/sylpheed.mo share/locale/zh_TW.Big5/LC_MESSAGES/sylpheed.mo share/sylpheed/manual/en/sylpheed-1.html share/sylpheed/manual/en/sylpheed-10.html diff --git a/mail/sylpheed2-devel/Makefile b/mail/sylpheed2-devel/Makefile index a38172a9ce1d..6107d71a7880 100644 --- a/mail/sylpheed2-devel/Makefile +++ b/mail/sylpheed2-devel/Makefile @@ -6,7 +6,7 @@ # PORTNAME= sylpheed -PORTVERSION= 0.6.6 +PORTVERSION= 0.7.0 CATEGORIES= mail ipv6 MASTER_SITES= http://sylpheed.good-day.net/sylpheed/ @@ -20,44 +20,71 @@ USE_LIBTOOL= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --disable-compface --disable-gdk-pixbuf --enable-ipv6 --prefix=${PREFIX} --with-included-gettext +CONFIGURE_ARGS= --enable-ipv6 --prefix=${PREFIX} --with-included-gettext +.if defined(WITH_PIXBUF) +LIB_DEPENDS+= gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf +CONFIGURE_ARGS+=--disable-imlib +.else +USE_IMLIB= yes +CONFIGURE_ARGS+=--disable-gdk-pixbuf +.endif .if defined(WITH_GPGME) LIB_DEPENDS+= gpgme.4:${PORTSDIR}/security/gpgme RUN_DEPENDS+= gpg:${PORTSDIR}/security/gnupg CONFIGURE_ARGS+=--enable-gpgme +.else +CONFIGURE_ARGS+=--disable-gpgme .endif -.if !defined(WITHOUT_SSL) -USE_OPENSSL= yes -CONFIGURE_ARGS+=--enable-ssl +.if defined(WITH_COMPFACE) +LIB_DEPENDS+= compface.1:${PORTSDIR}/mail/faces +CONFIGURE_ARGS+=--enable-compface +.else +CONFIGURE_ARGS+=--disable-compface .endif - -PORTDOCS= ChangeLog INSTALL README TODO - -pre-extract: -.if defined(WITH_GPGME) - @${ECHO_MSG} - @${ECHO_MSG} "WARNING: GnuPG support using GPGME is still experimental." +.if defined(WITH_JCONV) +LIB_DEPENDS+= jconv.0:${PORTSDIR}/japanese/libjconv +CONFIGURE_ARGS+=--enable-jconv +.else +CONFIGURE_ARGS+=--disable-jconv +.endif +.if defined(WITH_JPILOT) +LIB_DEPENDS+= expense.1:${PORTSDIR}/palm/jpilot +CONFIGURE_ARGS+=--enable-jpilot +CFLAGS+= -I${LOCALBASE}/pilot/include .else - @${ECHO_MSG} - @${ECHO_MSG} "You can enable GnuPG support using GPGME by defining WITH_GPGME." - @${ECHO_MSG} "WARNING: GnuPG support is still experimental." +CONFIGURE_ARGS+= --disable-jpilot .endif .if !defined(WITHOUT_SSL) - @${ECHO_MSG} - @${ECHO_MSG} "You can disable OpenSSL support by defining WITHOUT_SSL." +USE_OPENSSL= yes +CONFIGURE_ARGS+=--enable-ssl +.else +CONFIGURE_ARGS+=--disable-ssl .endif - @${ECHO_MSG} + +pre-everything:: + @${ECHO} "" + @${ECHO} "You may use the following build options:" + @${ECHO} "" + @${ECHO} " WITH_PIXBUF=yes Enable GDK Pixbuf support" + @${ECHO} " WITH_GPGME=yes Enable GnuPG support using GPGME." + @${ECHO} " WITH_COMPFACE=yes Enable X-Face support." + @${ECHO} " WITH_JCONV=yes Enable Japanese charset conversion" + @${ECHO} " library libjconv." + @${ECHO} " WITH_JPILOT=yes Enable JPilot support." + @${ECHO} "" + @${ECHO} " WITHOUT_SSL=yes Disable OpenSSL support." + @${ECHO} "" pre-build: ${LN} -sf ${LOCALBASE}/bin/${LIBTOOL} ${WRKSRC}/libtool post-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/sylpheed -.for i in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/sylpheed - ${INSTALL_DATA} ${WRKSRC}/${i}.jp ${PREFIX}/share/doc/sylpheed + @${MKDIR} ${DOCSDIR} +.for i in ChangeLog INSTALL README TODO + @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/${i}.jp ${DOCSDIR} .endfor .endif diff --git a/mail/sylpheed2-devel/distinfo b/mail/sylpheed2-devel/distinfo index 1c9c07803821..a1326bc2eb06 100644 --- a/mail/sylpheed2-devel/distinfo +++ b/mail/sylpheed2-devel/distinfo @@ -1 +1 @@ -MD5 (sylpheed-0.6.6.tar.bz2) = 1c7dc0f3074a9bb05da915892c7a6409 +MD5 (sylpheed-0.7.0.tar.bz2) = a50a0247662aca7c57533198b5562554 diff --git a/mail/sylpheed2-devel/pkg-plist b/mail/sylpheed2-devel/pkg-plist index 8757773b6fd1..44725b09d395 100644 --- a/mail/sylpheed2-devel/pkg-plist +++ b/mail/sylpheed2-devel/pkg-plist @@ -9,6 +9,7 @@ lib/charset.alias %%PORTDOCS%%share/doc/sylpheed/TODO %%PORTDOCS%%share/doc/sylpheed/TODO.jp share/locale/cs/LC_MESSAGES/sylpheed.mo +share/locale/da/LC_MESSAGES/sylpheed.mo share/locale/de/LC_MESSAGES/sylpheed.mo share/locale/el/LC_MESSAGES/sylpheed.mo share/locale/es/LC_MESSAGES/sylpheed.mo @@ -25,7 +26,8 @@ share/locale/pl/LC_MESSAGES/sylpheed.mo share/locale/pt_BR/LC_MESSAGES/sylpheed.mo share/locale/ru/LC_MESSAGES/sylpheed.mo share/locale/sv/LC_MESSAGES/sylpheed.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/sylpheed.mo +share/locale/tr/LC_MESSAGES/sylpheed.mo +share/locale/zh_CN/LC_MESSAGES/sylpheed.mo share/locale/zh_TW.Big5/LC_MESSAGES/sylpheed.mo share/sylpheed/manual/en/sylpheed-1.html share/sylpheed/manual/en/sylpheed-10.html diff --git a/mail/sylpheed2/Makefile b/mail/sylpheed2/Makefile index a38172a9ce1d..6107d71a7880 100644 --- a/mail/sylpheed2/Makefile +++ b/mail/sylpheed2/Makefile @@ -6,7 +6,7 @@ # PORTNAME= sylpheed -PORTVERSION= 0.6.6 +PORTVERSION= 0.7.0 CATEGORIES= mail ipv6 MASTER_SITES= http://sylpheed.good-day.net/sylpheed/ @@ -20,44 +20,71 @@ USE_LIBTOOL= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --disable-compface --disable-gdk-pixbuf --enable-ipv6 --prefix=${PREFIX} --with-included-gettext +CONFIGURE_ARGS= --enable-ipv6 --prefix=${PREFIX} --with-included-gettext +.if defined(WITH_PIXBUF) +LIB_DEPENDS+= gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf +CONFIGURE_ARGS+=--disable-imlib +.else +USE_IMLIB= yes +CONFIGURE_ARGS+=--disable-gdk-pixbuf +.endif .if defined(WITH_GPGME) LIB_DEPENDS+= gpgme.4:${PORTSDIR}/security/gpgme RUN_DEPENDS+= gpg:${PORTSDIR}/security/gnupg CONFIGURE_ARGS+=--enable-gpgme +.else +CONFIGURE_ARGS+=--disable-gpgme .endif -.if !defined(WITHOUT_SSL) -USE_OPENSSL= yes -CONFIGURE_ARGS+=--enable-ssl +.if defined(WITH_COMPFACE) +LIB_DEPENDS+= compface.1:${PORTSDIR}/mail/faces +CONFIGURE_ARGS+=--enable-compface +.else +CONFIGURE_ARGS+=--disable-compface .endif - -PORTDOCS= ChangeLog INSTALL README TODO - -pre-extract: -.if defined(WITH_GPGME) - @${ECHO_MSG} - @${ECHO_MSG} "WARNING: GnuPG support using GPGME is still experimental." +.if defined(WITH_JCONV) +LIB_DEPENDS+= jconv.0:${PORTSDIR}/japanese/libjconv +CONFIGURE_ARGS+=--enable-jconv +.else +CONFIGURE_ARGS+=--disable-jconv +.endif +.if defined(WITH_JPILOT) +LIB_DEPENDS+= expense.1:${PORTSDIR}/palm/jpilot +CONFIGURE_ARGS+=--enable-jpilot +CFLAGS+= -I${LOCALBASE}/pilot/include .else - @${ECHO_MSG} - @${ECHO_MSG} "You can enable GnuPG support using GPGME by defining WITH_GPGME." - @${ECHO_MSG} "WARNING: GnuPG support is still experimental." +CONFIGURE_ARGS+= --disable-jpilot .endif .if !defined(WITHOUT_SSL) - @${ECHO_MSG} - @${ECHO_MSG} "You can disable OpenSSL support by defining WITHOUT_SSL." +USE_OPENSSL= yes +CONFIGURE_ARGS+=--enable-ssl +.else +CONFIGURE_ARGS+=--disable-ssl .endif - @${ECHO_MSG} + +pre-everything:: + @${ECHO} "" + @${ECHO} "You may use the following build options:" + @${ECHO} "" + @${ECHO} " WITH_PIXBUF=yes Enable GDK Pixbuf support" + @${ECHO} " WITH_GPGME=yes Enable GnuPG support using GPGME." + @${ECHO} " WITH_COMPFACE=yes Enable X-Face support." + @${ECHO} " WITH_JCONV=yes Enable Japanese charset conversion" + @${ECHO} " library libjconv." + @${ECHO} " WITH_JPILOT=yes Enable JPilot support." + @${ECHO} "" + @${ECHO} " WITHOUT_SSL=yes Disable OpenSSL support." + @${ECHO} "" pre-build: ${LN} -sf ${LOCALBASE}/bin/${LIBTOOL} ${WRKSRC}/libtool post-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/sylpheed -.for i in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/sylpheed - ${INSTALL_DATA} ${WRKSRC}/${i}.jp ${PREFIX}/share/doc/sylpheed + @${MKDIR} ${DOCSDIR} +.for i in ChangeLog INSTALL README TODO + @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/${i}.jp ${DOCSDIR} .endfor .endif diff --git a/mail/sylpheed2/distinfo b/mail/sylpheed2/distinfo index 1c9c07803821..a1326bc2eb06 100644 --- a/mail/sylpheed2/distinfo +++ b/mail/sylpheed2/distinfo @@ -1 +1 @@ -MD5 (sylpheed-0.6.6.tar.bz2) = 1c7dc0f3074a9bb05da915892c7a6409 +MD5 (sylpheed-0.7.0.tar.bz2) = a50a0247662aca7c57533198b5562554 diff --git a/mail/sylpheed2/pkg-plist b/mail/sylpheed2/pkg-plist index 8757773b6fd1..44725b09d395 100644 --- a/mail/sylpheed2/pkg-plist +++ b/mail/sylpheed2/pkg-plist @@ -9,6 +9,7 @@ lib/charset.alias %%PORTDOCS%%share/doc/sylpheed/TODO %%PORTDOCS%%share/doc/sylpheed/TODO.jp share/locale/cs/LC_MESSAGES/sylpheed.mo +share/locale/da/LC_MESSAGES/sylpheed.mo share/locale/de/LC_MESSAGES/sylpheed.mo share/locale/el/LC_MESSAGES/sylpheed.mo share/locale/es/LC_MESSAGES/sylpheed.mo @@ -25,7 +26,8 @@ share/locale/pl/LC_MESSAGES/sylpheed.mo share/locale/pt_BR/LC_MESSAGES/sylpheed.mo share/locale/ru/LC_MESSAGES/sylpheed.mo share/locale/sv/LC_MESSAGES/sylpheed.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/sylpheed.mo +share/locale/tr/LC_MESSAGES/sylpheed.mo +share/locale/zh_CN/LC_MESSAGES/sylpheed.mo share/locale/zh_TW.Big5/LC_MESSAGES/sylpheed.mo share/sylpheed/manual/en/sylpheed-1.html share/sylpheed/manual/en/sylpheed-10.html diff --git a/mail/sylpheed3/Makefile b/mail/sylpheed3/Makefile index a38172a9ce1d..6107d71a7880 100644 --- a/mail/sylpheed3/Makefile +++ b/mail/sylpheed3/Makefile @@ -6,7 +6,7 @@ # PORTNAME= sylpheed -PORTVERSION= 0.6.6 +PORTVERSION= 0.7.0 CATEGORIES= mail ipv6 MASTER_SITES= http://sylpheed.good-day.net/sylpheed/ @@ -20,44 +20,71 @@ USE_LIBTOOL= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --disable-compface --disable-gdk-pixbuf --enable-ipv6 --prefix=${PREFIX} --with-included-gettext +CONFIGURE_ARGS= --enable-ipv6 --prefix=${PREFIX} --with-included-gettext +.if defined(WITH_PIXBUF) +LIB_DEPENDS+= gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf +CONFIGURE_ARGS+=--disable-imlib +.else +USE_IMLIB= yes +CONFIGURE_ARGS+=--disable-gdk-pixbuf +.endif .if defined(WITH_GPGME) LIB_DEPENDS+= gpgme.4:${PORTSDIR}/security/gpgme RUN_DEPENDS+= gpg:${PORTSDIR}/security/gnupg CONFIGURE_ARGS+=--enable-gpgme +.else +CONFIGURE_ARGS+=--disable-gpgme .endif -.if !defined(WITHOUT_SSL) -USE_OPENSSL= yes -CONFIGURE_ARGS+=--enable-ssl +.if defined(WITH_COMPFACE) +LIB_DEPENDS+= compface.1:${PORTSDIR}/mail/faces +CONFIGURE_ARGS+=--enable-compface +.else +CONFIGURE_ARGS+=--disable-compface .endif - -PORTDOCS= ChangeLog INSTALL README TODO - -pre-extract: -.if defined(WITH_GPGME) - @${ECHO_MSG} - @${ECHO_MSG} "WARNING: GnuPG support using GPGME is still experimental." +.if defined(WITH_JCONV) +LIB_DEPENDS+= jconv.0:${PORTSDIR}/japanese/libjconv +CONFIGURE_ARGS+=--enable-jconv +.else +CONFIGURE_ARGS+=--disable-jconv +.endif +.if defined(WITH_JPILOT) +LIB_DEPENDS+= expense.1:${PORTSDIR}/palm/jpilot +CONFIGURE_ARGS+=--enable-jpilot +CFLAGS+= -I${LOCALBASE}/pilot/include .else - @${ECHO_MSG} - @${ECHO_MSG} "You can enable GnuPG support using GPGME by defining WITH_GPGME." - @${ECHO_MSG} "WARNING: GnuPG support is still experimental." +CONFIGURE_ARGS+= --disable-jpilot .endif .if !defined(WITHOUT_SSL) - @${ECHO_MSG} - @${ECHO_MSG} "You can disable OpenSSL support by defining WITHOUT_SSL." +USE_OPENSSL= yes +CONFIGURE_ARGS+=--enable-ssl +.else +CONFIGURE_ARGS+=--disable-ssl .endif - @${ECHO_MSG} + +pre-everything:: + @${ECHO} "" + @${ECHO} "You may use the following build options:" + @${ECHO} "" + @${ECHO} " WITH_PIXBUF=yes Enable GDK Pixbuf support" + @${ECHO} " WITH_GPGME=yes Enable GnuPG support using GPGME." + @${ECHO} " WITH_COMPFACE=yes Enable X-Face support." + @${ECHO} " WITH_JCONV=yes Enable Japanese charset conversion" + @${ECHO} " library libjconv." + @${ECHO} " WITH_JPILOT=yes Enable JPilot support." + @${ECHO} "" + @${ECHO} " WITHOUT_SSL=yes Disable OpenSSL support." + @${ECHO} "" pre-build: ${LN} -sf ${LOCALBASE}/bin/${LIBTOOL} ${WRKSRC}/libtool post-install: .if !defined(NOPORTDOCS) - ${MKDIR} ${PREFIX}/share/doc/sylpheed -.for i in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/sylpheed - ${INSTALL_DATA} ${WRKSRC}/${i}.jp ${PREFIX}/share/doc/sylpheed + @${MKDIR} ${DOCSDIR} +.for i in ChangeLog INSTALL README TODO + @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/${i}.jp ${DOCSDIR} .endfor .endif diff --git a/mail/sylpheed3/distinfo b/mail/sylpheed3/distinfo index 1c9c07803821..a1326bc2eb06 100644 --- a/mail/sylpheed3/distinfo +++ b/mail/sylpheed3/distinfo @@ -1 +1 @@ -MD5 (sylpheed-0.6.6.tar.bz2) = 1c7dc0f3074a9bb05da915892c7a6409 +MD5 (sylpheed-0.7.0.tar.bz2) = a50a0247662aca7c57533198b5562554 diff --git a/mail/sylpheed3/pkg-plist b/mail/sylpheed3/pkg-plist index 8757773b6fd1..44725b09d395 100644 --- a/mail/sylpheed3/pkg-plist +++ b/mail/sylpheed3/pkg-plist @@ -9,6 +9,7 @@ lib/charset.alias %%PORTDOCS%%share/doc/sylpheed/TODO %%PORTDOCS%%share/doc/sylpheed/TODO.jp share/locale/cs/LC_MESSAGES/sylpheed.mo +share/locale/da/LC_MESSAGES/sylpheed.mo share/locale/de/LC_MESSAGES/sylpheed.mo share/locale/el/LC_MESSAGES/sylpheed.mo share/locale/es/LC_MESSAGES/sylpheed.mo @@ -25,7 +26,8 @@ share/locale/pl/LC_MESSAGES/sylpheed.mo share/locale/pt_BR/LC_MESSAGES/sylpheed.mo share/locale/ru/LC_MESSAGES/sylpheed.mo share/locale/sv/LC_MESSAGES/sylpheed.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/sylpheed.mo +share/locale/tr/LC_MESSAGES/sylpheed.mo +share/locale/zh_CN/LC_MESSAGES/sylpheed.mo share/locale/zh_TW.Big5/LC_MESSAGES/sylpheed.mo share/sylpheed/manual/en/sylpheed-1.html share/sylpheed/manual/en/sylpheed-10.html |