1cd07f2df3
xsettingsd is a daemon that implements the XSETTINGS specification. It is intended to be small, fast, and minimally dependent on other libraries. It can serve as an alternative to gnome-settings-daemon for users who are not using the GNOME desktop environment but who still run GTK+ applications and want to configure things such as themes, font antialiasing/hinting, and UI sound effects.
35 lines
799 B
Makefile
35 lines
799 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/03/31 20:49:59 sthen Exp $
|
|
|
|
COMMENT= lightweight XSETTINGS daemon
|
|
|
|
DISTNAME= derat-xsettingsd-486be8b
|
|
PKGNAME= xsettingsd-0.20120312
|
|
|
|
CATEGORIES= x11
|
|
|
|
HOMEPAGE= http://code.google.com/p/xsettingsd/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += X11 Xau Xdmcp c m pthread-stubs stdc++ xcb
|
|
|
|
MASTER_SITES= http://spacehopper.org/mirrors/
|
|
|
|
MODULES= devel/scons
|
|
|
|
MAKE_ENV= ${MODSCONS_ENV} CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
|
|
# there are gtest-based tests, but fiddly to get working with SCons
|
|
NO_REGRESS= Yes
|
|
|
|
do-install:
|
|
cd ${WRKSRC}; \
|
|
${INSTALL_MAN} xsettingsd.1 ${PREFIX}/man/man1/; \
|
|
${INSTALL_PROGRAM} xsettingsd dump_xsettings ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|