14f7c29430
Mk/Uses/alias.mk was an attempt for compat with DPorts, but has rotted. This feature was never documented in the PHB, so there is no work to be done by the docs@ team. Nothing against DragonFly, but if DPorts still needs FreeBSD 9 support, they really should work that out with upstream projects. Ultimately, we don't need to keep carrying this outdated feature that doesn't affect us.
33 lines
676 B
Makefile
33 lines
676 B
Makefile
PORTNAME= libkpass
|
|
PORTVERSION= 6
|
|
PORTREVISION= 2
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Library for a reading/writing KeePass 1.x DB
|
|
WWW= https://github.com/bldewolf/libkpass
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libnettle.so:security/nettle
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= bldewolf
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
USES= gettext gmake libtool
|
|
USE_LDCONFIG= yes
|
|
CPPFLAGS+= -Dbswap_32=bswap32 -Dbswap_16=bswap16 \
|
|
-I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib -lintl
|
|
|
|
PLIST_FILES= include/kpass.h \
|
|
lib/libkpass.a \
|
|
lib/libkpass.so \
|
|
lib/libkpass.so.1 \
|
|
lib/libkpass.so.1.0.0
|
|
|
|
.include <bsd.port.mk>
|