aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
-rw-r--r--mk/cc.mk1
-rw-r--r--mk/debug.mk1
-rw-r--r--mk/depend.mk1
-rw-r--r--mk/dist.mk1
-rw-r--r--mk/gitignore.mk1
-rw-r--r--mk/lib.mk3
-rw-r--r--mk/os-BSD.mk3
-rw-r--r--mk/os-FreeBSD.mk3
-rw-r--r--mk/os-NetBSD.mk3
-rw-r--r--mk/os.mk3
-rw-r--r--mk/prog.mk3
-rw-r--r--mk/scripts.mk1
-rw-r--r--mk/subdir.mk1
-rw-r--r--mk/sys.mk3
-rw-r--r--src/Makefile3
-rw-r--r--src/includes/rc-misc.h2
-rw-r--r--src/libeinfo/einfo.h2
-rw-r--r--src/libeinfo/libeinfo.c2
-rw-r--r--src/librc/librc-daemon.c2
-rw-r--r--src/librc/librc-depend.c2
-rw-r--r--src/librc/librc-misc.c2
-rw-r--r--src/librc/librc-stringlist.c2
-rw-r--r--src/librc/librc.c2
-rw-r--r--src/librc/librc.h2
-rw-r--r--src/librc/rc.h2
-rw-r--r--src/rc/_usage.c2
-rw-r--r--src/rc/_usage.h2
-rw-r--r--src/rc/builtins.h2
-rw-r--r--src/rc/checkpath.c2
-rw-r--r--src/rc/fstabinfo.c2
-rw-r--r--src/rc/mountinfo.c2
-rw-r--r--src/rc/rc-applets.c2
-rw-r--r--src/rc/rc-depend.c2
-rw-r--r--src/rc/rc-logger.c2
-rw-r--r--src/rc/rc-logger.h2
-rw-r--r--src/rc/rc-misc.c2
-rw-r--r--src/rc/rc-plugin.c2
-rw-r--r--src/rc/rc-plugin.h2
-rw-r--r--src/rc/rc-service.c2
-rw-r--r--src/rc/rc-status.c2
-rw-r--r--src/rc/rc-update.c2
-rw-r--r--src/rc/rc.c2
-rw-r--r--src/rc/runscript.c2
-rw-r--r--src/rc/start-stop-daemon.c2
45 files changed, 54 insertions, 39 deletions
diff --git a/Makefile b/Makefile
index 0f994b21..21170bfa 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
# OpenRC Makefile
-# Copyright 2007-2008 Roy Marples
-# Distributed under the terms of the GNU General Public License v2
+# Copyright 2007-2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
NAME= openrc
VERSION= 0.1
diff --git a/mk/cc.mk b/mk/cc.mk
index d52597bd..c4a520d4 100644
--- a/mk/cc.mk
+++ b/mk/cc.mk
@@ -1,4 +1,5 @@
# Copyright 2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
# Setup some good default CFLAGS
CFLAGS?= -O2
diff --git a/mk/debug.mk b/mk/debug.mk
index b1e68a85..d4b959f7 100644
--- a/mk/debug.mk
+++ b/mk/debug.mk
@@ -1,5 +1,6 @@
# rules to enable debugging support
# Copyright 2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
_RC_DEBUG_SH= case "${DEBUG}" in "") echo "";; *) echo "-DRC_DEBUG";; esac
_RC_DEBUG!= ${_RC_DEBUG_SH}
diff --git a/mk/depend.mk b/mk/depend.mk
index 3d72cac1..7c5343ca 100644
--- a/mk/depend.mk
+++ b/mk/depend.mk
@@ -2,6 +2,7 @@
# it exists. Only GNU make does not do this.
# Copyright 2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
CLEANFILES+= .depend
IGNOREFILES+= .depend
diff --git a/mk/dist.mk b/mk/dist.mk
index 2c400300..90383482 100644
--- a/mk/dist.mk
+++ b/mk/dist.mk
@@ -1,5 +1,6 @@
# rules to make a distribution tarball from a git repo
# Copyright 2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
GITREF?= HEAD
DISTPREFIX?= ${NAME}-${VERSION}
diff --git a/mk/gitignore.mk b/mk/gitignore.mk
index 09139b0e..50af3e55 100644
--- a/mk/gitignore.mk
+++ b/mk/gitignore.mk
@@ -1,5 +1,6 @@
# rules to make .gitignore files
# Copyright 2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
IGNOREFILES+= ${CLEANFILES}
diff --git a/mk/lib.mk b/mk/lib.mk
index 9c5cc229..bf775d17 100644
--- a/mk/lib.mk
+++ b/mk/lib.mk
@@ -1,7 +1,8 @@
# rules to build a library
# based on FreeBSD's bsd.lib.mk
-# Copyright 2008 Roy Marples
+# Copyright 2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
SHLIB_NAME= lib${LIB}.so.${SHLIB_MAJOR}
SHLIB_LINK= lib${LIB}.so
diff --git a/mk/os-BSD.mk b/mk/os-BSD.mk
index d91ccef9..328e5210 100644
--- a/mk/os-BSD.mk
+++ b/mk/os-BSD.mk
@@ -1,4 +1,5 @@
-# Copyright 2008 Roy Marples
+# Copyright 2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
# Generic definitions
diff --git a/mk/os-FreeBSD.mk b/mk/os-FreeBSD.mk
index a58741b1..fdc27cea 100644
--- a/mk/os-FreeBSD.mk
+++ b/mk/os-FreeBSD.mk
@@ -1,4 +1,5 @@
-# Copyright 2008 Roy Marples
+# Copyright 2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
# Generic definitions
diff --git a/mk/os-NetBSD.mk b/mk/os-NetBSD.mk
index 9a05c849..a61356b4 100644
--- a/mk/os-NetBSD.mk
+++ b/mk/os-NetBSD.mk
@@ -1,4 +1,5 @@
-# Copyright 2008 Roy Marples
+# Copyright 2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
# Generic definitions
diff --git a/mk/os.mk b/mk/os.mk
index 73faf43c..9f6a2b2b 100644
--- a/mk/os.mk
+++ b/mk/os.mk
@@ -1,4 +1,5 @@
-# Copyright 2008 Roy Marples
+# Copyright 2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
# Generic definitions
diff --git a/mk/prog.mk b/mk/prog.mk
index 237575c7..a76bca44 100644
--- a/mk/prog.mk
+++ b/mk/prog.mk
@@ -1,7 +1,8 @@
# rules to build a library
# based on FreeBSD's bsd.prog.mk
-# Copyright 2008 Roy Marples
+# Copyright 2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
OBJS+= ${SRCS:.c=.o}
diff --git a/mk/scripts.mk b/mk/scripts.mk
index e1616cc9..ced18441 100644
--- a/mk/scripts.mk
+++ b/mk/scripts.mk
@@ -1,5 +1,6 @@
# Install rules for our scripts
# Copyright 2007-2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
include ${MK}/sys.mk
include ${MK}/os.mk
diff --git a/mk/subdir.mk b/mk/subdir.mk
index fbac0bab..8ebaad4b 100644
--- a/mk/subdir.mk
+++ b/mk/subdir.mk
@@ -1,6 +1,7 @@
# Recursive rules
# Adapted from FreeBSDs bsd.subdir.mk
# Copyright 2007-2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
_+_ ?= +
ECHODIR ?= echo
diff --git a/mk/sys.mk b/mk/sys.mk
index 47e4adca..de9357d9 100644
--- a/mk/sys.mk
+++ b/mk/sys.mk
@@ -1,5 +1,6 @@
# Generic system definitions
-# Copyright 2008 Roy Marples
+# Copyright 2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
AR?= ar
CP?= cp
diff --git a/src/Makefile b/src/Makefile
index 151bced4..991e13ba 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,4 +1,5 @@
-# Copyright 2007-2008 Roy Marples
+# Copyright 2007-2008 Roy Marples <roy@marples.name>
+# All rights reserved. Released under the 2-clause BSD license.
SUBDIR= test libeinfo librc rc
diff --git a/src/includes/rc-misc.h b/src/includes/rc-misc.h
index 846e8dca..0906e3ea 100644
--- a/src/includes/rc-misc.h
+++ b/src/includes/rc-misc.h
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/libeinfo/einfo.h b/src/libeinfo/einfo.h
index 6d39c364..63ee5e5a 100644
--- a/src/libeinfo/einfo.h
+++ b/src/libeinfo/einfo.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/libeinfo/libeinfo.c b/src/libeinfo/libeinfo.c
index f8ddcb5f..b1fa26e5 100644
--- a/src/libeinfo/libeinfo.c
+++ b/src/libeinfo/libeinfo.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/librc/librc-daemon.c b/src/librc/librc-daemon.c
index d553b876..a58ba15c 100644
--- a/src/librc/librc-daemon.c
+++ b/src/librc/librc-daemon.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/librc/librc-depend.c b/src/librc/librc-depend.c
index 0327620b..5b047d7f 100644
--- a/src/librc/librc-depend.c
+++ b/src/librc/librc-depend.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/librc/librc-misc.c b/src/librc/librc-misc.c
index 25d230cd..4aef3c00 100644
--- a/src/librc/librc-misc.c
+++ b/src/librc/librc-misc.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/librc/librc-stringlist.c b/src/librc/librc-stringlist.c
index a60fe241..4dc07030 100644
--- a/src/librc/librc-stringlist.c
+++ b/src/librc/librc-stringlist.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/librc/librc.c b/src/librc/librc.c
index ac183773..5d4826c9 100644
--- a/src/librc/librc.c
+++ b/src/librc/librc.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/librc/librc.h b/src/librc/librc.h
index 4e56eb85..b5e9cabd 100644
--- a/src/librc/librc.h
+++ b/src/librc/librc.h
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/librc/rc.h b/src/librc/rc.h
index 5deb0e9e..415963b4 100644
--- a/src/librc/rc.h
+++ b/src/librc/rc.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/_usage.c b/src/rc/_usage.c
index afe517f1..cd621d9e 100644
--- a/src/rc/_usage.c
+++ b/src/rc/_usage.c
@@ -1,5 +1,5 @@
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/_usage.h b/src/rc/_usage.h
index 76304338..3c170cab 100644
--- a/src/rc/_usage.h
+++ b/src/rc/_usage.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/builtins.h b/src/rc/builtins.h
index c8d0958d..0cd03d3c 100644
--- a/src/rc/builtins.h
+++ b/src/rc/builtins.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/checkpath.c b/src/rc/checkpath.c
index 4bf0c46a..765506de 100644
--- a/src/rc/checkpath.c
+++ b/src/rc/checkpath.c
@@ -5,7 +5,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/fstabinfo.c b/src/rc/fstabinfo.c
index 54812bfe..b596ccf9 100644
--- a/src/rc/fstabinfo.c
+++ b/src/rc/fstabinfo.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/mountinfo.c b/src/rc/mountinfo.c
index 0ad28231..858851ff 100644
--- a/src/rc/mountinfo.c
+++ b/src/rc/mountinfo.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/rc-applets.c b/src/rc/rc-applets.c
index 34ab7b0f..70f3a044 100644
--- a/src/rc/rc-applets.c
+++ b/src/rc/rc-applets.c
@@ -7,7 +7,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/rc-depend.c b/src/rc/rc-depend.c
index 908cf3a5..1166d4c6 100644
--- a/src/rc/rc-depend.c
+++ b/src/rc/rc-depend.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/rc-logger.c b/src/rc/rc-logger.c
index b4e4e352..96b7bb73 100644
--- a/src/rc/rc-logger.c
+++ b/src/rc/rc-logger.c
@@ -5,7 +5,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/rc-logger.h b/src/rc/rc-logger.h
index 3bbfaed7..ef157a87 100644
--- a/src/rc/rc-logger.h
+++ b/src/rc/rc-logger.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/rc-misc.c b/src/rc/rc-misc.c
index 42d9e532..32fe50e3 100644
--- a/src/rc/rc-misc.c
+++ b/src/rc/rc-misc.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/rc-plugin.c b/src/rc/rc-plugin.c
index 034f79d2..230a85a4 100644
--- a/src/rc/rc-plugin.c
+++ b/src/rc/rc-plugin.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/rc-plugin.h b/src/rc/rc-plugin.h
index 0b8ab090..291252f7 100644
--- a/src/rc/rc-plugin.h
+++ b/src/rc/rc-plugin.h
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/rc-service.c b/src/rc/rc-service.c
index d3f52b0d..5c6fc3df 100644
--- a/src/rc/rc-service.c
+++ b/src/rc/rc-service.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2008 Roy Marples
+ * Copyright 2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/rc-status.c b/src/rc/rc-status.c
index 929c7e38..7f040d38 100644
--- a/src/rc/rc-status.c
+++ b/src/rc/rc-status.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/rc-update.c b/src/rc/rc-update.c
index e09f521c..fc86aefe 100644
--- a/src/rc/rc-update.c
+++ b/src/rc/rc-update.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/rc.c b/src/rc/rc.c
index 59ac9b92..a6f58b4f 100644
--- a/src/rc/rc.c
+++ b/src/rc/rc.c
@@ -9,7 +9,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/runscript.c b/src/rc/runscript.c
index 61746155..8720c02f 100644
--- a/src/rc/runscript.c
+++ b/src/rc/runscript.c
@@ -4,7 +4,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without
diff --git a/src/rc/start-stop-daemon.c b/src/rc/start-stop-daemon.c
index db99efd6..d96e5f61 100644
--- a/src/rc/start-stop-daemon.c
+++ b/src/rc/start-stop-daemon.c
@@ -8,7 +8,7 @@
*/
/*
- * Copyright 2007-2008 Roy Marples
+ * Copyright 2007-2008 Roy Marples <roy@marples.name>
* All rights reserved
* Redistribution and use in source and binary forms, with or without