diff options
author | nakai <nakai@FreeBSD.org> | 2000-06-05 18:36:25 +0800 |
---|---|---|
committer | nakai <nakai@FreeBSD.org> | 2000-06-05 18:36:25 +0800 |
commit | dc7e426f6b8ed3c4aef791b48b5eab428fbc5e72 (patch) | |
tree | 4fd52200373ec4d9f81b92da5e10b1fdfaff5c0b | |
parent | aef6dcc485b5ca927e9bc7cff8d114a85ba72804 (diff) | |
download | freebsd-ports-gnome-dc7e426f6b8ed3c4aef791b48b5eab428fbc5e72.tar.gz freebsd-ports-gnome-dc7e426f6b8ed3c4aef791b48b5eab428fbc5e72.tar.zst freebsd-ports-gnome-dc7e426f6b8ed3c4aef791b48b5eab428fbc5e72.zip |
An GTK+ based e-mail client.
PR: ports/18622
Submitted by: Shigetoshi Inohana <inohana@tokai-soft.co.jp>
-rw-r--r-- | mail/sylpheed/Makefile | 41 | ||||
-rw-r--r-- | mail/sylpheed/distinfo | 1 | ||||
-rw-r--r-- | mail/sylpheed/files/patch-ac | 20 | ||||
-rw-r--r-- | mail/sylpheed/pkg-comment | 1 | ||||
-rw-r--r-- | mail/sylpheed/pkg-descr | 3 | ||||
-rw-r--r-- | mail/sylpheed/pkg-plist | 12 | ||||
-rw-r--r-- | mail/sylpheed2-devel/Makefile | 41 | ||||
-rw-r--r-- | mail/sylpheed2-devel/distinfo | 1 | ||||
-rw-r--r-- | mail/sylpheed2-devel/files/patch-ac | 20 | ||||
-rw-r--r-- | mail/sylpheed2-devel/pkg-comment | 1 | ||||
-rw-r--r-- | mail/sylpheed2-devel/pkg-descr | 3 | ||||
-rw-r--r-- | mail/sylpheed2-devel/pkg-plist | 12 | ||||
-rw-r--r-- | mail/sylpheed2/Makefile | 41 | ||||
-rw-r--r-- | mail/sylpheed2/distinfo | 1 | ||||
-rw-r--r-- | mail/sylpheed2/files/patch-ac | 20 | ||||
-rw-r--r-- | mail/sylpheed2/pkg-comment | 1 | ||||
-rw-r--r-- | mail/sylpheed2/pkg-descr | 3 | ||||
-rw-r--r-- | mail/sylpheed2/pkg-plist | 12 | ||||
-rw-r--r-- | mail/sylpheed3/Makefile | 41 | ||||
-rw-r--r-- | mail/sylpheed3/distinfo | 1 | ||||
-rw-r--r-- | mail/sylpheed3/files/patch-ac | 20 | ||||
-rw-r--r-- | mail/sylpheed3/pkg-comment | 1 | ||||
-rw-r--r-- | mail/sylpheed3/pkg-descr | 3 | ||||
-rw-r--r-- | mail/sylpheed3/pkg-plist | 12 |
24 files changed, 312 insertions, 0 deletions
diff --git a/mail/sylpheed/Makefile b/mail/sylpheed/Makefile new file mode 100644 index 000000000000..60da1094ae3f --- /dev/null +++ b/mail/sylpheed/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: sylpheed +# Date created: 15 June 2000 +# Whom: shigeri <shigeri@m10.alpha-net.ne.jp> +# +# $FreeBSD$ +# + +PORTNAME= sylpheed +PORTVERSION= 0.3.13 +CATEGORIES= mail +MASTER_SITES= http://www.kcn.ne.jp/~hiro-y/sylpheed/ + +MAINTAINER= shigeri@m10.alpha-net.ne.jp + +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +USE_BZIP2= yes +USE_GMAKE= yes +USE_X_PREFIX= yes +USE_LIBTOOL= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + GLIB_CONFIG="${GLIB_CONFIG}" \ + GTK_CONFIG="${GTK_CONFIG}" \ + LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --disable-glibtest --disable-gtktest + +DOCS= ABOUT-NLS COPYING ChangeLog ChangeLog.jp INSTALL INSTALL.jp \ + README README.jp TODO.jp + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/sylpheed +.for i in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/sylpheed +.endfor +.endif + +.include <bsd.port.mk> diff --git a/mail/sylpheed/distinfo b/mail/sylpheed/distinfo new file mode 100644 index 000000000000..7a4a985b671c --- /dev/null +++ b/mail/sylpheed/distinfo @@ -0,0 +1 @@ +MD5 (sylpheed-0.3.13.tar.bz2) = 5ff296bf1df69371e27e541e84404d6b diff --git a/mail/sylpheed/files/patch-ac b/mail/sylpheed/files/patch-ac new file mode 100644 index 000000000000..8f77933908b3 --- /dev/null +++ b/mail/sylpheed/files/patch-ac @@ -0,0 +1,20 @@ +--- src/main.h.orig Fri Apr 21 02:44:30 2000 ++++ src/main.h Wed May 3 21:00:00 2000 +@@ -34,11 +34,15 @@ + #define MARK_VERSION 2 + + #define DEFAULT_SIGNATURE ".signature" +-#define DEFAULT_INC_PATH "/usr/bin/mh/inc" +-#define DEFAULT_INC_PROGRAM "inc" ++#define DEFAULT_INC_PATH "" ++#define DEFAULT_INC_PROGRAM "" + /* #define DEFAULT_INC_PATH "/usr/bin/imget" */ + /* #define DEFAULT_INC_PROGRAM "imget" */ ++#if defined(__FreeBSD__) ++#define DEFAULT_SPOOL_PATH "/var/mail" ++#else + #define DEFAULT_SPOOL_PATH "/var/spool/mail" ++#endif + + #define BUFFSIZE 8192 + #define MAXPATHLEN 4095 diff --git a/mail/sylpheed/pkg-comment b/mail/sylpheed/pkg-comment new file mode 100644 index 000000000000..66e751663eef --- /dev/null +++ b/mail/sylpheed/pkg-comment @@ -0,0 +1 @@ +An X based e-mail client diff --git a/mail/sylpheed/pkg-descr b/mail/sylpheed/pkg-descr new file mode 100644 index 000000000000..2e57247c9bf7 --- /dev/null +++ b/mail/sylpheed/pkg-descr @@ -0,0 +1,3 @@ +This program is an X based e-mail client + +WWW: http://www.kcn.ne.jp/~hiro-y/ diff --git a/mail/sylpheed/pkg-plist b/mail/sylpheed/pkg-plist new file mode 100644 index 000000000000..1b7e4c343bcc --- /dev/null +++ b/mail/sylpheed/pkg-plist @@ -0,0 +1,12 @@ +bin/sylpheed +share/doc/sylpheed/ABOUT-NLS +share/doc/sylpheed/COPYING +share/doc/sylpheed/ChangeLog +share/doc/sylpheed/ChangeLog.jp +share/doc/sylpheed/INSTALL +share/doc/sylpheed/INSTALL.jp +share/doc/sylpheed/README +share/doc/sylpheed/README.jp +share/doc/sylpheed/TODO.jp +share/locale/ja/LC_MESSAGES/sylpheed.mo +@dirrm share/doc/sylpheed diff --git a/mail/sylpheed2-devel/Makefile b/mail/sylpheed2-devel/Makefile new file mode 100644 index 000000000000..60da1094ae3f --- /dev/null +++ b/mail/sylpheed2-devel/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: sylpheed +# Date created: 15 June 2000 +# Whom: shigeri <shigeri@m10.alpha-net.ne.jp> +# +# $FreeBSD$ +# + +PORTNAME= sylpheed +PORTVERSION= 0.3.13 +CATEGORIES= mail +MASTER_SITES= http://www.kcn.ne.jp/~hiro-y/sylpheed/ + +MAINTAINER= shigeri@m10.alpha-net.ne.jp + +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +USE_BZIP2= yes +USE_GMAKE= yes +USE_X_PREFIX= yes +USE_LIBTOOL= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + GLIB_CONFIG="${GLIB_CONFIG}" \ + GTK_CONFIG="${GTK_CONFIG}" \ + LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --disable-glibtest --disable-gtktest + +DOCS= ABOUT-NLS COPYING ChangeLog ChangeLog.jp INSTALL INSTALL.jp \ + README README.jp TODO.jp + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/sylpheed +.for i in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/sylpheed +.endfor +.endif + +.include <bsd.port.mk> diff --git a/mail/sylpheed2-devel/distinfo b/mail/sylpheed2-devel/distinfo new file mode 100644 index 000000000000..7a4a985b671c --- /dev/null +++ b/mail/sylpheed2-devel/distinfo @@ -0,0 +1 @@ +MD5 (sylpheed-0.3.13.tar.bz2) = 5ff296bf1df69371e27e541e84404d6b diff --git a/mail/sylpheed2-devel/files/patch-ac b/mail/sylpheed2-devel/files/patch-ac new file mode 100644 index 000000000000..8f77933908b3 --- /dev/null +++ b/mail/sylpheed2-devel/files/patch-ac @@ -0,0 +1,20 @@ +--- src/main.h.orig Fri Apr 21 02:44:30 2000 ++++ src/main.h Wed May 3 21:00:00 2000 +@@ -34,11 +34,15 @@ + #define MARK_VERSION 2 + + #define DEFAULT_SIGNATURE ".signature" +-#define DEFAULT_INC_PATH "/usr/bin/mh/inc" +-#define DEFAULT_INC_PROGRAM "inc" ++#define DEFAULT_INC_PATH "" ++#define DEFAULT_INC_PROGRAM "" + /* #define DEFAULT_INC_PATH "/usr/bin/imget" */ + /* #define DEFAULT_INC_PROGRAM "imget" */ ++#if defined(__FreeBSD__) ++#define DEFAULT_SPOOL_PATH "/var/mail" ++#else + #define DEFAULT_SPOOL_PATH "/var/spool/mail" ++#endif + + #define BUFFSIZE 8192 + #define MAXPATHLEN 4095 diff --git a/mail/sylpheed2-devel/pkg-comment b/mail/sylpheed2-devel/pkg-comment new file mode 100644 index 000000000000..66e751663eef --- /dev/null +++ b/mail/sylpheed2-devel/pkg-comment @@ -0,0 +1 @@ +An X based e-mail client diff --git a/mail/sylpheed2-devel/pkg-descr b/mail/sylpheed2-devel/pkg-descr new file mode 100644 index 000000000000..2e57247c9bf7 --- /dev/null +++ b/mail/sylpheed2-devel/pkg-descr @@ -0,0 +1,3 @@ +This program is an X based e-mail client + +WWW: http://www.kcn.ne.jp/~hiro-y/ diff --git a/mail/sylpheed2-devel/pkg-plist b/mail/sylpheed2-devel/pkg-plist new file mode 100644 index 000000000000..1b7e4c343bcc --- /dev/null +++ b/mail/sylpheed2-devel/pkg-plist @@ -0,0 +1,12 @@ +bin/sylpheed +share/doc/sylpheed/ABOUT-NLS +share/doc/sylpheed/COPYING +share/doc/sylpheed/ChangeLog +share/doc/sylpheed/ChangeLog.jp +share/doc/sylpheed/INSTALL +share/doc/sylpheed/INSTALL.jp +share/doc/sylpheed/README +share/doc/sylpheed/README.jp +share/doc/sylpheed/TODO.jp +share/locale/ja/LC_MESSAGES/sylpheed.mo +@dirrm share/doc/sylpheed diff --git a/mail/sylpheed2/Makefile b/mail/sylpheed2/Makefile new file mode 100644 index 000000000000..60da1094ae3f --- /dev/null +++ b/mail/sylpheed2/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: sylpheed +# Date created: 15 June 2000 +# Whom: shigeri <shigeri@m10.alpha-net.ne.jp> +# +# $FreeBSD$ +# + +PORTNAME= sylpheed +PORTVERSION= 0.3.13 +CATEGORIES= mail +MASTER_SITES= http://www.kcn.ne.jp/~hiro-y/sylpheed/ + +MAINTAINER= shigeri@m10.alpha-net.ne.jp + +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +USE_BZIP2= yes +USE_GMAKE= yes +USE_X_PREFIX= yes +USE_LIBTOOL= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + GLIB_CONFIG="${GLIB_CONFIG}" \ + GTK_CONFIG="${GTK_CONFIG}" \ + LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --disable-glibtest --disable-gtktest + +DOCS= ABOUT-NLS COPYING ChangeLog ChangeLog.jp INSTALL INSTALL.jp \ + README README.jp TODO.jp + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/sylpheed +.for i in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/sylpheed +.endfor +.endif + +.include <bsd.port.mk> diff --git a/mail/sylpheed2/distinfo b/mail/sylpheed2/distinfo new file mode 100644 index 000000000000..7a4a985b671c --- /dev/null +++ b/mail/sylpheed2/distinfo @@ -0,0 +1 @@ +MD5 (sylpheed-0.3.13.tar.bz2) = 5ff296bf1df69371e27e541e84404d6b diff --git a/mail/sylpheed2/files/patch-ac b/mail/sylpheed2/files/patch-ac new file mode 100644 index 000000000000..8f77933908b3 --- /dev/null +++ b/mail/sylpheed2/files/patch-ac @@ -0,0 +1,20 @@ +--- src/main.h.orig Fri Apr 21 02:44:30 2000 ++++ src/main.h Wed May 3 21:00:00 2000 +@@ -34,11 +34,15 @@ + #define MARK_VERSION 2 + + #define DEFAULT_SIGNATURE ".signature" +-#define DEFAULT_INC_PATH "/usr/bin/mh/inc" +-#define DEFAULT_INC_PROGRAM "inc" ++#define DEFAULT_INC_PATH "" ++#define DEFAULT_INC_PROGRAM "" + /* #define DEFAULT_INC_PATH "/usr/bin/imget" */ + /* #define DEFAULT_INC_PROGRAM "imget" */ ++#if defined(__FreeBSD__) ++#define DEFAULT_SPOOL_PATH "/var/mail" ++#else + #define DEFAULT_SPOOL_PATH "/var/spool/mail" ++#endif + + #define BUFFSIZE 8192 + #define MAXPATHLEN 4095 diff --git a/mail/sylpheed2/pkg-comment b/mail/sylpheed2/pkg-comment new file mode 100644 index 000000000000..66e751663eef --- /dev/null +++ b/mail/sylpheed2/pkg-comment @@ -0,0 +1 @@ +An X based e-mail client diff --git a/mail/sylpheed2/pkg-descr b/mail/sylpheed2/pkg-descr new file mode 100644 index 000000000000..2e57247c9bf7 --- /dev/null +++ b/mail/sylpheed2/pkg-descr @@ -0,0 +1,3 @@ +This program is an X based e-mail client + +WWW: http://www.kcn.ne.jp/~hiro-y/ diff --git a/mail/sylpheed2/pkg-plist b/mail/sylpheed2/pkg-plist new file mode 100644 index 000000000000..1b7e4c343bcc --- /dev/null +++ b/mail/sylpheed2/pkg-plist @@ -0,0 +1,12 @@ +bin/sylpheed +share/doc/sylpheed/ABOUT-NLS +share/doc/sylpheed/COPYING +share/doc/sylpheed/ChangeLog +share/doc/sylpheed/ChangeLog.jp +share/doc/sylpheed/INSTALL +share/doc/sylpheed/INSTALL.jp +share/doc/sylpheed/README +share/doc/sylpheed/README.jp +share/doc/sylpheed/TODO.jp +share/locale/ja/LC_MESSAGES/sylpheed.mo +@dirrm share/doc/sylpheed diff --git a/mail/sylpheed3/Makefile b/mail/sylpheed3/Makefile new file mode 100644 index 000000000000..60da1094ae3f --- /dev/null +++ b/mail/sylpheed3/Makefile @@ -0,0 +1,41 @@ +# New ports collection makefile for: sylpheed +# Date created: 15 June 2000 +# Whom: shigeri <shigeri@m10.alpha-net.ne.jp> +# +# $FreeBSD$ +# + +PORTNAME= sylpheed +PORTVERSION= 0.3.13 +CATEGORIES= mail +MASTER_SITES= http://www.kcn.ne.jp/~hiro-y/sylpheed/ + +MAINTAINER= shigeri@m10.alpha-net.ne.jp + +LIB_DEPENDS= gtk12.2:${PORTSDIR}/x11-toolkits/gtk12 + +GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config +GTK_CONFIG?= ${X11BASE}/bin/gtk12-config + +USE_BZIP2= yes +USE_GMAKE= yes +USE_X_PREFIX= yes +USE_LIBTOOL= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + GLIB_CONFIG="${GLIB_CONFIG}" \ + GTK_CONFIG="${GTK_CONFIG}" \ + LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --disable-glibtest --disable-gtktest + +DOCS= ABOUT-NLS COPYING ChangeLog ChangeLog.jp INSTALL INSTALL.jp \ + README README.jp TODO.jp + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/sylpheed +.for i in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/sylpheed +.endfor +.endif + +.include <bsd.port.mk> diff --git a/mail/sylpheed3/distinfo b/mail/sylpheed3/distinfo new file mode 100644 index 000000000000..7a4a985b671c --- /dev/null +++ b/mail/sylpheed3/distinfo @@ -0,0 +1 @@ +MD5 (sylpheed-0.3.13.tar.bz2) = 5ff296bf1df69371e27e541e84404d6b diff --git a/mail/sylpheed3/files/patch-ac b/mail/sylpheed3/files/patch-ac new file mode 100644 index 000000000000..8f77933908b3 --- /dev/null +++ b/mail/sylpheed3/files/patch-ac @@ -0,0 +1,20 @@ +--- src/main.h.orig Fri Apr 21 02:44:30 2000 ++++ src/main.h Wed May 3 21:00:00 2000 +@@ -34,11 +34,15 @@ + #define MARK_VERSION 2 + + #define DEFAULT_SIGNATURE ".signature" +-#define DEFAULT_INC_PATH "/usr/bin/mh/inc" +-#define DEFAULT_INC_PROGRAM "inc" ++#define DEFAULT_INC_PATH "" ++#define DEFAULT_INC_PROGRAM "" + /* #define DEFAULT_INC_PATH "/usr/bin/imget" */ + /* #define DEFAULT_INC_PROGRAM "imget" */ ++#if defined(__FreeBSD__) ++#define DEFAULT_SPOOL_PATH "/var/mail" ++#else + #define DEFAULT_SPOOL_PATH "/var/spool/mail" ++#endif + + #define BUFFSIZE 8192 + #define MAXPATHLEN 4095 diff --git a/mail/sylpheed3/pkg-comment b/mail/sylpheed3/pkg-comment new file mode 100644 index 000000000000..66e751663eef --- /dev/null +++ b/mail/sylpheed3/pkg-comment @@ -0,0 +1 @@ +An X based e-mail client diff --git a/mail/sylpheed3/pkg-descr b/mail/sylpheed3/pkg-descr new file mode 100644 index 000000000000..2e57247c9bf7 --- /dev/null +++ b/mail/sylpheed3/pkg-descr @@ -0,0 +1,3 @@ +This program is an X based e-mail client + +WWW: http://www.kcn.ne.jp/~hiro-y/ diff --git a/mail/sylpheed3/pkg-plist b/mail/sylpheed3/pkg-plist new file mode 100644 index 000000000000..1b7e4c343bcc --- /dev/null +++ b/mail/sylpheed3/pkg-plist @@ -0,0 +1,12 @@ +bin/sylpheed +share/doc/sylpheed/ABOUT-NLS +share/doc/sylpheed/COPYING +share/doc/sylpheed/ChangeLog +share/doc/sylpheed/ChangeLog.jp +share/doc/sylpheed/INSTALL +share/doc/sylpheed/INSTALL.jp +share/doc/sylpheed/README +share/doc/sylpheed/README.jp +share/doc/sylpheed/TODO.jp +share/locale/ja/LC_MESSAGES/sylpheed.mo +@dirrm share/doc/sylpheed |