summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorPietro Cerutti <gahr@FreeBSD.org>2008-06-19 21:32:41 +0000
committerPietro Cerutti <gahr@FreeBSD.org>2008-06-19 21:32:41 +0000
commit4793e8e23a5a718d62da644a6f0846096c500ada (patch)
tree004db0c51c550608328387baf0dc5a7cf5b1aa87 /sysutils
parentUpdate to 0.81 (diff)
- UNBREAK: use internal mini-scons
PR: 124738 Submitted by: yours truly Approved by: maintainer
Notes
Notes: svn path=/head/; revision=215308
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/kleansweep/Makefile17
1 files changed, 13 insertions, 4 deletions
diff --git a/sysutils/kleansweep/Makefile b/sysutils/kleansweep/Makefile
index 3603004d90e1..143342a436eb 100644
--- a/sysutils/kleansweep/Makefile
+++ b/sysutils/kleansweep/Makefile
@@ -7,20 +7,29 @@
PORTNAME= kleansweep
PORTVERSION= 0.2.9
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= sysutils
MASTER_SITES= http://linux.bydg.org/~yogin/
MAINTAINER= thomas.sander@gmx.de
COMMENT= KleanSweep allows you to reclaim disk space by finding unneeded files
-BROKEN= does not compile (scons failure)
-
USE_BZIP2= yes
-USE_SCONS= yes
USE_GMAKE= yes
INSTALLS_ICONS= yes
USE_GETTEXT= yes
USE_KDELIBS_VER=3
+post-extract:
+ (cd ${WRKSRC} && ${TAR} xzf admin/scons-mini.tar.bz2)
+
+do-configure:
+ (cd ${WRKSRC} && ./scons configure prefix=${PREFIX})
+
+do-build:
+ (cd ${WRKSRC} && ./scons)
+
+do-install:
+ (cd ${WRKSRC} && ./scons install)
+
.include <bsd.port.mk>