mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
f67a898c70
In addition to fetching from GitHub the order of definitions in the port Makefile has been normalized, @sample tags are now used in the pkg-plist file, and the BSD3CLAUSE style LICENSE file is included in the generated package. Approved by: ecrist@secure-computing.net (maintainer)
38 lines
775 B
Makefile
38 lines
775 B
Makefile
# Created by: Eric Crist <ecrist@secure-computing.net>
|
|
|
|
PORTNAME= ssl-admin
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.2.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= ecrist@secure-computing.net
|
|
COMMENT= OpenSSL certificate manager with OpenVPN support
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/../LICENSE
|
|
|
|
RUN_DEPENDS= zip:archivers/zip
|
|
|
|
USES= perl5 shebangfix tar:xz
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ecrist
|
|
USE_PERL5= run
|
|
|
|
SHEBANG_FILES= ssl-admin
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAKE_ENV= ETCDIR=${PREFIX}/etc BINDIR=${PREFIX}/bin \
|
|
MANDIR=${MANPREFIX}/man
|
|
NO_ARCH= yes
|
|
SUB_FILES= pkg-message
|
|
|
|
WRKSRC_SUBDIR= perl
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's|`which sed`|${SED}|' ${WRKSRC}/configure
|
|
${REINPLACE_CMD} -e 's|{DESTDIR}/|{DESTDIR}|g' ${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|