5a088944e1
Filelight creates an interactive map of concentric segmented-rings that helps visualise disk usage on your computer. It is like a pie-chart, but the segments nest, allowing you to see not only which directories take up all your space, but which directories and files inside those directories are the real culprits. thanks to steven@ for improving my pathetic patch... ok steven@
46 lines
1.0 KiB
Makefile
46 lines
1.0 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/05/22 15:29:38 ajacoutot Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= "concentric segmented-rings disk usage visualisation"
|
|
|
|
DISTNAME= filelight-1.0
|
|
CATEGORIES= sysutils x11/kde
|
|
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
HOMEPAGE= http://www.methylblue.com/filelight/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://www.methylblue.com/filelight/packages/
|
|
|
|
WANTLIB= ICE SM X11 Xau Xdmcp Xext Xrender art_lgpl_2 c iconv \
|
|
idn jpeg m png pthread stdc++ util z
|
|
|
|
MODULES= x11/kde
|
|
LIB_DEPENDS= kdecore.>=7,DCOP,kdefx,kdesu,kdeui,kio,kparts,kwalletclient::x11/kde/libs3
|
|
|
|
PORTHOME= ${WRKDIR}
|
|
|
|
USE_X11= Yes
|
|
USE_LIBTOOL= Yes
|
|
LIBTOOL_FLAGS+= --tag=disable-static
|
|
USE_GMAKE= Yes
|
|
MAKE_FLAGS= ${MODKDE_MAKE_FLAGS}
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV= ${MODKDE_CONFIGURE_ENV}
|
|
CONFIGURE_ARGS= ${MODKDE_CONFIGURE_ARGS}
|
|
|
|
pre-configure:
|
|
perl -pi -e 's,-O2,,g' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|