diff options
author | jlam <jlam@pkgsrc.org> | 2007-08-23 13:43:57 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2007-08-23 13:43:57 +0000 |
commit | 58bc5f9939dcfd8845304ef8451008ad811e38c7 (patch) | |
tree | 73887b63d44b67ec3b64e2474d54cf1eba24f692 /www | |
parent | 5d1124c1cac5e297e1a531b6a6643a75260ed882 (diff) | |
download | pkgsrc-58bc5f9939dcfd8845304ef8451008ad811e38c7.tar.gz |
Define a variable EMUL_IS_NATIVE if the emulated operating system
matches the native operating system. Use it in place of checking
whether EMUL_DISTRO matches "native-*" as EMUL_DISTRO is no longer
defined after bsd.prefs.mk is included.
This should fix PR pkg/36823 by Robert Elz.
Diffstat (limited to 'www')
-rw-r--r-- | www/seamonkey-bin/Makefile.common | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/seamonkey-bin/Makefile.common b/www/seamonkey-bin/Makefile.common index d20d437c9cd..aa11dd6fc6c 100644 --- a/www/seamonkey-bin/Makefile.common +++ b/www/seamonkey-bin/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.5 2007/08/06 08:51:40 tron Exp $ +# $NetBSD: Makefile.common,v 1.6 2007/08/23 13:43:57 jlam Exp $ DISTNAME= ${MOZILLA}${MOX_EXTRA}-bin # overridden below PKGNAME= ${MOZILLA}${MOZ_EXTRA}-bin-${MOZ_VER} @@ -29,7 +29,7 @@ EMUL_MODULES.linux= compat gtk SUSE_VERSION_REQD= 7.3 .endif -.if !empty(EMUL_DISTRO:Mnative-*) +.if defined(EMUL_IS_NATIVE) . if defined(MOZ_GTK2) && !empty(MOZ_GTK2:M[Yy][Ee][Ss]) DEPENDS+= gtk2+>=2.2:../../x11/gtk2 . else @@ -98,7 +98,7 @@ do-install: # builds typically want exactly 'libgtk-1.2.so.0', etc. symlink them # into the mozilla directory. post-install: -.if !empty(EMUL_DISTRO:Mnative-*) +.if defined(EMUL_IS_NATIVE) . if defined(MOZ_GTK2) && !empty(MOZ_GTK2:M[Yy][Ee][Ss]) @cd ${MOZILLA_LIB} && \ ${LN} -s ${PREFIX}/lib/libatk-1.0.*so* .; \ |