mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
Yet another GTK based mail program. Promisingly SMALL. And you have to
edit config files to add/remove IMAP and SMTP servers, although things can be specified in a central location (LOCALBASE/etc/althearc). I don't think, I'll end up using it myself though, hence maintainership.
This commit is contained in:
parent
b24ad43f2c
commit
bb297d17af
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=38812
6 changed files with 99 additions and 0 deletions
27
mail/althea/Makefile
Normal file
27
mail/althea/Makefile
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
# New ports collection makefile for: Althea
|
||||||
|
# Date created: Feb 26, 2001
|
||||||
|
# Whom: Mikhail Teterin <mi@aldan.algebra.com>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= althea
|
||||||
|
PORTVERSION= 0.3.4
|
||||||
|
CATEGORIES= mail
|
||||||
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||||
|
MASTER_SITE_SUBDIR=${PORTNAME}
|
||||||
|
EXTRACT_SUFX= .tgz
|
||||||
|
|
||||||
|
MAINTAINER= ports@freebsd.org
|
||||||
|
|
||||||
|
USE_GTK= yes
|
||||||
|
MAKEFILE= ${FILESDIR}/Makefile.bsd
|
||||||
|
MAKE_ARGS+= -j 2
|
||||||
|
MAKE_ENV+= INSTALL_DATA="${INSTALL_DATA}" MKDIR="${MKDIR}"
|
||||||
|
|
||||||
|
post-patch:
|
||||||
|
${PERL} -pi -e "s%/etc%${LOCALBASE}/etc%g" \
|
||||||
|
${WRKSRC}/Documentation/help.html \
|
||||||
|
${WRKSRC}/load_config.h
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
mail/althea/distinfo
Normal file
1
mail/althea/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (althea-0.3.4.tgz) = a71ed7f0a5f769e16b34a560cb07e66f
|
34
mail/althea/files/Makefile.bsd
Normal file
34
mail/althea/files/Makefile.bsd
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
PROG= althea
|
||||||
|
NOMAN= forget it :(
|
||||||
|
|
||||||
|
objs!= ${MAKE} -V OBJS -f ${.CURDIR}/Makefile
|
||||||
|
SRCS:= ${objs:.o=.cpp} main.cpp
|
||||||
|
|
||||||
|
BINDIR=${LOCALBASE}/bin
|
||||||
|
DOCDIR=${LOCALBASE}/share/doc/${PROG}
|
||||||
|
PIXDIR=${LOCALBASE}/share/${PROG}
|
||||||
|
|
||||||
|
# Compiled-in pathes:
|
||||||
|
CXXFLAGS+=-DDOCDIR=\"${DOCDIR}\" -DPIXDIR=\"${PIXDIR}\"
|
||||||
|
|
||||||
|
# Use the GTK's CFLAGS:
|
||||||
|
CXXFLAGS+=-I${LOCALBASE}/include/gtk12 -I${LOCALBASE}/include/glib12 \
|
||||||
|
-I${LOCALBASE}/include -I${LOCALBASE}/include
|
||||||
|
|
||||||
|
# Use the GTK's libraries:
|
||||||
|
LDADD+= -L${LOCALBASE}/lib -L${X11BASE}/lib -lgtk12 -lgdk12 \
|
||||||
|
-Wl,-E -lgmodule12 -lglib12 -lintl -lxpg4 -lXext -lX11 -lm
|
||||||
|
|
||||||
|
# A hack to ensure C++ is called to do the final linking:
|
||||||
|
CC:= ${CXX}
|
||||||
|
|
||||||
|
${DOCDIR}/images ${PIXDIR}:
|
||||||
|
${MKDIR} $@
|
||||||
|
|
||||||
|
beforeinstall: ${DOCDIR}/images ${PIXDIR}
|
||||||
|
${INSTALL_DATA} ${.CURDIR}/Documentation/*.* ${DOCDIR}
|
||||||
|
${INSTALL_DATA} ${.CURDIR}/Documentation/images/*.* ${DOCDIR}/images
|
||||||
|
${INSTALL_DATA} ${.CURDIR}/pixmaps/*.* ${PIXDIR}
|
||||||
|
${INSTALL_DATA} ${.CURDIR}/althearc.example ${LOCALBASE}/etc/
|
||||||
|
|
||||||
|
.include <bsd.prog.mk>
|
1
mail/althea/pkg-comment
Normal file
1
mail/althea/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Yet another GTK-based mail reader for X. Supports IMAP
|
7
mail/althea/pkg-descr
Normal file
7
mail/althea/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
The designers of Althea felt that there wasn't a stable, easy to
|
||||||
|
use, GUI, IMAP (Internet Message Access Protocol) e-mail client
|
||||||
|
for X Windows. The design goal was a stable e-mail client with
|
||||||
|
the richness of usability of Microsoft's Outlook, Qualcomm's
|
||||||
|
Eudora, and Cyrusoft's Mulberry.
|
||||||
|
|
||||||
|
WWW: http://althea.sourceforge.net/
|
29
mail/althea/pkg-plist
Normal file
29
mail/althea/pkg-plist
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
bin/althea
|
||||||
|
etc/althearc.example
|
||||||
|
share/doc/althea/images/althea.png
|
||||||
|
share/doc/althea/images/altheaRound.png
|
||||||
|
share/doc/althea/images/fileMenu.png
|
||||||
|
share/doc/althea/images/helpMenu.png
|
||||||
|
share/doc/althea/images/messageMenu.png
|
||||||
|
share/doc/althea/images/sf.gif
|
||||||
|
share/doc/althea/images/toolbar.png
|
||||||
|
share/doc/althea/images/typicalSession.png
|
||||||
|
share/doc/althea/images/typicalSessionSmall.png
|
||||||
|
@dirrm share/doc/althea/images
|
||||||
|
share/doc/althea/help.html
|
||||||
|
@dirrm share/doc/althea
|
||||||
|
share/althea/address.xpm
|
||||||
|
share/althea/althea.xpm
|
||||||
|
share/althea/attach.xpm
|
||||||
|
share/althea/check.xpm
|
||||||
|
share/althea/close.xpm
|
||||||
|
share/althea/delete.xpm
|
||||||
|
share/althea/folder.xpm
|
||||||
|
share/althea/forward.xpm
|
||||||
|
share/althea/new.xpm
|
||||||
|
share/althea/print.xpm
|
||||||
|
share/althea/reply.xpm
|
||||||
|
share/althea/save.xpm
|
||||||
|
share/althea/send.xpm
|
||||||
|
share/althea/server.xpm
|
||||||
|
@dirrm share/althea
|
Loading…
Add table
Reference in a new issue