svn commit: r324559 - head/irc/irc

John Marino marino at FreeBSD.org
Sat Aug 10 22:54:59 UTC 2013


Author: marino
Date: Sat Aug 10 22:54:58 2013
New Revision: 324559
URL: http://svnweb.freebsd.org/changeset/ports/324559

Log:
  irc/irc: Replace hardcoded "freebsd" with OPSYS:L
  
  Using OPSYS allows the port to build on DragonFly without modification.
  The header was also trimmed, but there was no function change made to the port.
  
  Approved by:	bapt/culot (mentors, implicit)

Modified:
  head/irc/irc/Makefile

Modified: head/irc/irc/Makefile
==============================================================================
--- head/irc/irc/Makefile	Sat Aug 10 20:35:10 2013	(r324558)
+++ head/irc/irc/Makefile	Sat Aug 10 22:54:58 2013	(r324559)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	Irc Server
-# Date created:		23 August 1994
-# Whom:			torstenb
-#
+# Created by: torstenb
 # $FreeBSD$
-#
 
 PORTNAME=	irc
 PORTVERSION=	2.11.2p3
@@ -26,7 +22,7 @@ MAN8=		ircd.8 iauth.8 ircdwatch.8
 
 GNU_CONFIGURE=	YES
 CONFIGURE_ARGS=	--sysconfdir=${PREFIX}/etc/ircd
-BUILD_WRKSRC=	${WRKSRC}/${MACHINE_ARCH}-unknown-freebsd${OSREL}
+BUILD_WRKSRC=	${WRKSRC}/${MACHINE_ARCH}-unknown-${OPSYS:L}${OSREL}
 INSTALL_WRKSRC=	${BUILD_WRKSRC}
 
 OPTIONS_DEFINE=	IPV6


More information about the svn-ports-all mailing list