svn commit: r323208 - in head/devel: . libdouble-conversion
Martin Wilke
miwi at FreeBSD.org
Thu Jul 18 08:24:09 UTC 2013
Author: miwi
Date: Thu Jul 18 08:24:08 2013
New Revision: 323208
URL: http://svnweb.freebsd.org/changeset/ports/323208
Log:
This project (double-conversion) provides binary-decimal and decimal-binary
routines for IEEE doubles.
The library consists of efficient conversion routines that have been extracted
from the V8 JavaScript engine. The code has been refactored and improved so that
it can be used more easily in other projects.
WWW: http://code.google.com/p/double-conversion
PR: ports/179621
Submitted by: Waitman Gobble <waitman at waitman.net>
Added:
head/devel/libdouble-conversion/
head/devel/libdouble-conversion/Makefile (contents, props changed)
head/devel/libdouble-conversion/distinfo (contents, props changed)
head/devel/libdouble-conversion/pkg-descr (contents, props changed)
head/devel/libdouble-conversion/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Thu Jul 18 08:20:20 2013 (r323207)
+++ head/devel/Makefile Thu Jul 18 08:24:08 2013 (r323208)
@@ -974,6 +974,7 @@
SUBDIR += libdlna
SUBDIR += libdnsres
SUBDIR += libdombey
+ SUBDIR += libdouble-conversion
SUBDIR += libds
SUBDIR += libdsp
SUBDIR += libdwarf
Added: head/devel/libdouble-conversion/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libdouble-conversion/Makefile Thu Jul 18 08:24:08 2013 (r323208)
@@ -0,0 +1,24 @@
+# Created by: Waitman Gobble <waitman at waitman.net>
+# $FreeBSD$
+
+PORTNAME= libdouble-conversion
+PORTVERSION= 1.1.1
+CATEGORIES= devel
+MASTER_SITES= GH
+
+MAINTAINER= waitman at waitman.net
+COMMENT= Binary-decimal and decimal-binary routines for IEEE doubles
+
+LICENSE= BSD
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+USE_AUTOTOOLS= libtool
+GNU_CONFIGURE= yes
+USE_LDCONFIG= yes
+
+USE_GITHUB= yes
+GH_ACCOUNT= waitman
+GH_TAGNAME= ${GH_COMMIT}
+GH_COMMIT= e9b9e5a
+
+.include <bsd.port.mk>
Added: head/devel/libdouble-conversion/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libdouble-conversion/distinfo Thu Jul 18 08:24:08 2013 (r323208)
@@ -0,0 +1,2 @@
+SHA256 (libdouble-conversion-1.1.1.tar.gz) = 74c98db09e68ecedcaa4853f887dbc3ad8c205ebeabd8daba37f1cce83f91fc8
+SIZE (libdouble-conversion-1.1.1.tar.gz) = 441248
Added: head/devel/libdouble-conversion/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libdouble-conversion/pkg-descr Thu Jul 18 08:24:08 2013 (r323208)
@@ -0,0 +1,8 @@
+This project (double-conversion) provides binary-decimal and decimal-binary
+routines for IEEE doubles.
+
+The library consists of efficient conversion routines that have been extracted
+from the V8 JavaScript engine. The code has been refactored and improved so that
+it can be used more easily in other projects.
+
+WWW: http://code.google.com/p/double-conversion
Added: head/devel/libdouble-conversion/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libdouble-conversion/pkg-plist Thu Jul 18 08:24:08 2013 (r323208)
@@ -0,0 +1,15 @@
+lib/libdouble-conversion.so.0
+lib/libdouble-conversion.so
+lib/libdouble-conversion.la
+lib/libdouble-conversion.a
+include/double-conversion/bignum-dtoa.h
+include/double-conversion/double-conversion.h
+include/double-conversion/strtod.h
+include/double-conversion/bignum.h
+include/double-conversion/fast-dtoa.h
+include/double-conversion/utils.h
+include/double-conversion/cached-powers.h
+include/double-conversion/fixed-dtoa.h
+include/double-conversion/diy-fp.h
+include/double-conversion/ieee.h
+ at dirrm include/double-conversion
More information about the svn-ports-head
mailing list