forked from Lainports/freebsd-ports
- Force libkpass to link with gettext, library uses symbols from libintl without linking to it - this creates problems for consumers (only for ckpass right now) - Update security/ckpass to version 0.2 [2] PR: ports/177561 [1] PR: ports/177562 [2] Submitted by: Veniamin Gvozdikov <g.veniamin@googlemail.com> (maintainer)
22 lines
441 B
Makefile
22 lines
441 B
Makefile
# Created by: Gvozdikov Veniamin <g.veniamin@googlemail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ckpass
|
|
PORTVERSION= 0.2
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF/${PORTNAME}
|
|
|
|
MAINTAINER= g.veniamin@googlemail.com
|
|
COMMENT= Ncurses based password database client
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= kpass:${PORTSDIR}/security/libkpass
|
|
|
|
GNU_CONFIGURE= yes
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
PLIST_FILES= bin/ckpass
|
|
|
|
.include <bsd.port.mk>
|