mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
4a4ec28d37
Since FreeBSD 8.4 and FreeBSD 9.1 make(1) do support :tu and :tl as a replacement for :U and :L (which has been marked as deprecated) bmake which is the default on FreeBSD 10+ only support by default :tu/:tl a hack has been added at the time to support :U and :L to ease migration. This hack is now not necessary anymore Note that this makes the ports tree incompatible with make(1) from FreeBSD 8.3 or earlier With hat: portmgr
26 lines
680 B
Makefile
26 lines
680 B
Makefile
# Created by: Sergey Skvortsov <skv@protey.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= KeePassX
|
|
PORTVERSION= 0.4.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= security
|
|
MASTER_SITES= SF/${PORTNAME:tl}/KeePassX/${PORTVERSION}/
|
|
DISTNAME= ${PORTNAME:tl}-${PORTVERSION}
|
|
|
|
MAINTAINER= swills@FreeBSD.org
|
|
COMMENT= Cross Platform Password Manager
|
|
|
|
DATADIR= ${PREFIX}/share/${PORTNAME:tl}
|
|
WRKSRC= ${WRKDIR}/${PORTNAME:tl}-${PORTVERSION}
|
|
|
|
USES= qmake shared-mime-info
|
|
USE_QT4= moc_build uic_build qt3support_build rcc_build \
|
|
corelib gui xml
|
|
USE_XORG= xt inputproto xtst xrender xrandr xfixes xcursor\
|
|
xext x11 sm ice xi
|
|
|
|
QMAKE_ARGS+= INCLUDEPATH+=${LOCALBASE}/include LIBS+=-L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.mk>
|