View | Details | Raw Unified | Return to bug 33922
Collapse All | Expand All

(-)sylpheed-claws/Makefile (-37 / +40 lines)
Lines 5-16 Link Here
5
# $FreeBSD: ports/mail/sylpheed-claws/Makefile,v 1.2 2002/01/09 02:15:36 pat Exp $
5
# $FreeBSD: ports/mail/sylpheed-claws/Makefile,v 1.2 2002/01/09 02:15:36 pat Exp $
6
#
6
#
7
7
8
PORTNAME=	sylpheed
8
PORTNAME=	sylpheed-claws
9
PORTVERSION=	0.6.6
9
PORTVERSION=	0.7.0
10
CATEGORIES=	mail news ipv6
10
CATEGORIES=	mail news ipv6
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=	sylpheed-claws
12
MASTER_SITE_SUBDIR=	sylpheed-claws
13
PKGNAMESUFFIX=	-claws
14
DISTNAME=	sylpheed-${PORTVERSION}claws
13
DISTNAME=	sylpheed-${PORTVERSION}claws
15
14
16
MAINTAINER=	corecode@corecode.ath.cx
15
MAINTAINER=	corecode@corecode.ath.cx
Lines 23-49 Link Here
23
CONFIGURE_ARGS=	--program-suffix="-claws" --with-included-gettext \
22
CONFIGURE_ARGS=	--program-suffix="-claws" --with-included-gettext \
24
		--enable-ipv6
23
		--enable-ipv6
25
24
26
CONFIGURE_ENV=	CFLAGS="${CFLAGS}"
25
CONFIGURE_ENV=	CFLAGS="${CFLAGS}" LIBS="-L${X11BASE}/lib -L${LOCALBASE}/lib"
27
26
28
.if defined(WITH_PIXBUF)
27
.if defined(WITH_PIXBUF) || defined(WITH_ALL)
29
LIB_DEPENDS+=		gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf
28
LIB_DEPENDS+=		gdk_pixbuf.2:${PORTSDIR}/graphics/gdk-pixbuf
30
CONFIGURE_ARGS+=	--disable-imlib
29
CONFIGURE_ARGS+=	--disable-imlib
31
.else
30
.else
32
USE_IMLIB=		yes
31
USE_IMLIB=		yes
33
CONFIGURE_ARGS+=	--disable-gdk-pixbuf
32
CONFIGURE_ARGS+=	--disable-gdk-pixbuf
34
.endif
33
.endif
35
.if defined(WITH_GPGME)
34
.if defined(WITH_GPGME) || defined(WITH_ALL)
36
LIB_DEPENDS+=		gpgme.4:${PORTSDIR}/security/gpgme
35
LIB_DEPENDS+=		gpgme.4:${PORTSDIR}/security/gpgme
37
RUN_DEPENDS+=		gpg:${PORTSDIR}/security/gnupg
36
RUN_DEPENDS+=		gpg:${PORTSDIR}/security/gnupg
38
CONFIGURE_ARGS+=	--enable-gpgme
37
CONFIGURE_ARGS+=	--enable-gpgme
39
.endif
38
.endif
40
.if defined(WITH_COMPFACE)
39
.if defined(WITH_COMPFACE) || defined(WITH_ALL)
41
LIB_DEPENDS+=		compface.1:${PORTSDIR}/mail/faces
40
LIB_DEPENDS+=		compface.1:${PORTSDIR}/mail/faces
42
CONFIGURE_ENV+=		LIBS="-L${X11BASE}/lib"
43
.else
41
.else
44
CONFIGURE_ARGS+=	--disable-compface
42
CONFIGURE_ARGS+=	--disable-compface
45
.endif
43
.endif
46
.if defined(WITH_PSPELL)
44
.if defined(WITH_JCONV) || defined(WITH_ALL)
45
LIB_DEPENDS+=		jconv.0:${PORTSDIR}/japanese/libjconv
46
.else
47
CONFIGURE_ARGS+=	--disable-jconv
48
.endif
49
.if defined(WITH_PSPELL) || defined(WITH_ALL)
47
LIB_DEPENDS+=		pspell.4:${PORTSDIR}/textproc/pspell
50
LIB_DEPENDS+=		pspell.4:${PORTSDIR}/textproc/pspell
48
CONFIGURE_ARGS+=	--enable-pspell
51
CONFIGURE_ARGS+=	--enable-pspell
49
.endif
52
.endif
Lines 53-94 Link Here
53
.endif
56
.endif
54
57
55
pre-everything::
58
pre-everything::
56
.if !defined(WITH_PIXBUF)
59
	@${ECHO} ""
57
	@${ECHO_MSG}
60
	@${ECHO} "You may define the following build options:"
58
	@${ECHO_MSG} "You can enable GDK Pixbuf support by defining WITH_PIXBUF."
61
	@${ECHO} ""
59
.endif
62
	@${ECHO} "      WITH_ALL       Enable all options below"
60
.if defined(WITH_GPGME)
63
	@${ECHO} "      WITH_PIXBUF    Enable GDK Pixbuf support"
61
	@${ECHO_MSG}
64
	@${ECHO} "      WITH_GPGME     Enable GnuPG support using GPGME"
62
	@${ECHO_MSG} "WARNING: GnuPG support using GPGME is still experimental."
65
	@${ECHO} "      WITH_COMPFACE  Enable compface (X-Face) support"
63
.else
66
	@${ECHO} "      WITH_JCONV     Enable enhanced charset conversion"
64
	@${ECHO_MSG}
67
	@${ECHO} "      WITH_PSPELL    Enable spell-checking support"
65
	@${ECHO_MSG} "You can enable GnuPG support using GPGME by defining WITH_GPGME."
68
	@${ECHO} "      WITHOUT_SSL    Disable OpenSSL support"
66
	@${ECHO_MSG} "WARNING: GnuPG support is still experimental."
69
	@${ECHO} ""
67
.endif
70
68
.if !defined(WITH_COMPFACE)
71
post-patch:
69
	@${ECHO_MSG}
72
	@${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" \
70
	@${ECHO_MSG} "You can enable compface (X-Face) support by defining WITH_COMPFACE."
73
		${WRKSRC}/tools/README.sylprint ${WRKSRC}/tools/sylprint.pl
71
.endif
74
.if defined(NOPORTDOCS)
72
.if !defined(WITH_PSPELL)
75
	@${PERL} -pi -e 's|^(SUBDIRS = .*)manual (.*)|\1\2|' ${WRKSRC}/Makefile.in
73
	@${ECHO_MSG}
74
	@${ECHO_MSG} "You can enable pspell support by defining WITH_PSPELL."
75
.endif
76
.endif
76
.if !defined(WITHOUT_SSL)
77
	@${ECHO_MSG}
78
	@${ECHO_MSG} "You can disable OpenSSL support by defining WITHOUT_SSL."
79
.endif
80
	@${ECHO_MSG}
81
77
82
pre-build:
78
pre-build:
83
	${LN} -sf ${LOCALBASE}/bin/${LIBTOOL} ${WRKSRC}/libtool
79
	@${LN} -sf ${LOCALBASE}/bin/${LIBTOOL} ${WRKSRC}/libtool
84
80
85
post-install:
81
post-install:
86
.if !defined(NOPORTDOCS)
82
.if !defined(NOPORTDOCS)
87
	@${MKDIR} ${PREFIX}/share/doc/sylpheed-claws
83
.for i in README README.jp README.claws RELEASE_NOTES.claws TODO TODO.jp tools/README.sylprint
88
.for i in NEWS README README.claws README.jp RELEASE_NOTES.claws TODO TODO.jp
84
	@${INSTALL_MAN} ${WRKSRC}/${i} ${DOCSDIR}
89
	@${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/sylpheed-claws
90
.endfor
85
.endfor
86
	@${INSTALL_MAN} ${WRKSRC}/tools/README ${DOCSDIR}/README.tools
91
.endif
87
.endif
88
	@${MKDIR} ${DATADIR}
89
.for i in eud2gc.py filter_conv.pl gif2xface.pl ldif-to-xml.py newscache_clean.pl
90
	@${INSTALL_SCRIPT} ${WRKSRC}/tools/${i} ${DATADIR}
91
.endfor
92
	@${INSTALL_SCRIPT} ${WRKSRC}/tools/sylpheed-switcher ${PREFIX}/bin
93
	@${INSTALL_SCRIPT} ${WRKSRC}/tools/sylprint.pl ${PREFIX}/bin
94
	@${INSTALL_DATA} ${WRKSRC}/tools/sylprint.rc ${PREFIX}/etc/sylprint.rc.example
92
	@${MKDIR} ${PREFIX}/share/pixmaps
95
	@${MKDIR} ${PREFIX}/share/pixmaps
93
	@${INSTALL_DATA} ${WRKSRC}/sylpheed.png ${PREFIX}/share/pixmaps/sylpheed-claws.png
96
	@${INSTALL_DATA} ${WRKSRC}/sylpheed.png ${PREFIX}/share/pixmaps/sylpheed-claws.png
94
97
(-)sylpheed-claws/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (sylpheed-0.6.6claws.tar.gz) = b7c62a120808fc87e3c3fc009bd63703
1
MD5 (sylpheed-0.7.0claws.tar.gz) = ff76b9e3f0f43bdacf05f3a25addcd40
(-)sylpheed-claws/files/patch-configure (-3 / +21 lines)
Lines 1-5 Link Here
1
--- ./configure.orig	Sat Dec 15 14:28:30 2001
1
--- configure.orig	Mon Jan 14 16:15:33 2002
2
+++ ./configure	Fri Dec 21 01:02:01 2001
2
+++ configure	Tue Jan 15 15:53:11 2002
3
@@ -756,7 +756,7 @@
3
@@ -756,7 +756,7 @@
4
 fi
4
 fi
5
 
5
 
Lines 8-11 Link Here
8
+PACKAGE=sylpheed-claws
8
+PACKAGE=sylpheed-claws
9
 
9
 
10
 MAJOR_VERSION=0
10
 MAJOR_VERSION=0
11
 MINOR_VERSION=6
11
 MINOR_VERSION=7
12
@@ -1056,7 +1056,7 @@
13
 fi
14
 
15
 
16
-if test -d "$gnomedir"; then
17
+if false; then
18
   SYLPHEED_GNOME_TRUE=
19
   SYLPHEED_GNOME_FALSE='#'
20
 else
21
@@ -7419,7 +7419,7 @@
22
 localedir='${prefix}/${DATADIRNAME}/locale'
23
 
24
 
25
-manualdir='${prefix}/${DATADIRNAME}/${PACKAGE}/manual'
26
+manualdir='${prefix}/${DATADIRNAME}/doc/${PACKAGE}/manual'
27
 
28
 
29
 # Check whether --with-glib-prefix or --without-glib-prefix was given.
(-)sylpheed-claws/files/patch-tools-README.sylprint (+18 lines)
Line 0 Link Here
1
--- tools/README.sylprint.orig	Sun Jan  6 17:05:30 2002
2
+++ tools/README.sylprint	Tue Jan 15 00:19:12 2002
3
@@ -144,11 +144,12 @@
4
 	sylprint.pl
5
 		The script itself.
6
 
7
-	sylprint.rc
8
+	%%PREFIX%%/etc/sylprint.rc
9
+	~/.sylpheed/sylprint.rc
10
 		Stores user default preferred configuration for the
11
 		script. Settings in this file may be overriden by
12
-		command line options. Must be stored in the same
13
-		directory of the script and/or in the ~/.sylpheed
14
+		command line options. Must be stored in the local
15
+		configuration directory and/or in the ~/.sylpheed
16
 		one (Sylpheed user's configuration directory).
17
 	
18
 	/tmp/sylprint.username.number
(-)sylpheed-claws/files/patch-tools-sylprint.pl (+14 lines)
Line 0 Link Here
1
--- tools/sylprint.pl.orig	Tue Jan  8 20:34:37 2002
2
+++ tools/sylprint.pl	Tue Jan 15 00:13:15 2002
3
@@ -36,10 +36,7 @@
4
 # get user config
5
 if (defined($ARGV[1]) && $ARGV[1] eq '-r') { $a++; }
6
 else {
7
-	@spp = split('/',$0); 
8
-	$spp[$#spp] = ''; 
9
-	$spp = join('/',@spp);  
10
-	$rcf="$spp$rc"; 
11
+	$rcf="%%PREFIX%%/etc/$rc"; 
12
 	if (-x $rcf) { do $rcf; }
13
 	$rcf="$ENV{'HOME'}/.sylpheed/$rc";
14
 	if (-x $rcf) { do $rcf; }
(-)sylpheed-claws/pkg-descr (-2 / +2 lines)
Lines 9-19 Link Here
9
* allow colour labeling of emails based on filtering rules
9
* allow colour labeling of emails based on filtering rules
10
* automatic mailing list reply, allow ignoring of mail threads
10
* automatic mailing list reply, allow ignoring of mail threads
11
* selectable fonts, compface support, spell checking, SMTP AUTH
11
* selectable fonts, compface support, spell checking, SMTP AUTH
12
* Revision of the quotation format and forwarding format
13
* encryption/decryption of GPG/PGP ascii-armored messages is supported
12
* encryption/decryption of GPG/PGP ascii-armored messages is supported
14
* dynamic signatures are enabled
15
* folder properties: associate certain options per folder,
13
* folder properties: associate certain options per folder,
16
	'Request Return Receipt', 'Default To', and 'Default account'
14
	'Request Return Receipt', 'Default To', and 'Default account'
15
* subject simplification for changing the display of subject lines via RegExp
16
* Undo/Redo
17
and more...
17
and more...
18
18
19
WWW: http://sylpheed-claws.sourceforge.net/
19
WWW: http://sylpheed-claws.sourceforge.net/
(-)sylpheed-claws/pkg-plist (-43 / +52 lines)
Lines 1-12 Link Here
1
bin/sylpheed-claws
1
bin/sylpheed-claws
2
bin/sylpheed-switcher
3
bin/sylprint.pl
4
etc/sylprint.rc.example
2
lib/charset.alias
5
lib/charset.alias
3
%%PORTDOCS%%share/doc/sylpheed-claws/NEWS
4
%%PORTDOCS%%share/doc/sylpheed-claws/README
6
%%PORTDOCS%%share/doc/sylpheed-claws/README
5
%%PORTDOCS%%share/doc/sylpheed-claws/README.claws
7
%%PORTDOCS%%share/doc/sylpheed-claws/README.claws
6
%%PORTDOCS%%share/doc/sylpheed-claws/README.jp
8
%%PORTDOCS%%share/doc/sylpheed-claws/README.jp
9
%%PORTDOCS%%share/doc/sylpheed-claws/README.sylprint
10
%%PORTDOCS%%share/doc/sylpheed-claws/README.tools
7
%%PORTDOCS%%share/doc/sylpheed-claws/RELEASE_NOTES.claws
11
%%PORTDOCS%%share/doc/sylpheed-claws/RELEASE_NOTES.claws
8
%%PORTDOCS%%share/doc/sylpheed-claws/TODO
12
%%PORTDOCS%%share/doc/sylpheed-claws/TODO
9
%%PORTDOCS%%share/doc/sylpheed-claws/TODO.jp
13
%%PORTDOCS%%share/doc/sylpheed-claws/TODO.jp
14
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-1.html
15
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-10.html
16
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-11.html
17
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-12.html
18
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-13.html
19
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-14.html
20
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-15.html
21
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-16.html
22
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-17.html
23
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-2.html
24
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-3.html
25
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-4.html
26
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-5.html
27
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-6.html
28
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-7.html
29
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-8.html
30
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed-9.html
31
%%PORTDOCS%%share/doc/sylpheed-claws/manual/en/sylpheed.html
32
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-1.html
33
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-10.html
34
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-11.html
35
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-12.html
36
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-13.html
37
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-14.html
38
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-15.html
39
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-16.html
40
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-17.html
41
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-2.html
42
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-3.html
43
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-4.html
44
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-5.html
45
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-6.html
46
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-7.html
47
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-8.html
48
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed-9.html
49
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed.html
50
%%PORTDOCS%%share/doc/sylpheed-claws/manual/ja/sylpheed.sgml
10
share/locale/cs/LC_MESSAGES/sylpheed-claws.mo
51
share/locale/cs/LC_MESSAGES/sylpheed-claws.mo
11
share/locale/de/LC_MESSAGES/sylpheed-claws.mo
52
share/locale/de/LC_MESSAGES/sylpheed-claws.mo
12
share/locale/el/LC_MESSAGES/sylpheed-claws.mo
53
share/locale/el/LC_MESSAGES/sylpheed-claws.mo
Lines 23-68 Link Here
23
share/locale/ru/LC_MESSAGES/sylpheed-claws.mo
64
share/locale/ru/LC_MESSAGES/sylpheed-claws.mo
24
share/locale/sv/LC_MESSAGES/sylpheed-claws.mo
65
share/locale/sv/LC_MESSAGES/sylpheed-claws.mo
25
share/pixmaps/sylpheed-claws.png
66
share/pixmaps/sylpheed-claws.png
26
share/sylpheed-claws/manual/en/sylpheed-1.html
67
share/sylpheed-claws/eud2gc.py
27
share/sylpheed-claws/manual/en/sylpheed-10.html
68
share/sylpheed-claws/filter_conv.pl
28
share/sylpheed-claws/manual/en/sylpheed-11.html
69
share/sylpheed-claws/gif2xface.pl
29
share/sylpheed-claws/manual/en/sylpheed-12.html
70
share/sylpheed-claws/ldif-to-xml.py
30
share/sylpheed-claws/manual/en/sylpheed-13.html
71
share/sylpheed-claws/newscache_clean.pl
31
share/sylpheed-claws/manual/en/sylpheed-14.html
72
%%PORTDOCS%%@dirrm share/doc/sylpheed-claws/manual/ja
32
share/sylpheed-claws/manual/en/sylpheed-15.html
73
%%PORTDOCS%%@dirrm share/doc/sylpheed-claws/manual/en
33
share/sylpheed-claws/manual/en/sylpheed-16.html
74
%%PORTDOCS%%@dirrm share/doc/sylpheed-claws/manual
34
share/sylpheed-claws/manual/en/sylpheed-17.html
35
share/sylpheed-claws/manual/en/sylpheed-2.html
36
share/sylpheed-claws/manual/en/sylpheed-3.html
37
share/sylpheed-claws/manual/en/sylpheed-4.html
38
share/sylpheed-claws/manual/en/sylpheed-5.html
39
share/sylpheed-claws/manual/en/sylpheed-6.html
40
share/sylpheed-claws/manual/en/sylpheed-7.html
41
share/sylpheed-claws/manual/en/sylpheed-8.html
42
share/sylpheed-claws/manual/en/sylpheed-9.html
43
share/sylpheed-claws/manual/en/sylpheed.html
44
share/sylpheed-claws/manual/ja/sylpheed-1.html
45
share/sylpheed-claws/manual/ja/sylpheed-10.html
46
share/sylpheed-claws/manual/ja/sylpheed-11.html
47
share/sylpheed-claws/manual/ja/sylpheed-12.html
48
share/sylpheed-claws/manual/ja/sylpheed-13.html
49
share/sylpheed-claws/manual/ja/sylpheed-14.html
50
share/sylpheed-claws/manual/ja/sylpheed-15.html
51
share/sylpheed-claws/manual/ja/sylpheed-16.html
52
share/sylpheed-claws/manual/ja/sylpheed-17.html
53
share/sylpheed-claws/manual/ja/sylpheed-2.html
54
share/sylpheed-claws/manual/ja/sylpheed-3.html
55
share/sylpheed-claws/manual/ja/sylpheed-4.html
56
share/sylpheed-claws/manual/ja/sylpheed-5.html
57
share/sylpheed-claws/manual/ja/sylpheed-6.html
58
share/sylpheed-claws/manual/ja/sylpheed-7.html
59
share/sylpheed-claws/manual/ja/sylpheed-8.html
60
share/sylpheed-claws/manual/ja/sylpheed-9.html
61
share/sylpheed-claws/manual/ja/sylpheed.html
62
share/sylpheed-claws/manual/ja/sylpheed.sgml
63
@dirrm share/sylpheed-claws/manual/ja
64
@dirrm share/sylpheed-claws/manual/en
65
@dirrm share/sylpheed-claws/manual
66
@dirrm share/sylpheed-claws
67
@unexec rmdir %D/share/pixmaps 2>/dev/null || true
68
%%PORTDOCS%%@dirrm share/doc/sylpheed-claws
75
%%PORTDOCS%%@dirrm share/doc/sylpheed-claws
76
@unexec rmdir %D/share/pixmaps 2>/dev/null || true
77
@dirrm share/sylpheed-claws

Return to bug 33922