diff options
author | obache <obache@pkgsrc.org> | 2012-01-14 07:44:33 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2012-01-14 07:44:33 +0000 |
commit | 2f97717bdbf803fbb33c20db682f140f2ff0bfa6 (patch) | |
tree | f1a7084386256d1f181a787d53c0639fc9d2d317 /chat/ircservices | |
parent | 65a21db0887988ab6a8423979721752ccaf7e634 (diff) | |
download | pkgsrc-2f97717bdbf803fbb33c20db682f140f2ff0bfa6.tar.gz |
gsed related clean up.
* Stop to treat NetBSD's sed as GNU sed, not full compatible.
* Then, no need to reset TOOLS_PLATFORM.gsed for NetBSD if USE_TOOLS+=gsed and
real GNU sed is required.
* In addition, convert simple USE_TOOLS+=gsed to conditionally, without NetBSD.
* convert {BUILD_,}DEPENDS+=gsed to USE_TOOLS, all tools from gsed are real gsed.
Diffstat (limited to 'chat/ircservices')
-rw-r--r-- | chat/ircservices/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/chat/ircservices/Makefile b/chat/ircservices/Makefile index 6af250a5ebb..155a8ae684b 100644 --- a/chat/ircservices/Makefile +++ b/chat/ircservices/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.36 2010/07/15 11:48:21 obache Exp $ +# $NetBSD: Makefile,v 1.37 2012/01/14 07:44:33 obache Exp $ # DISTNAME= ircservices-5.0.64 @@ -15,8 +15,13 @@ PKG_DESTDIR_SUPPORT= user-destdir MAKE_JOBS_SAFE= no +.include "../../mk/bsd.prefs.mk" + HAS_CONFIGURE= YES -USE_TOOLS+= gmake grep gsed perl +USE_TOOLS+= gmake grep perl +.if ${OPSYS} != "NetBSD" +USE_TOOLS+= gsed +.endif RCD_SCRIPTS= ircservices PKG_GROUPS= services BUILD_DEFS= VARBASE |