[73884] trunk/dports/science
mmoll at macports.org
mmoll at macports.org
Sat Nov 27 15:48:01 PST 2010
Revision: 73884
http://trac.macports.org/changeset/73884
Author: mmoll at macports.org
Date: 2010-11-27 15:47:57 -0800 (Sat, 27 Nov 2010)
Log Message:
-----------
science/pqp: new port; library for 3D proximity queries
Added Paths:
-----------
trunk/dports/science/pqp/
trunk/dports/science/pqp/Portfile
trunk/dports/science/pqp/files/
trunk/dports/science/pqp/files/CMakeLists.txt
trunk/dports/science/pqp/files/LICENSE
Added: trunk/dports/science/pqp/Portfile
===================================================================
--- trunk/dports/science/pqp/Portfile (rev 0)
+++ trunk/dports/science/pqp/Portfile 2010-11-27 23:47:57 UTC (rev 73884)
@@ -0,0 +1,27 @@
+# $Id$
+
+PortSystem 1.0
+PortGroup cmake 1.0
+
+name pqp
+version 1.3
+categories science
+maintainers mmoll openmaintainer
+description A library for performing proximity queries
+long_description $description
+homepage http://gamma.cs.unc.edu/SSV/
+platforms darwin
+master_sites http://gamma.cs.unc.edu/software/downloads/SSV/
+
+checksums md5 f710e24a62db763d61d08667439d46fd \
+ sha1 995a9e9e9aa9a54ad2d5abadb9ef143123d4d0ef \
+ rmd160 cd823db9b6be5208b100b8e55ff7831c9aa24371
+worksrcdir ${distname}/PQP_v${version}/src
+
+pre-configure {
+ xinstall -m 644 -W ${filespath} LICENSE CMakeLists.txt ${worksrcpath}
+}
+
+livecheck.type regex
+livecheck.url http://gamma.cs.unc.edu/SSV/download.html
+livecheck.regex ${name}-(\[0-9.\]+).tar.gz
Property changes on: trunk/dports/science/pqp/Portfile
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
Added: trunk/dports/science/pqp/files/CMakeLists.txt
===================================================================
--- trunk/dports/science/pqp/files/CMakeLists.txt (rev 0)
+++ trunk/dports/science/pqp/files/CMakeLists.txt 2010-11-27 23:47:57 UTC (rev 73884)
@@ -0,0 +1,11 @@
+cmake_minimum_required(VERSION 2.8)
+
+project(PQP CXX)
+
+file(GLOB PQP_SRC "*.cpp")
+add_library(PQP SHARED ${PQP_SRC})
+add_library(PQP-static STATIC ${PQP_SRC})
+set_target_properties(PQP-static PROPERTIES OUTPUT_NAME "PQP")
+install(TARGETS PQP PQP-static DESTINATION lib)
+install(FILES BV.h MatVec.h PQP.h PQP_Compile.h PQP_Internal.h Tri.h DESTINATION include/PQP)
+install(FILES LICENSE DESTINATION share/doc/pqp)
\ No newline at end of file
Added: trunk/dports/science/pqp/files/LICENSE
===================================================================
--- trunk/dports/science/pqp/files/LICENSE (rev 0)
+++ trunk/dports/science/pqp/files/LICENSE 2010-11-27 23:47:57 UTC (rev 73884)
@@ -0,0 +1,32 @@
+Copyright 1999 University of North Carolina at Chapel Hill.
+All rights reserved.
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for educational, research, and non-profit purposes, without fee,
+and without a written agreement is hereby granted, provided that the above
+copyright notice and the following three paragraphs appear in all copies.
+
+IN NO EVENT SHALL THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL BE LIABLE TO
+ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
+INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
+DOCUMENTATION, EVEN IF THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL HAS
+BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+THE UNIVERSITY OF NORTH CAROLINA AT CHAPEL HILL SPECIFICALLY DISCLAIMS ANY
+WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED
+HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF NORTH CAROLINA AT
+CHAPEL HILL HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
+ENHANCEMENTS, OR MODIFICATIONS.
+
+The authors may be contacted via:
+
+US Mail: Eric Larsen, Stefan Gottschalk
+ Department of Computer Science
+ Sitterson Hall, CB #3175
+ University of North Carolina
+ Chapel Hill, NC 27599-3175
+
+Phone: (919) 962-1749
+
+Email: geom at cs.unc.edu
\ No newline at end of file
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20101127/4788b2d9/attachment-0001.html>
More information about the macports-changes
mailing list