freebsd-ports/x11/metalock/Makefile
Niclas Zeising 15dac70c75 Switch to xorgproto instead of individual packages
Upstream used to distribute protocol headers as separate packages, but has
decided to merge those to a common package, named xorgproto.  This update
tracks that change.

* Add a new port, x11/xorgproto, with are protocol headers for xorg.
* Hook the new protocol port to the build and to infrastructure in
  bsd.xorg.mk.
* Update all ports with a dependency on any of the old *proto packages to
  instead depend on xorgproto.  Bump portrevision.
* Delete the old *proto packages, update MOVED.

PR:		230023
Submitted by:	zeising
Approved by:	portmgr (antoine)
exp-run by:	antoine
2018-07-31 18:41:30 +00:00

58 lines
1.2 KiB
Makefile

# Created by: Timothy Beyer <beyert@cs.ucr.edu>
# $FreeBSD$
PORTNAME= metalock
PORTVERSION= 0.8.0
PORTREVISION= 3
CATEGORIES= x11
MASTER_SITES= BERLIOS
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
${PORTNAME}_theme-Blue_Marble-1.3${EXTRACT_SUFX}
MAINTAINER= beyert@cs.ucr.edu
COMMENT= Enhanced X11 screen locker
LICENSE= MIT
LICENSE_FILE= ${WRKDIR}/${DISTNAME}/LICENSE
USES= tar:bzip2
USE_XORG= x11 xt xorgproto xext xpm
OPTIONS_DEFINE= IMLIB2 XFT ULTRAGETOPT
OPTIONS_DEFAULT= IMLIB2 XFT ULTRAGETOPT
ULTRAGETOPT_DESC= Use Ultragetopt
MAKE_JOBS_UNSAFE= yes
.include <bsd.port.options.mk>
MAKE_ARGS= PREFIX="${LOCALBASE}" DEST_PREFIX="${PREFIX}" CC="${CC}"
.if ${PORT_OPTIONS:MULTRAGETOPT}
LIB_DEPENDS+= libultragetopt.so:devel/ultragetopt
MAKE_ARGS+= USE_ULTRAGETOPT=yes
.else
MAKE_ARGS+= USE_ULTRAGETOPT=no
.endif
.if ${PORT_OPTIONS:MIMLIB2}
LIB_DEPENDS+= libImlib2.so:graphics/imlib2
MAKE_ARGS+= USE_IMLIB2=yes
.else
MAKE_ARGS+= USE_IMLIB2=no
.endif
.if ${PORT_OPTIONS:MXFT}
USE_XORG+= xft
MAKE_ARGS+= USE_XFT=yes
.else
MAKE_ARGS+= USE_XFT=no
.endif
WRKSRC= ${WRKDIR}/${DISTNAME}/src
post-extract:
${MKDIR} ${WRKDIR}/${DISTNAME}/themes
${CP} -pR ${WRKDIR}/Blue_Marble ${WRKDIR}/${DISTNAME}/themes/
.include <bsd.port.mk>