diff options
author | obache <obache> | 2012-01-14 07:44:33 +0000 |
---|---|---|
committer | obache <obache> | 2012-01-14 07:44:33 +0000 |
commit | ebacb328d64ce5affb86d730a6b6f6c4b7d2c223 (patch) | |
tree | f1a7084386256d1f181a787d53c0639fc9d2d317 /chat | |
parent | b219bbdb4b672a2c4675303f8255a5371bd1582d (diff) | |
download | pkgsrc-ebacb328d64ce5affb86d730a6b6f6c4b7d2c223.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')
-rw-r--r-- | chat/empathy/Makefile | 6 | ||||
-rw-r--r-- | chat/ircservices/Makefile | 9 | ||||
-rw-r--r-- | chat/telepathy-logger/Makefile | 6 |
3 files changed, 11 insertions, 10 deletions
diff --git a/chat/empathy/Makefile b/chat/empathy/Makefile index 369e5481a6a..9cf96b9e644 100644 --- a/chat/empathy/Makefile +++ b/chat/empathy/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2012/01/13 10:54:51 obache Exp $ +# $NetBSD: Makefile,v 1.30 2012/01/14 07:44:33 obache Exp $ DISTNAME= empathy-2.34.0 PKGREVISION= 6 @@ -13,7 +13,7 @@ LICENSE= gnu-gpl-v2 PKG_DESTDIR_SUPPORT= user-destdir GNU_CONFIGURE= yes -USE_TOOLS+= gawk gmake intltool msgfmt pkg-config +USE_TOOLS+= gawk gmake gsed intltool msgfmt pkg-config USE_TOOLS+= autoconf USE_LIBTOOL= yes USE_PKGLOCALEDIR= yes @@ -29,8 +29,6 @@ BUILDLINK_TRANSFORM+= rm:-Werror # notyet #CONFIGURE_ARGS+= --enable-meego -BUILD_DEPENDS+= gsed-[0-9]*:../../textproc/gsed - .include "../../audio/libcanberra/buildlink3.mk" .include "../../chat/telepathy-farsight/buildlink3.mk" .include "../../chat/telepathy-glib/buildlink3.mk" 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 diff --git a/chat/telepathy-logger/Makefile b/chat/telepathy-logger/Makefile index ff916523e6f..337e7dbe512 100644 --- a/chat/telepathy-logger/Makefile +++ b/chat/telepathy-logger/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2011/11/23 19:30:08 marino Exp $ +# $NetBSD: Makefile,v 1.9 2012/01/14 07:44:33 obache Exp $ # DISTNAME= telepathy-logger-0.2.7 @@ -16,13 +16,11 @@ PKG_DESTDIR_SUPPORT= user-destdir GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_TOOLS+= pkg-config gmake intltool msgfmt +USE_TOOLS+= pkg-config gmake gsed intltool msgfmt PKGCONFIG_OVERRIDE+= extensions/tpl-extensions.pc.in PKGCONFIG_OVERRIDE+= telepathy-logger/telepathy-logger-0.1.pc.in -BUILD_DEPENDS+= gsed-[0-9]*:../../textproc/gsed - DEPENDS= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat .include "../../devel/gettext-lib/buildlink3.mk" |