06f5af28e1
PR: 235934
30 lines
691 B
Makefile
30 lines
691 B
Makefile
# Created by: Autrijus Tang <autrijus@autrijus.org>
|
|
# $FreeBSD$
|
|
|
|
PKGNAMESUFFIX= -gnome-keyring
|
|
CATEGORIES= security gnome
|
|
|
|
MAINTAINER= lev@FreeBSD.org
|
|
COMMENT= Gnome Keyring integration for Version control system
|
|
|
|
PORTREVISION_112= 0
|
|
PORTREVISION_19= 0
|
|
PORTREVISION_LTS= 0
|
|
|
|
.include "${.CURDIR}/../../devel/subversion/Makefile.addons"
|
|
|
|
.if ${WITH_SUBVERSION_VER} == 19
|
|
LIB_DEPENDS+= libgnome-keyring.so:security/libgnome-keyring
|
|
.else
|
|
LIB_DEPENDS+= libsecret-1.so:security/libsecret
|
|
.endif
|
|
|
|
CONFIGURE_ARGS+= --with-gnome-keyring
|
|
|
|
ALL_TARGET= gnome-keyring-lib
|
|
INSTALL_TARGET= install-gnome-keyring-lib
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so
|
|
|
|
.include <bsd.port.post.mk>
|