Original submission from Stefan Hagen, who takes MAINTAINER -- thanks! tweak and ok sthen@ hsetroot is a tool which allows you to compose wallpapers ("root pixmaps") for X. It has a lot of options like rendering gradients, solids and images and manipulate these in various ways. hsetroot also supports alpha-channels. hsetroot uses XSetWindowBackgroundPixmap instead of XSetWindowBackground for solid colors. This makes it a good xsetroot replacement when a compositor (compton, xcompmgr, ...) is in use.
30 lines
523 B
Makefile
30 lines
523 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2020/08/17 17:04:13 bcallah Exp $
|
|
|
|
COMMENT = wallpaper changer, works with compositors
|
|
CATEGORIES = x11
|
|
|
|
GH_ACCOUNT = himdel
|
|
GH_PROJECT = hsetroot
|
|
GH_TAGNAME = 1.0.5
|
|
|
|
MAINTAINER = Stefan Hagen <sh+ports@codevoid.de>
|
|
|
|
# GPLv2 only
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += Imlib2 X11 Xinerama c
|
|
|
|
LIB_DEPENDS = graphics/imlib2
|
|
|
|
USE_GMAKE = Yes
|
|
MAKE_FLAGS = CC="${CC}"
|
|
|
|
FAKE_FLAGS = DESTDIR=
|
|
|
|
NO_TEST = Yes
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${FILESDIR}/hsetroot.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|