mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
18a6cf0460
Take maintainership 0.6.1 - custom output format (Raphaël Droz) - remove duplicates (Fabio Zanini) - merge entries (Fabio Zanini) - mutt groups support (Fabio Zanini) - vcard initial input filter (Michael Krolikowski) - vcard parser improvements (Fabio Zanini, Raphaël Droz) - color support (Thorsten Wißmann) - mouse support (Thorsten Wißmann) - extra-fields deletion bugfix (Jorrit Tijben) - additional keybindings (Hagen Fuchs) - autotools update (Fabio Zanini) - case-sensitive ldif fields parsing (Christian Brabandt) - ldif standard input support (Raphaël Droz) - ldif extensible field management rewrite (Raphaël Droz) - html output fixes (Stéphane Aulery) - memory bugfixes (Peter Wu) - vcard birthday export fix (Gaetan Bisson) 0.6.0 - configurable views (Cedric Duval) - new field types, lists and improved custom field support (Cedric Duval) - index_format option (Cedric Duval) - Italian translation (Claudio Stazzone)
31 lines
649 B
Makefile
31 lines
649 B
Makefile
# Created by: Yen-Ming Lee <leeym@cae.ce.ntu.edu.tw>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= abook
|
|
PORTVERSION= 0.6.1
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://abook.sourceforge.net/devel/
|
|
|
|
MAINTAINER= bapt@FreeBSD.org
|
|
COMMENT= Addressbook program with mutt mail client support
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= ncurses readline autoreconf localbase
|
|
GNU_CONFIGURE= yes
|
|
|
|
PORTDOCS= ANNOUNCE AUTHORS BUGS ChangeLog FAQ INSTALL NEWS README \
|
|
THANKS TODO
|
|
|
|
OPTIONS_DEFINE= NLS DOCS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
NLS_USES= gettext
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|