mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
32 lines
649 B
Makefile
32 lines
649 B
Makefile
# Created by: Veniamin Gvozdikov <vg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libkpass
|
|
PORTVERSION= 5
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION}/
|
|
|
|
MAINTAINER= vg@FreeBSD.org
|
|
COMMENT= Library for a reading/writing KeePass 1.x DB
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= nettle:${PORTSDIR}/security/nettle
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USES= gettext
|
|
USE_LDCONFIG= yes
|
|
CFLAGS+= -Dbswap_32=bswap32 -Dbswap_16=bswap16 \
|
|
-I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lintl
|
|
|
|
PLIST_FILES= include/kpass.h \
|
|
lib/libkpass.so \
|
|
lib/libkpass.so.1 \
|
|
lib/libkpass.la \
|
|
lib/libkpass.a
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.mk>
|