Conky is a system monitor for X originally based on the torsmo code. Since it's original conception, Conky has changed a fair bit from it's predecessor. Conky can display just about anything, either on your root desktop or in it's own window. Conky has many built-in objects, as well as the ability to execute programs and scripts, then display the output from stdout. from Vlad Glagolev <stelzy at gmail.com> (MAINTAINER) feedback and ok ajacoutot@
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/10/10 21:20:23 jasper Exp $
|
|
|
|
COMMENT= light-weight system monitor
|
|
|
|
DISTNAME= conky-1.4.7
|
|
CATEGORIES= sysutils
|
|
HOMEPAGE= http://conky.sourceforge.net/
|
|
|
|
MAINTAINER= Vlad Glagolev <stelzy@gmail.com>
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=conky/}
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= X11 Xau Xdamage Xdmcp Xext Xfixes Xft Xrender c crypto \
|
|
expat fontconfig freetype kvm m ossaudio pthread ssl z
|
|
|
|
MODULES= devel/gettext
|
|
|
|
LIB_DEPENDS= glib-2.0::devel/glib2 \
|
|
curl,idn::net/curl \
|
|
xml2::textproc/libxml
|
|
|
|
USE_LIBTOOL= Yes
|
|
USE_X11= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS+= --enable-mpd \
|
|
--enable-rss \
|
|
--disable-portmon
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/conky
|
|
${INSTALL_DATA} ${WRKSRC}/doc/conkyrc.sample \
|
|
${PREFIX}/share/examples/conky
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/conky
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/conky
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/conky
|
|
|
|
.include <bsd.port.mk>
|