Skip to content

Commit

Permalink
Merge pull request #2417 from rouault/refresh_COPYING
Browse files Browse the repository at this point in the history
COPYING: update and install COPYING, NEWS and AUTHORS
  • Loading branch information
rouault authored Nov 9, 2020
2 parents 848ee7b + c87ace6 commit bcfb194
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -277,3 +277,7 @@ add_subdirectory(cmake)
if(BUILD_TESTING)
add_subdirectory(test)
endif()

set(docfiles COPYING NEWS AUTHORS)
install(FILES ${docfiles}
DESTINATION "${DOCDIR}")
18 changes: 9 additions & 9 deletions COPYING
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@

All source, data files and other contents of the PROJ.4 package are
All source, data files and other contents of the PROJ package are
available under the following terms. Note that the PROJ 4.3 and earlier
was "public domain" as is common with US government work, but apparently
this is not a well defined legal term in many countries. I am placing
everything under the following MIT style license because I believe it is
this is not a well defined legal term in many countries. Frank Warmerdam placed
everything under the following MIT style license because he believed it is
effectively the same as public domain, allowing anyone to use the code as
they wish, including making proprietary derivatives.
they wish, including making proprietary derivatives.

Though I have put my own name as copyright holder, I don't mean to imply
I did the work. Essentially all work was done by Gerald Evenden.
Initial PROJ 4.3 public domain code was put as Frank Warmerdam as copyright
holder, but he didn't mean to imply he did the work. Essentially all work was
done by Gerald Evenden.

--------------
Copyright information can be found in source files.

Copyright (c) 2000, Frank Warmerdam
--------------

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
Expand All @@ -31,4 +32,3 @@ I did the work. Essentially all work was done by Gerald Evenden.
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

2 changes: 2 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ DIST_SUBDIRS = include src man data cmake test

EXTRA_DIST = CMakeLists.txt CITATION README.md

dist_doc_DATA = COPYING NEWS AUTHORS

pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = proj.pc

Expand Down
2 changes: 1 addition & 1 deletion cmake/ProjInstallPath.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if(UNIX)
set(DEFAULT_LIB_SUBDIR ${CMAKE_INSTALL_LIBDIR})
set(DEFAULT_DATA_SUBDIR ${CMAKE_INSTALL_DATAROOTDIR}/proj)
set(DEFAULT_INCLUDE_SUBDIR ${CMAKE_INSTALL_INCLUDEDIR})
set(DEFAULT_DOC_SUBDIR ${CMAKE_INSTALL_DOCDIR})
set(DEFAULT_DOC_SUBDIR share/doc/${PROJECT_NAME_LOWER})
set(DEFAULT_CMAKE_SUBDIR ${CMAKE_INSTALL_LIBDIR}/cmake)
else()
# Common locations for Unix and Mac OS X
Expand Down

0 comments on commit bcfb194

Please sign in to comment.