diff options
author | edwin <edwin@FreeBSD.org> | 2004-01-10 05:59:15 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2004-01-10 05:59:15 +0800 |
commit | 4d6cccfc60006b2becf40fa27934a13a4228430c (patch) | |
tree | 7e21188ad94aa913fb82bb397abfd1204247f9f8 /misc | |
parent | e2ac354a381a9e43e8ad8e3a7a029803ac9b8408 (diff) | |
download | freebsd-ports-gnome-4d6cccfc60006b2becf40fa27934a13a4228430c.tar.gz freebsd-ports-gnome-4d6cccfc60006b2becf40fa27934a13a4228430c.tar.zst freebsd-ports-gnome-4d6cccfc60006b2becf40fa27934a13a4228430c.zip |
instant-workstation depend annoyance
Because:
** 'net/smbfs' is marked as IGNORE:
"OS versions subsequent to 440002 include smbfs"
the portupgrade -R won't run.
PR: ports/43911
Submitted by: David Aco <admin@evilmag.com>
Approved by: maintainer timeout
Diffstat (limited to 'misc')
-rw-r--r-- | misc/instant-workstation/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/misc/instant-workstation/Makefile b/misc/instant-workstation/Makefile index 04f1ae5f89a3..60e86b3276f2 100644 --- a/misc/instant-workstation/Makefile +++ b/misc/instant-workstation/Makefile @@ -7,7 +7,7 @@ PORTNAME= instant-workstation PORTVERSION= 1.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= misc MASTER_SITES= ftp://ftp.lemis.com/pub/ @@ -34,7 +34,6 @@ RUN_DEPENDS= acroread:${PORTSDIR}/print/acroread5 \ ispell:${PORTSDIR}/textproc/ispell \ startkde:${PORTSDIR}/x11/kde3 \ mkisofs:${PORTSDIR}/sysutils/mkisofs \ - mount_smbfs:${PORTSDIR}/net/smbfs \ mutt:${PORTSDIR}/mail/mutt \ mozilla:${PORTSDIR}/www/mozilla \ ${LOCALBASE}/sbin/postfix:${PORTSDIR}/mail/postfix \ @@ -45,6 +44,12 @@ RUN_DEPENDS= acroread:${PORTSDIR}/print/acroread5 \ NO_WRKSUBDIR= YES NO_BUILD= YES +.include <bsd.port.pre.mk> + +.if ${OSVERSION} <= 440002 +RUN_DEPENDS+= mount_smbfs:${PORTSDIR}/net/smbfs +.endif + pre-fetch: .if !defined(WITH_GHOSTSCRIPT_AFPL) || ${WITH_GHOSTSCRIPT_AFPL} != yes @${ECHO} "" @@ -53,4 +58,4 @@ pre-fetch: @${ECHO} "" .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |