diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2018-10-01 17:38:30 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2018-10-01 17:38:30 +0800 |
commit | 9340d377f17f371d5bd537e99b9f06d466781a32 (patch) | |
tree | fc775187982de2e54c0f04be2181b452e8815e3c | |
parent | 771c094600f7fb4e66b5f481151155999b6c1742 (diff) | |
download | freebsd-ports-gnome-9340d377f17f371d5bd537e99b9f06d466781a32.tar.gz freebsd-ports-gnome-9340d377f17f371d5bd537e99b9f06d466781a32.tar.zst freebsd-ports-gnome-9340d377f17f371d5bd537e99b9f06d466781a32.zip |
- Add LICENSE
- Switch to options helpers
- Update WWW
-rw-r--r-- | mail/akpop3d/Makefile | 19 | ||||
-rw-r--r-- | mail/akpop3d/pkg-descr | 2 |
2 files changed, 12 insertions, 9 deletions
diff --git a/mail/akpop3d/Makefile b/mail/akpop3d/Makefile index 95c9fef7426c..e0b9d66b7b17 100644 --- a/mail/akpop3d/Makefile +++ b/mail/akpop3d/Makefile @@ -9,17 +9,20 @@ MASTER_SITES= http://www.synflood.at/akpop3d/ MAINTAINER= ports@FreeBSD.org COMMENT= POP3 daemon aimed to be small and secure -PLIST_FILES= bin/akpop3d man/man8/akpop3d.8.gz +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING -USES= tar:bzip2 +USES= tar:bzip2 GNU_CONFIGURE= yes -.if defined(WITH_SSL) -USES+= ssl -CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} -CPPFLAGS+= -I${OPENSSLBASE}/include -LDFLAGS+= -L${OPENSSLBASE}/lib -lssl -lcrypto -.endif +PLIST_FILES= bin/akpop3d man/man8/akpop3d.8.gz + +OPTIONS_DEFINE= SSL + +SSL_USES= ssl +SSL_CONFIGURE_WITH= openssl=${OPENSSLBASE} +SSL_CPPFLAGS= -I${OPENSSLBASE}/include +SSL_LDFLAGS= -L${OPENSSLBASE}/lib do-install: ${INSTALL_PROGRAM} ${WRKSRC}/akpop3d ${STAGEDIR}${PREFIX}/bin diff --git a/mail/akpop3d/pkg-descr b/mail/akpop3d/pkg-descr index a2ec0866188b..cb2787baf9dc 100644 --- a/mail/akpop3d/pkg-descr +++ b/mail/akpop3d/pkg-descr @@ -1,4 +1,4 @@ akpop3d is a POP3 daemon aimed to be small and secure. Despite its small size, it offers a lot of features. It is completely RFC 1939 compliant. -WWW: http://synflood.at/akpop3d/ +WWW: https://synflood.at/akpop3d.html |