Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Dec 2012 14:28:07 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r309242 - in head/mail: . deforaos-mailer deforaos-mailer/files
Message-ID:  <201212191428.qBJES7Im015005@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Wed Dec 19 14:28:06 2012
New Revision: 309242
URL: http://svnweb.freebsd.org/changeset/ports/309242

Log:
  DeforaOS desktop mail client
  
  PR:		ports/173000
  Submitted by:	Olivier Cochard-Labbe <olivier@cochard.me>

Added:
  head/mail/deforaos-mailer/
  head/mail/deforaos-mailer/Makefile   (contents, props changed)
  head/mail/deforaos-mailer/distinfo   (contents, props changed)
  head/mail/deforaos-mailer/files/
  head/mail/deforaos-mailer/files/patch-doc__Makefile   (contents, props changed)
  head/mail/deforaos-mailer/pkg-descr   (contents, props changed)
  head/mail/deforaos-mailer/pkg-plist   (contents, props changed)
Modified:
  head/mail/Makefile

Modified: head/mail/Makefile
==============================================================================
--- head/mail/Makefile	Wed Dec 19 14:10:11 2012	(r309241)
+++ head/mail/Makefile	Wed Dec 19 14:28:06 2012	(r309242)
@@ -88,6 +88,7 @@
     SUBDIR += dbmail
     SUBDIR += dbmail22
     SUBDIR += dcc-dccd
+    SUBDIR += deforaos-mailer
     SUBDIR += delatt
     SUBDIR += dk-milter
     SUBDIR += dkfilter

Added: head/mail/deforaos-mailer/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/deforaos-mailer/Makefile	Wed Dec 19 14:28:06 2012	(r309242)
@@ -0,0 +1,37 @@
+# Created by: Olivier Cochard-Labbe <olivier@cochard.me>
+# $FreeBSD$
+
+PORTNAME=	mailer
+PORTVERSION=	0.1.5
+CATEGORIES=	mail
+MASTER_SITES=	http://www.defora.org/os/download/download/3704/
+DISTNAME=	Mailer-${PORTVERSION}
+PKGNAMEPREFIX=	deforaos-
+
+MAINTAINER=	olivier@cochard.me
+COMMENT=	DeforaOS desktop mail client
+
+LICENSE=	GPLv3
+
+BUILD_DEPENDS=	xsltproc:${PORTSDIR}/textproc/libxslt \
+		${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl:${PORTSDIR}/textproc/docbook-xsl
+LIB_DEPENDS=	System:${PORTSDIR}/devel/deforaos-libsystem \
+		Desktop:${PORTSDIR}/x11/deforaos-libdesktop
+
+USE_GNOME=	gtk20 desktopfileutils
+USE_PKGCONFIG=	build
+USE_GETTEXT=	yes
+INSTALLS_ICONS=	yes
+USE_LDCONFIG=	yes
+USE_OPENSSL=	yes
+
+MAKE_ENV+=	MANDIR=${MANPREFIX}/man
+
+MAN1=		compose.1 \
+		mailer.1
+
+post-patch:
+	${REINPLACE_CMD} -e 's|/lib/|/libdata/|g' \
+		${WRKSRC}/data/pkgconfig.sh
+
+.include <bsd.port.mk>

Added: head/mail/deforaos-mailer/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/deforaos-mailer/distinfo	Wed Dec 19 14:28:06 2012	(r309242)
@@ -0,0 +1,2 @@
+SHA256 (Mailer-0.1.5.tar.gz) = dc3d7d0501a08c047dfbd6dce9504dea844d4b5bff7fad90b8e6439342dea64d
+SIZE (Mailer-0.1.5.tar.gz) = 105898

Added: head/mail/deforaos-mailer/files/patch-doc__Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/deforaos-mailer/files/patch-doc__Makefile	Wed Dec 19 14:28:06 2012	(r309242)
@@ -0,0 +1,30 @@
+--- ./doc/Makefile.orig	2012-10-14 19:06:02.000000000 +0200
++++ ./doc/Makefile	2012-12-19 15:18:51.668613464 +0100
+@@ -1,5 +1,5 @@
+ SUBDIRS	= gtkdoc
+-TARGETS	= compose.1 compose.html gtkdoc/Mailer.types gtkdoc/tmpl.stamp gtkdoc/sgml.stamp gtkdoc/html.stamp mailer.1 mailer.html
++TARGETS	= compose.1 mailer.1
+ PREFIX	= /usr/local
+ DESTDIR	=
+ RM	?= rm -f
+@@ -8,7 +8,7 @@
+ INSTALL	?= install
+ 
+ 
+-all: subdirs $(TARGETS)
++all: $(TARGETS)
+ 
+ subdirs:
+ 	@for i in $(SUBDIRS); do (cd $$i && $(MAKE)) || exit; done
+@@ -48,9 +48,8 @@
+ 
+ install: $(TARGETS)
+ 	@for i in $(SUBDIRS); do (cd $$i && $(MAKE) install) || exit; done
+-	./docbook.sh -P "$(DESTDIR)$(PREFIX)" -i -- "compose.html"
+-	./gtkdoc.sh -P "$(DESTDIR)$(PREFIX)" -i -- "gtkdoc/html.stamp"
+-	./docbook.sh -P "$(DESTDIR)$(PREFIX)" -i -- "mailer.html"
++	./docbook.sh -P "$(DESTDIR)$(PREFIX)" -i -- "compose.1"
++	./docbook.sh -P "$(DESTDIR)$(PREFIX)" -i -- "mailer.1"
+ 
+ uninstall:
+ 	@for i in $(SUBDIRS); do (cd $$i && $(MAKE) uninstall) || exit; done

Added: head/mail/deforaos-mailer/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/deforaos-mailer/pkg-descr	Wed Dec 19 14:28:06 2012	(r309242)
@@ -0,0 +1,3 @@
+DeforaOS desktop mail client
+
+WWW: http://www.defora.org/

Added: head/mail/deforaos-mailer/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/deforaos-mailer/pkg-plist	Wed Dec 19 14:28:06 2012	(r309242)
@@ -0,0 +1,42 @@
+bin/compose
+bin/mailer
+include/Desktop/Mailer.h
+include/Desktop/Mailer/account.h
+include/Desktop/Mailer/folder.h
+include/Desktop/Mailer/helper.h
+include/Desktop/Mailer/mailer.h
+include/Desktop/Mailer/message.h
+include/Desktop/Mailer/plugin.h
+include/Desktop/Mailer/transport.h
+lib/Mailer/account/imap4.so
+lib/Mailer/account/mbox.so
+lib/Mailer/account/pop3.so
+lib/Mailer/plugins/mailing-lists.so
+lib/Mailer/plugins/search.so
+lib/libMailer.a
+lib/libMailer.so
+lib/libMailer.so.0
+lib/libMailer.so.0.0
+libdata/pkgconfig/Mailer.pc
+share/applications/mailer.desktop
+share/icons/hicolor/16x16/apps/mailer-accounts.png
+share/icons/hicolor/16x16/apps/mailer-drafts.png
+share/icons/hicolor/16x16/apps/mailer-inbox.png
+share/icons/hicolor/16x16/apps/mailer-outbox.png
+share/icons/hicolor/16x16/apps/mailer-sent.png
+share/icons/hicolor/16x16/apps/mailer.png
+share/icons/hicolor/24x24/apps/mailer-accounts.png
+share/icons/hicolor/24x24/apps/mailer-drafts.png
+share/icons/hicolor/24x24/apps/mailer-inbox.png
+share/icons/hicolor/24x24/apps/mailer-outbox.png
+share/icons/hicolor/24x24/apps/mailer-sent.png
+share/icons/hicolor/24x24/apps/mailer.png
+share/icons/hicolor/48x48/apps/mailer-inbox.png
+share/icons/hicolor/48x48/apps/mailer-outbox.png
+share/icons/hicolor/48x48/apps/mailer-sent.png
+share/icons/hicolor/48x48/apps/mailer.png
+share/locale/fr/LC_MESSAGES/Mailer.mo
+@dirrm include/Desktop/Mailer
+@dirrm lib/Mailer/account
+@dirrm lib/Mailer/plugins
+@dirrm lib/Mailer



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212191428.qBJES7Im015005>