blob: 0b3ef32af92761d554ff28fea88b3403e4614799 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
PORTNAME= hotkeys
PORTVERSION= 0.5.7.1
PORTREVISION= 22
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>
|