Sort PLIST
- Update pkg-descr - Take maintainership
This commit is contained in:
parent
d8786f7674
commit
50933d117e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=522090
@ -7,7 +7,7 @@ DISTVERSIONPREFIX= v
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= mail
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
MAINTAINER= sunpoet@FreeBSD.org
|
||||
COMMENT= All-in-one Internet mail library
|
||||
|
||||
LICENSE= GPLv3+
|
||||
@ -16,20 +16,18 @@ LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
LIB_DEPENDS= libgnutls.so:security/gnutls \
|
||||
libgsasl.so:security/gsasl
|
||||
|
||||
USES= cmake:noninja compiler:c++11-lib iconv pkgconfig
|
||||
|
||||
CMAKE_ARGS= -DLIB_SUFFIX=""
|
||||
CMAKE_OFF= VMIME_BUILD_SAMPLES VMIME_SHARED_PTR_USE_BOOST
|
||||
CMAKE_ON= VMIME_SHARED_PTR_USE_CXX
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= kisli
|
||||
GH_PROJECT= vmime
|
||||
|
||||
USES= cmake:noninja compiler:c++11-lib iconv pkgconfig
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
CMAKE_ARGS= -DLIB_SUFFIX:STRING="" \
|
||||
-DVMIME_BUILD_SAMPLES:BOOL=NO \
|
||||
-DVMIME_SHARED_PTR_USE_BOOST:BOOL=NO \
|
||||
-DVMIME_SHARED_PTR_USE_CXX:BOOL=YES
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} 's,$${VMIME_INSTALL_LIBDIR}/pkgconfig,${PREFIX}/libdata/pkgconfig,' \
|
||||
${WRKSRC}/CMakeLists.txt
|
||||
@${REINPLACE_CMD} 's|$${VMIME_INSTALL_LIBDIR}/pkgconfig|${PREFIX}/libdata/pkgconfig|' ${WRKSRC}/CMakeLists.txt
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,9 @@
|
||||
libvmime is a MIME manipulation library.
|
||||
VMime is a powerful C++ class library for working with RFC-822 and MIME messages
|
||||
and Internet messaging services like IMAP, POP or SMTP.
|
||||
|
||||
With VMime you can parse, generate and modify messages, and also connect to
|
||||
store and transport services to receive or send messages over the Internet. The
|
||||
library offers all the features to build a complete mail client.
|
||||
|
||||
WWW: https://www.vmime.org/
|
||||
WWW: https://github.com/kisli/vmime
|
||||
|
@ -56,6 +56,8 @@ include/vmime/messageId.hpp
|
||||
include/vmime/messageIdSequence.hpp
|
||||
include/vmime/messageParser.hpp
|
||||
include/vmime/misc/importanceHelper.hpp
|
||||
include/vmime/net/connectionInfos.hpp
|
||||
include/vmime/net/defaultConnectionInfos.hpp
|
||||
include/vmime/net/defaultTimeoutHandler.hpp
|
||||
include/vmime/net/events.hpp
|
||||
include/vmime/net/fetchAttributes.hpp
|
||||
@ -77,6 +79,8 @@ include/vmime/net/imap/IMAPStore.hpp
|
||||
include/vmime/net/imap/IMAPTag.hpp
|
||||
include/vmime/net/imap/IMAPUtils.hpp
|
||||
include/vmime/net/imap/imap.hpp
|
||||
include/vmime/net/maildir/format/courierMaildirFormat.hpp
|
||||
include/vmime/net/maildir/format/kmailMaildirFormat.hpp
|
||||
include/vmime/net/maildir/maildir.hpp
|
||||
include/vmime/net/maildir/maildirFolder.hpp
|
||||
include/vmime/net/maildir/maildirFolderStatus.hpp
|
||||
@ -87,8 +91,6 @@ include/vmime/net/maildir/maildirMessageStructure.hpp
|
||||
include/vmime/net/maildir/maildirServiceInfos.hpp
|
||||
include/vmime/net/maildir/maildirStore.hpp
|
||||
include/vmime/net/maildir/maildirUtils.hpp
|
||||
include/vmime/net/maildir/format/courierMaildirFormat.hpp
|
||||
include/vmime/net/maildir/format/kmailMaildirFormat.hpp
|
||||
include/vmime/net/message.hpp
|
||||
include/vmime/net/messageSet.hpp
|
||||
include/vmime/net/pop3/POP3Command.hpp
|
||||
@ -102,6 +104,7 @@ include/vmime/net/pop3/POP3ServiceInfos.hpp
|
||||
include/vmime/net/pop3/POP3Store.hpp
|
||||
include/vmime/net/pop3/POP3Utils.hpp
|
||||
include/vmime/net/pop3/pop3.hpp
|
||||
include/vmime/net/securedConnectionInfos.hpp
|
||||
include/vmime/net/sendmail/sendmail.hpp
|
||||
include/vmime/net/sendmail/sendmailServiceInfos.hpp
|
||||
include/vmime/net/sendmail/sendmailTransport.hpp
|
||||
@ -123,9 +126,9 @@ include/vmime/net/socket.hpp
|
||||
include/vmime/net/store.hpp
|
||||
include/vmime/net/timeoutHandler.hpp
|
||||
include/vmime/net/tls/TLSProperties.hpp
|
||||
include/vmime/net/tls/TLSSecuredConnectionInfos.hpp
|
||||
include/vmime/net/tls/TLSSession.hpp
|
||||
include/vmime/net/tls/TLSSocket.hpp
|
||||
include/vmime/net/tls/TLSSecuredConnectionInfos.hpp
|
||||
include/vmime/net/tls/gnutls/TLSProperties_GnuTLS.hpp
|
||||
include/vmime/net/tls/gnutls/TLSSession_GnuTLS.hpp
|
||||
include/vmime/net/tls/gnutls/TLSSocket_GnuTLS.hpp
|
||||
@ -135,9 +138,6 @@ include/vmime/net/tls/openssl/TLSSession_OpenSSL.hpp
|
||||
include/vmime/net/tls/openssl/TLSSocket_OpenSSL.hpp
|
||||
include/vmime/net/tracer.hpp
|
||||
include/vmime/net/transport.hpp
|
||||
include/vmime/net/connectionInfos.hpp
|
||||
include/vmime/net/defaultConnectionInfos.hpp
|
||||
include/vmime/net/securedConnectionInfos.hpp
|
||||
include/vmime/object.hpp
|
||||
include/vmime/parameter.hpp
|
||||
include/vmime/parameterizedHeaderField.hpp
|
||||
@ -195,17 +195,17 @@ include/vmime/text.hpp
|
||||
include/vmime/textPart.hpp
|
||||
include/vmime/textPartFactory.hpp
|
||||
include/vmime/types.hpp
|
||||
include/vmime/utility/encoder/binaryEncoder.hpp
|
||||
include/vmime/utility/encoder/encoder.hpp
|
||||
include/vmime/utility/encoder/sevenBitEncoder.hpp
|
||||
include/vmime/utility/encoder/b64Encoder.hpp
|
||||
include/vmime/utility/encoder/encoderFactory.hpp
|
||||
include/vmime/utility/encoder/noopEncoder.hpp
|
||||
include/vmime/utility/encoder/uuEncoder.hpp
|
||||
include/vmime/utility/encoder/qpEncoder.hpp
|
||||
include/vmime/utility/encoder/eightBitEncoder.hpp
|
||||
include/vmime/utility/childProcess.hpp
|
||||
include/vmime/utility/datetimeUtils.hpp
|
||||
include/vmime/utility/encoder/b64Encoder.hpp
|
||||
include/vmime/utility/encoder/binaryEncoder.hpp
|
||||
include/vmime/utility/encoder/eightBitEncoder.hpp
|
||||
include/vmime/utility/encoder/encoder.hpp
|
||||
include/vmime/utility/encoder/encoderFactory.hpp
|
||||
include/vmime/utility/encoder/noopEncoder.hpp
|
||||
include/vmime/utility/encoder/qpEncoder.hpp
|
||||
include/vmime/utility/encoder/sevenBitEncoder.hpp
|
||||
include/vmime/utility/encoder/uuEncoder.hpp
|
||||
include/vmime/utility/file.hpp
|
||||
include/vmime/utility/filteredStream.hpp
|
||||
include/vmime/utility/inputStream.hpp
|
||||
|
Loading…
Reference in New Issue
Block a user