Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

8
graphics/gource/DESCR Normal file
View File

@@ -0,0 +1,8 @@
Software projects are displayed by Gource as an animated tree with
the root directory of the project at its centre. Directories appear
as branches with files as leaves. Developers can be seen working
on the tree at the times they contributed to the project.
Currently Gource includes built-in log generation support for Git,
Mercurial and Bazaar and SVN (as of 0.29). Gource can also parse
logs produced by several third party tools for CVS repositories.

27
graphics/gource/Makefile Normal file
View File

@@ -0,0 +1,27 @@
# $NetBSD: Makefile,v 1.13 2013/06/04 22:16:19 tron Exp $
#
DISTNAME= gource-0.38
PKGREVISION= 5
CATEGORIES= graphics
MASTER_SITES= http://gource.googlecode.com/files/
MAINTAINER= ryoon@NetBSD.org
HOMEPAGE= http://code.google.com/p/gource/
COMMENT= Software version control visualization
LICENSE= gnu-gpl-v3
GNU_CONFIGURE= yes
USE_LANGUAGES= c c++
CONFIGURE_ARGS= --with-boost=${BUILDLINK_PREFIX.boost-libs}
.include "../../devel/SDL/buildlink3.mk"
.include "../../devel/boost-libs/buildlink3.mk"
.include "../../devel/pcre/buildlink3.mk"
.include "../../graphics/SDL_image/buildlink3.mk"
.include "../../graphics/freetype2/buildlink3.mk"
.include "../../graphics/glew/buildlink3.mk"
.include "../../graphics/glm/buildlink3.mk"
.include "../../graphics/glu/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

17
graphics/gource/PLIST Normal file
View File

@@ -0,0 +1,17 @@
@comment $NetBSD: PLIST,v 1.2 2012/05/06 08:29:38 ryoon Exp $
bin/gource
man/man1/gource.1
share/gource/beam.png
share/gource/bloom.tga
share/gource/bloom_alpha.tga
share/gource/file.png
share/gource/fonts/FreeSans.ttf
share/gource/fonts/README
share/gource/gource.style
share/gource/shaders/bloom.frag
share/gource/shaders/bloom.vert
share/gource/shaders/shadow.frag
share/gource/shaders/shadow.vert
share/gource/shaders/text.frag
share/gource/shaders/text.vert
share/gource/user.png

7
graphics/gource/distinfo Normal file
View File

@@ -0,0 +1,7 @@
$NetBSD: distinfo,v 1.6 2012/12/19 13:50:35 ryoon Exp $
SHA1 (gource-0.38.tar.gz) = 78f8c2064114313851f53b657d12db28abb89fae
RMD160 (gource-0.38.tar.gz) = bfeb1de7d1d71dd8cb4d2f9e3fa4ecfc43a00191
Size (gource-0.38.tar.gz) = 850811 bytes
SHA1 (patch-src_dirnode.cpp) = b692c7c3cf9a9cb8e47d32cf7864cbb0a293802c
SHA1 (patch-src_logmill.cpp) = fed1b3aedb862b9d24a4cd4e7e26bb8ba72068f0

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-src_dirnode.cpp,v 1.2 2012/12/19 13:50:35 ryoon Exp $
* Fix build failure with gcc 4.7 (and 5.4.4)
--- src/dirnode.cpp.orig 2012-04-20 01:52:29.000000000 +0000
+++ src/dirnode.cpp
@@ -577,7 +577,7 @@ void RDirNode::calcRadius() {
//this->dir_radius_sqrt = sqrt(dir_radius); //dir_radius_sqrt is not used
// this->parent_radius = std::max(1.0, parent_circ / PI);
- this->parent_radius = std::max(1.0, sqrt(total_file_area) * gGourceDirPadding);
+ this->parent_radius = std::max(1.0f, (float) (sqrt(total_file_area) * gGourceDirPadding));
}
float RDirNode::distanceToParent() const{

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-src_logmill.cpp,v 1.1 2012/09/21 11:28:44 ryoon Exp $
--- src/logmill.cpp.orig 2012-04-20 01:52:29.000000000 +0000
+++ src/logmill.cpp
@@ -176,7 +176,7 @@ RCommitLog* RLogMill::fetchLog(std::stri
logfile = repo_path.string();
}
}
- } catch(boost::filesystem3::filesystem_error& error) {
+ } catch(boost::filesystem::filesystem_error& error) {
}
}