a62e640727
Discussed with upstream.
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.9 2008/10/01 20:14:09 landry Exp $
|
|
|
|
# we use "macppc" and not "powerpc" on purpose here ; i.e. apm(4) needed
|
|
ONLY_FOR_ARCHS= amd64 arm i386 macppc sparc sparc64
|
|
|
|
COMMENT= light-weight system monitor
|
|
|
|
DISTNAME= conky-1.6.1
|
|
PKGNAME= ${DISTNAME}p0
|
|
|
|
CATEGORIES= sysutils
|
|
HOMEPAGE= http://conky.sourceforge.net/
|
|
|
|
MAINTAINER= Vlad Glagolev <stealth@sourcemage.org>
|
|
|
|
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 \
|
|
pcre::devel/pcre \
|
|
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:
|
|
#fix garbage in manpage
|
|
@perl -pi -e 's,\\\*\(T.,,g' ${PREFIX}/man/man1/conky.1
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/conky
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${PREFIX}/share/doc/conky
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/conky
|
|
|
|
FAKE_FLAGS= configdir=${PREFIX}/share/examples/conky
|
|
|
|
.include <bsd.port.mk>
|