Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Sep 2006 15:50:49 GMT
From:      Paolo Pisati <piso@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 106062 for review
Message-ID:  <200609131550.k8DFonap013227@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=106062

Change 106062 by piso@piso_longino on 2006/09/13 15:50:34

	-Trim BSD license from Makefile&c.
	
	-Add the $FreeBSD$ tag where missing.

Affected files ...

.. //depot/projects/soc2005/libalias/lib/libalias/modules/Makefile#4 edit
.. //depot/projects/soc2005/libalias/lib/libalias/modules/Makefile.inc#3 edit
.. //depot/projects/soc2005/libalias/lib/libalias/modules/cuseeme/Makefile#3 edit
.. //depot/projects/soc2005/libalias/lib/libalias/modules/dummy/Makefile#3 edit
.. //depot/projects/soc2005/libalias/lib/libalias/modules/ftp/Makefile#3 edit
.. //depot/projects/soc2005/libalias/lib/libalias/modules/irc/Makefile#3 edit
.. //depot/projects/soc2005/libalias/lib/libalias/modules/nbt/Makefile#3 edit
.. //depot/projects/soc2005/libalias/lib/libalias/modules/pptp/Makefile#3 edit
.. //depot/projects/soc2005/libalias/lib/libalias/modules/skinny/Makefile#3 edit
.. //depot/projects/soc2005/libalias/lib/libalias/modules/smedia/Makefile#3 edit
.. //depot/projects/soc2005/libalias/sys/modules/libalias/Makefile#7 edit
.. //depot/projects/soc2005/libalias/sys/modules/libalias/libalias/Makefile#8 edit
.. //depot/projects/soc2005/libalias/sys/modules/libalias/modules/Makefile#3 edit
.. //depot/projects/soc2005/libalias/sys/modules/libalias/modules/Makefile.inc#3 edit
.. //depot/projects/soc2005/libalias/sys/modules/libalias/modules/cuseeme/Makefile#2 edit
.. //depot/projects/soc2005/libalias/sys/modules/libalias/modules/dummy/Makefile#2 edit
.. //depot/projects/soc2005/libalias/sys/modules/libalias/modules/ftp/Makefile#2 edit
.. //depot/projects/soc2005/libalias/sys/modules/libalias/modules/irc/Makefile#2 edit
.. //depot/projects/soc2005/libalias/sys/modules/libalias/modules/modules.inc#4 edit
.. //depot/projects/soc2005/libalias/sys/modules/libalias/modules/nbt/Makefile#2 edit
.. //depot/projects/soc2005/libalias/sys/modules/libalias/modules/pptp/Makefile#2 edit
.. //depot/projects/soc2005/libalias/sys/modules/libalias/modules/skinny/Makefile#2 edit
.. //depot/projects/soc2005/libalias/sys/modules/libalias/modules/smedia/Makefile#2 edit

Differences ...

==== //depot/projects/soc2005/libalias/lib/libalias/modules/Makefile#4 (text+ko) ====

@@ -1,27 +1,3 @@
-# Copyright 2006 Paolo Pisati <piso@FreeBSD.org>
-# All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
-# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
-# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-# SUCH DAMAGE.
-#
 # $FreeBSD$
 
 .include "../../../sys/modules/libalias/modules/modules.inc"

==== //depot/projects/soc2005/libalias/lib/libalias/modules/Makefile.inc#3 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 .PATH: ${.CURDIR}/../../../../sys/netinet/libalias
 
 SHLIBDIR?= /lib

==== //depot/projects/soc2005/libalias/lib/libalias/modules/cuseeme/Makefile#3 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 LIB=	alias_cuseeme
 SRCS=	alias_cuseeme.c
 

==== //depot/projects/soc2005/libalias/lib/libalias/modules/dummy/Makefile#3 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 LIB=	alias_dummy
 SRCS=	alias_dummy.c
 

==== //depot/projects/soc2005/libalias/lib/libalias/modules/ftp/Makefile#3 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 LIB=	alias_ftp
 SRCS=	alias_ftp.c
 

==== //depot/projects/soc2005/libalias/lib/libalias/modules/irc/Makefile#3 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 LIB=	alias_irc
 SRCS=	alias_irc.c
 

==== //depot/projects/soc2005/libalias/lib/libalias/modules/nbt/Makefile#3 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 LIB=	alias_nbt
 SRCS=	alias_nbt.c
 

==== //depot/projects/soc2005/libalias/lib/libalias/modules/pptp/Makefile#3 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 LIB=	alias_pptp
 SRCS=	alias_pptp.c
 

==== //depot/projects/soc2005/libalias/lib/libalias/modules/skinny/Makefile#3 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 LIB=	alias_skinny
 SRCS=	alias_skinny.c
 

==== //depot/projects/soc2005/libalias/lib/libalias/modules/smedia/Makefile#3 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 LIB=	alias_smedia
 SRCS=	alias_smedia.c
 

==== //depot/projects/soc2005/libalias/sys/modules/libalias/Makefile#7 (text+ko) ====

@@ -1,27 +1,3 @@
-# Copyright 2006 Paolo Pisati <piso@FreeBSD.org>
-# All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
-# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
-# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-# SUCH DAMAGE.
-#
 # $FreeBSD$
 
 SUBDIR=        libalias modules

==== //depot/projects/soc2005/libalias/sys/modules/libalias/libalias/Makefile#8 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 .PATH: ${.CURDIR}/../../../netinet/libalias
 
 KMOD=	libalias

==== //depot/projects/soc2005/libalias/sys/modules/libalias/modules/Makefile#3 (text+ko) ====

@@ -1,27 +1,3 @@
-# Copyright 2006 Paolo Pisati <piso@FreeBSD.org>
-# All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-# 1. Redistributions of source code must retain the above copyright
-#    notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-#    notice, this list of conditions and the following disclaimer in the
-#    documentation and/or other materials provided with the distribution.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
-# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
-# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
-# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-# SUCH DAMAGE.
-#
 # $FreeBSD$
 
 .include "modules.inc"

==== //depot/projects/soc2005/libalias/sys/modules/libalias/modules/Makefile.inc#3 (text+ko) ====

@@ -1,1 +1,3 @@
+# $FreeBSD$
+
 .PATH: ${.CURDIR}/../../../../netinet/libalias

==== //depot/projects/soc2005/libalias/sys/modules/libalias/modules/cuseeme/Makefile#2 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 KMOD=	alias_cuseeme
 SRCS=	alias_cuseeme.c
 

==== //depot/projects/soc2005/libalias/sys/modules/libalias/modules/dummy/Makefile#2 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 KMOD=	alias_dummy
 SRCS=	alias_dummy.c
 

==== //depot/projects/soc2005/libalias/sys/modules/libalias/modules/ftp/Makefile#2 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 KMOD=	alias_ftp
 SRCS=	alias_ftp.c
 

==== //depot/projects/soc2005/libalias/sys/modules/libalias/modules/irc/Makefile#2 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 KMOD=	alias_irc
 SRCS=	alias_irc.c
 

==== //depot/projects/soc2005/libalias/sys/modules/libalias/modules/modules.inc#4 (text+ko) ====


==== //depot/projects/soc2005/libalias/sys/modules/libalias/modules/nbt/Makefile#2 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 KMOD=	alias_nbt
 SRCS=	alias_nbt.c
 

==== //depot/projects/soc2005/libalias/sys/modules/libalias/modules/pptp/Makefile#2 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 KMOD=	alias_pptp
 SRCS=	alias_pptp.c
 

==== //depot/projects/soc2005/libalias/sys/modules/libalias/modules/skinny/Makefile#2 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 KMOD=	alias_skinny
 SRCS=	alias_skinny.c
 

==== //depot/projects/soc2005/libalias/sys/modules/libalias/modules/smedia/Makefile#2 (text+ko) ====

@@ -1,3 +1,5 @@
+# $FreeBSD$
+
 KMOD=	alias_smedia
 SRCS=	alias_smedia.c
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200609131550.k8DFonap013227>