1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-25 09:34:11 +00:00
freebsd-ports/security/fpm2/Makefile
Rusmir Dusko 6167391cda - Use tar:bzip2 instead of USE_BZIP2=yes
- Remove NEWS and TODO from DOCS
- Break lines around 80 characters
2014-03-19 22:00:24 +00:00

57 lines
1.3 KiB
Makefile

# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
# $FreeBSD$
PORTNAME= fpm2
PORTVERSION= 0.79
CATEGORIES= security
MASTER_SITES= http://als.regnet.cz/fpm2/download/
MAINTAINER= nemysis@FreeBSD.org
COMMENT= Program that allows you to securely store the passwords
LICENSE= GPLv2
BUILD_DEPENDS= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser
USES= gmake pathfix pkgconfig tar:bzip2
USE_GNOME= gtk20
INSTALLS_OMF= yes
GNU_CONFIGURE= yes
PORTDOCS= AUTHORS ChangeLog README
SUB_FILES= pkg-message
OPTIONS_DEFINE= DOCS NLS
OPTIONS_SUB= yes
NLS_USES= gettext
.include <bsd.port.options.mk>
# Restrict to stable (even) versions, indicated by the second component.
PORTSCOUT= limit:^0.7\..*
post-configure:
@${REINPLACE_CMD} -e \
's|^Icon.*|Icon=${PREFIX}/share/pixmaps/${PORTNAME}/logo.png|' \
-e 's|^Categories=.*|Categories=GTK;Utility;System;|' \
${WRKSRC}/data/${PORTNAME}.desktop.in
post-patch:
@${REINPLACE_CMD} -E -e "s@encrypt\(@bfishencrypt\(@g" \
${WRKSRC}/src/blowfish.c
@${REINPLACE_CMD} -e 's|gdk_pixbuf_unref|g_object_unref|g' \
${WRKSRC}/src/interface.c
.if ! ${PORT_OPTIONS:MNLS}
@${REINPLACE_CMD} -e 's|USE_NLS=yes|USE_NLS=no|' ${WRKSRC}/configure
.endif
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>