Bug 174080 - net/ssmping fix
Summary: net/ssmping fix
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-12-03 08:50 UTC by dikshie
Modified: 2013-01-16 22:20 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description dikshie 2012-12-03 08:50:00 UTC
fix /usr/ports/net/ssmping/Makefile

-------------
+++ Makefile    2012-12-03 17:43:27.000000000 +0900
@@ -25,7 +25,7 @@
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} <= 810000
+.if ${OSVERSION} <= 800000
 IGNORE=                does not work at FreeBSD 7.x
 .endif

--------------
Comment 1 Raphael Kubo da Costa freebsd_committer freebsd_triage 2013-01-16 22:14:22 UTC
State Changed
From-To: open->closed

Committed. Thanks!
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-01-16 22:14:24 UTC
Author: rakuco
Date: Wed Jan 16 22:14:11 2013
New Revision: 310527
URL: http://svnweb.freebsd.org/changeset/ports/310527

Log:
  - Fix check for FreeBSD 7.x. The current check ended up ignoring 8.x as
    well. [1]
  - Trim Makefile headers.
  - Reword the IGNORE message a little.
  
  PR:		ports/174080
  Submitted by:	dikshie <dikshie@lapi.itb.ac.id> (maintainer)

Modified:
  head/net/ssmping/Makefile

Modified: head/net/ssmping/Makefile
==============================================================================
--- head/net/ssmping/Makefile	Wed Jan 16 21:30:42 2013	(r310526)
+++ head/net/ssmping/Makefile	Wed Jan 16 22:14:11 2013	(r310527)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:  ssmping
-# Date created:		20 August 2006
-# Whom:			dikshie@lapi.itb.ac.id
-#
+# Created by: dikshie@lapi.itb.ac.id
 # $FreeBSD$
-#
 
 PORTNAME=	ssmping
 PORTVERSION=	0.9.1
@@ -25,8 +21,8 @@ PLIST_FILES=	bin/ssmping \
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} <= 810000
-IGNORE=		does not work at FreeBSD 7.x
+.if ${OSVERSION} <= 800000
+IGNORE=		does not work with FreeBSD 7.x
 .endif
 
 do-install:
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"