From 7e56f91788806b747f8a78395ed33e1e8f07e7f7 Mon Sep 17 00:00:00 2001 From: marino Date: Sat, 10 Aug 2013 22:54:58 +0000 Subject: 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) --- irc/irc/Makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/irc/irc/Makefile b/irc/irc/Makefile index 072770c750b9..3b279f9c92b4 100644 --- a/irc/irc/Makefile +++ b/irc/irc/Makefile @@ -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 -- cgit