[101792] trunk/dports/math
hum at macports.org
hum at macports.org
Sat Jan 19 05:38:44 PST 2013
Revision: 101792
https://trac.macports.org/changeset/101792
Author: hum at macports.org
Date: 2013-01-19 05:38:44 -0800 (Sat, 19 Jan 2013)
Log Message:
-----------
New port: lda-c @20080413 - a C implementation of latent Dirichlet allocation (LDA).
Added Paths:
-----------
trunk/dports/math/lda-c/
trunk/dports/math/lda-c/Portfile
Added: trunk/dports/math/lda-c/Portfile
===================================================================
--- trunk/dports/math/lda-c/Portfile (rev 0)
+++ trunk/dports/math/lda-c/Portfile 2013-01-19 13:38:44 UTC (rev 101792)
@@ -0,0 +1,66 @@
+# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
+# $Id$
+
+PortSystem 1.0
+
+name lda-c
+version 20080413
+categories math
+maintainers hum openmaintainer
+
+description a C implementation of latent Dirichlet allocation (LDA)
+
+long_description LDA-C is a C implementation of latent Dirichlet allocation \
+ (LDA) made by David M. Blei.
+
+homepage http://www.cs.princeton.edu/~blei/lda-c/
+platforms darwin
+license GPL
+
+distname ${name}-dist
+extract.suffix .tgz
+
+master_sites ${homepage}
+checksums ${distname}${extract.suffix} \
+ rmd160 a1e2fb1248827142eb31b72dc5a63ca57ffb6470 \
+ sha256 d3f387bfd468552319a05d62f33be9872c1b03bee1c7e382ebda37d8e35bc993
+
+use_configure no
+
+variant universal {}
+
+build.args CC=${configure.cc} CFLAGS="${configure.cflags} [get_canonical_archflags]"
+build.target
+
+set share_dir ${prefix}/share/${name}
+
+destroot {
+ # install lda executable as 'lda-c'.
+ xinstall -m 755 ${worksrcpath}/lda ${destroot}${prefix}/bin/${name}
+ # install additional documents.
+ set docdir ${prefix}/share/doc/${name}
+ xinstall -d ${destroot}${docdir}
+ xinstall -m 644 -W ${worksrcpath} \
+ readme.txt todo.txt \
+ ${destroot}${docdir}
+ # install settings files and a script.
+ xinstall -d ${destroot}${share_dir}
+ foreach f {inf-settings.txt settings.txt} {
+ xinstall -m 644 ${worksrcpath}/${f} ${destroot}${share_dir}
+ }
+ xinstall -m 755 ${worksrcpath}/topics.py ${destroot}${share_dir}
+}
+
+variant sample description {Add sample data from the Associated Press} {
+ distfiles-append ap${extract.suffix}
+ checksums-append ap${extract.suffix} \
+ rmd160 25b1b2e8871eb50cb6a179c0b100c455fc19bca6 \
+ sha256 91bc914b8f66d55c3b87556d6450b7a7c635efae752eedc702fd20b1fb1b3e8b
+ post-destroot {
+ copy ${workpath}/ap ${destroot}${share_dir}
+ }
+}
+
+default_variants +sample
+
+livecheck.type none
Property changes on: trunk/dports/math/lda-c/Portfile
___________________________________________________________________
Added: svn:keywords
+ Id
Added: svn:eol-style
+ native
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20130119/c49b75b2/attachment-0001.html>
More information about the macports-changes
mailing list