ports/misc/hotkeys/Makefile
Daniel Engberg 3b3700f8f0 */*: Use Gnome helper for defining libxml2 dependency
Replace LIB_DEPENDS with USES= gnome, USE_GNOME= libxml2

Approved by:	portmgr (blanket)
2024-12-23 22:08:39 +01:00

58 lines
1.5 KiB
Makefile

PORTNAME= hotkeys
PORTVERSION= 0.5.7.1
PORTREVISION= 21
CATEGORIES= misc
MASTER_SITES= https://BSDforge.com/projects/source/misc/hotkeys/${PORTVERSION}/
DISTNAME= hotkeys_${PORTVERSION}
MAINTAINER= portmaster@BSDforge.com
COMMENT= Allows usage of special keys on internet/multimedia keyboards
WWW= http://ypwong.org/hotkeys/
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libharfbuzz.so:print/harfbuzz \
libfreetype.so:print/freetype2 \
libfontconfig.so:x11-fonts/fontconfig
USES= bdb gettext-runtime gmake gnome xorg
USE_GNOME= glib20 libxml2 pango
USE_XORG= x11 xext xft xinerama xkbfile xmu
GNU_CONFIGURE= yes
GNU_CONFIGURE_MANPREFIX=${PREFIX}/share
CONFIGURE_ARGS= --with-db3-inc=${BDB_INCLUDE_DIR} \
--with-db3-lib=${BDB_LIB_DIR} \
--with-db-name=${BDB_LIB_NAME}
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
OPTIONS_DEFINE= OSD
OPTIONS_DEFAULT= OSD
OSD_LIB_DEPENDS= libxosd.so:misc/xosd
OSD_CONFIGURE_WITH= xosd
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD
CFLAGS+= -Wno-error=incompatible-function-pointer-types
.endif
post-extract:
@${CP} ${PATCHDIR}/error.h ${WRKSRC}/src
@${CP} ${PATCHDIR}/eliteduo.def ${WRKSRC}/def
@${CP} ${PATCHDIR}/logitech-ultrax.def ${WRKSRC}/def
post-patch:
@${REINPLACE_CMD} -e '/^install-exec-am/s/install-sysconfDATA//' \
${WRKSRC}/src/Makefile.in
post-configure:
${REINPLACE_CMD} -e 's,-lXinerama,-lXinerama `pkgconf --libs pangoxft`,g' ${WRKSRC}/src/Makefile
post-install:
${INSTALL_DATA} ${WRKSRC}/src/hotkeys.conf ${STAGEDIR}${PREFIX}/etc/hotkeys.conf.sample
.include <bsd.port.mk>