cb59151294
bgs allows you to tailor the appearance of the background ("root") window on a workstation display running X. It uses imlib2 for image rendering and rotates the images automatically. It is designed for dynamic Xinerama/Xrandr setups such as those used with notebooks, but it works well in any setup. From James Turner (MAINTAINER) ok okan@
36 lines
746 B
Makefile
36 lines
746 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/07/16 16:16:14 merdely Exp $
|
|
|
|
COMMENT = simple background setter
|
|
|
|
VERSION = 0.4
|
|
DISTNAME = bgs-${VERSION}
|
|
CATEGORIES = x11 graphics
|
|
|
|
HOMEPAGE = http://s01.de/~gottox/index.cgi/proj_bgs
|
|
MASTER_SITES = http://s01.de/~gottox/files/bgs/
|
|
|
|
MAINTAINER = James Turner <james@bsdgroup.org>
|
|
|
|
# MIT/X
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = X11 Xinerama c
|
|
|
|
LIB_DEPENDS = Imlib2::graphics/imlib2
|
|
|
|
USE_X11 = Yes
|
|
NO_REGRESS = Yes
|
|
SUBST_VARS = VERSION
|
|
|
|
pre-configure:
|
|
@${SUBST_CMD} ${WRKSRC}/bgs.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bgs ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/bgs.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|