Skip to content

Commit

Permalink
copypolicy and filtering fixes
Browse files Browse the repository at this point in the history
svn path=/trunk/yarp2/; revision=6679
  • Loading branch information
paulfitz committed Apr 9, 2008
1 parent 50913cd commit 6e18a46
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
1 change: 1 addition & 0 deletions conf/build.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,4 @@ SOURCE Mon Mar 17 18:13:34 CET 2008 (copyright/license text problem)
SOURCE Mon Apr 7 12:17:59 EDT 2008 (preview 2.2.0)
SOURCE Mon Apr 7 12:37:59 EDT 2008 (automake machinery update)
SOURCE Mon Apr 7 13:37:59 EDT 2008 (harness_dev bug)
SOURCE Wed Apr 9 12:03:12 EDT 2008 (copyright/license, dimax blob filter)
16 changes: 13 additions & 3 deletions scripts/make-source-package
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,19 @@ want_prune=true
if $want_prune; then
echo "Directories removed for distribution:" > /tmp/REMOVED
# certain driver directories are of ambiguous redistribution status
for f in src/modules/dimax_u2c; do
echo " Removed subdirectories of: $f" >> /tmp/REMOVED
rm -rf $f/*
for f in src/modules/dimax_u2c/blob; do
mydir=$PWD
cd $f
( ls -l `find . -type f | grep -v CVS` ) > /tmp/inventory.txt
cd $mydir
echo " Removed: $f" >> /tmp/REMOVED
rm -rf $f
mkdir -p $f
(
echo "Contents of this directory are not known to be redistributable"
echo "What should be here:"
cat /tmp/inventory.txt
) > $f/README.TXT
done

for f in debian ; do
Expand Down
4 changes: 4 additions & 0 deletions src/modules/dimax_u2c/I2c.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@

// a summary of the licence statement below, added by paulfitz
// CopyPolicy: GPL

// Copyright (C)2004 Dimax ( http://www.xdimax.com )
//
// This program is free software; you can redistribute it and/or
Expand Down
8 changes: 8 additions & 0 deletions src/modules/ffmpeg/ffmpeg_api.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// -*- mode:C++; tab-width:4; c-basic-offset:4; indent-tabs-mode:nil -*-

/*
* Copyright (C) 2008 Paul Fitzpatrick
* CopyPolicy: Released under the terms of the GNU GPL v2.0.
*
*/

#include "ffmpeg_api.h"


Expand Down

0 comments on commit 6e18a46

Please sign in to comment.