diff options
author | grant <grant@pkgsrc.org> | 2004-01-22 08:46:43 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-01-22 08:46:43 +0000 |
commit | a6c4571e4d84aaebf82eb89b28417a7f9588c16e (patch) | |
tree | ab56d5465a0484cb05d21b7e41147eed628908ff /audio | |
parent | fd7ac7e0b220cfb2a72944665e88ce764449dfd7 (diff) | |
download | pkgsrc-a6c4571e4d84aaebf82eb89b28417a7f9588c16e.tar.gz |
whitespace fixes, simplify a conditional
Diffstat (limited to 'audio')
-rw-r--r-- | audio/trplayer/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/audio/trplayer/Makefile b/audio/trplayer/Makefile index ec5d1fae938..6ad6d837d4d 100644 --- a/audio/trplayer/Makefile +++ b/audio/trplayer/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2004/01/20 12:07:43 agc Exp $ +# $NetBSD: Makefile,v 1.11 2004/01/22 08:46:43 grant Exp $ # DISTNAME= trplayer-1.2.0 @@ -12,15 +12,13 @@ COMMENT= Text-mode Realmedia Player .include "../../mk/bsd.prefs.mk" -.if (${OPSYS} == "NetBSD") -. if (${MACHINE_ARCH} == "i386") +.if ${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "i386" BUILD_DEPENDS+= rpm2pkg>=1.2:../../pkgtools/rpm2pkg DEPENDS+= realplayer>=8.0.1:../../audio/realplayer DEPENDS+= suse_base>=7.3:../../emulators/${SUSE_DIR_PREFIX}_base DEPENDS+= suse_compat>=7.3:../../emulators/${SUSE_DIR_PREFIX}_compat DEPENDS+= suse_libc5>=7.3:../../emulators/${SUSE_DIR_PREFIX}_libc5 DEPENDS+= suse_slang>=7.3:../../emulators/${SUSE_DIR_PREFIX}_slang -. endif .endif INTERACTIVE_STAGE= fetch # XXX Not really! |