forked from opnsense/ports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Taken from: FreeBSD
- Loading branch information
Showing
542 changed files
with
3,789 additions
and
4,368 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,31 @@ | ||
--- src/libprojection/ProjectionBonne.cpp.orig Wed Dec 8 14:56:51 2004 | ||
+++ src/libprojection/ProjectionBonne.cpp Wed Dec 8 14:57:11 2004 | ||
--- src/libprojection/ProjectionBonne.cpp.orig 2006-03-26 05:03:20 UTC | ||
+++ src/libprojection/ProjectionBonne.cpp | ||
@@ -7,6 +7,8 @@ | ||
http://www.atnf.csiro.au/~mcalabre/WCS | ||
*/ | ||
|
||
+#include <stdio.h> | ||
+ | ||
#include <cmath> | ||
#include <cstdio> | ||
#include <sstream> | ||
#include <vector> | ||
--- src/libprojection/ProjectionGnomonic.cpp.orig Wed Dec 8 14:57:44 2004 | ||
+++ src/libprojection/ProjectionGnomonic.cpp Wed Dec 8 14:57:58 2004 | ||
--- src/libprojection/ProjectionGnomonic.cpp.orig 2006-03-26 05:03:20 UTC | ||
+++ src/libprojection/ProjectionGnomonic.cpp | ||
@@ -7,6 +7,8 @@ | ||
http://www.atnf.csiro.au/~mcalabre/WCS | ||
*/ | ||
|
||
+#include <stdio.h> | ||
+ | ||
#include <cmath> | ||
#include <cstdio> | ||
#include <sstream> | ||
using namespace std; | ||
--- src/libprojection/ProjectionMercator.cpp.orig Wed Dec 8 14:58:26 2004 | ||
+++ src/libprojection/ProjectionMercator.cpp Wed Dec 8 14:58:46 2004 | ||
@@ -1,3 +1,5 @@ | ||
--- src/libprojection/ProjectionMercator.cpp.orig 2006-03-26 05:03:20 UTC | ||
+++ src/libprojection/ProjectionMercator.cpp | ||
@@ -1,4 +1,6 @@ | ||
#include <cmath> | ||
+#include <stdio.h> | ||
+ | ||
#include <cmath> | ||
#include <cstdio> | ||
#include <sstream> | ||
using namespace std; |
6 changes: 3 additions & 3 deletions
6
...libprojection-ProjectionIcosagnomonic.cpp → ...libprojection_ProjectionIcosagnomonic.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
astro/xplanet/files/patch-src:readConfig.cpp → astro/xplanet/files/patch-src_readConfig.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,19 +2,17 @@ | |
# $FreeBSD$ | ||
|
||
PORTNAME= iozone | ||
PORTVERSION= 3.420 | ||
DISTVERSION= 3_434 | ||
CATEGORIES= benchmarks | ||
MASTER_SITES= http://www.iozone.org/src/current/ | ||
DISTNAME= ${PORTNAME}${PORTVERSION:S/./_/} | ||
EXTRACT_SUFX= .tar | ||
DISTNAME= ${PORTNAME}${DISTVERSION} | ||
|
||
MAINTAINER= [email protected] | ||
COMMENT= Performance Test of Sequential File I/O | ||
|
||
CONFLICTS= iozone-2.* iozone21-* | ||
|
||
WRKSRC= ${WRKDIR}/${DISTNAME}/src/current | ||
|
||
USES= tar | ||
MAKEFILE= makefile | ||
MAKE_ARGS= ${MAKE_ENV} | ||
ALL_TARGET= freebsd | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
SHA256 (iozone3_420.tar) = f793cc68e86aea5c93fb3010f4088653138a610c3b14047b2314ab6a1f8d5b8e | ||
SIZE (iozone3_420.tar) = 1832960 | ||
TIMESTAMP = 1466168535 | ||
SHA256 (iozone3_434.tar) = 2c388d9db393a5505b31eca38951883744c69745f687f3c7df5185b4681d462a | ||
SIZE (iozone3_434.tar) = 1843200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- iozone.c.orig 2015-10-20 14:12:13 UTC | ||
+++ iozone.c | ||
@@ -360,6 +360,7 @@ typedef off_t off64_t; | ||
#ifndef SCO_Unixware_gcc | ||
#ifndef UWIN | ||
#ifndef __DragonFly__ | ||
+#ifndef __FreeBSD__ | ||
typedef long long off64_t; | ||
#endif | ||
#endif | ||
@@ -369,6 +370,7 @@ typedef long long off64_t; | ||
#endif | ||
#endif | ||
#endif | ||
+#endif | ||
|
||
#ifdef __AIX__ | ||
#include <fcntl.h> | ||
@@ -23009,7 +23011,7 @@ char *shell; | ||
#ifdef _HPUX_SOURCE | ||
strcpy(shell,"remsh"); | ||
#else | ||
- strcpy(shell,"rsh"); | ||
+ strcpy(shell,"ssh"); | ||
#endif | ||
return; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,36 @@ | ||
--- libasync.c 2012-05-14 23:13:13.000000000 -0700 | ||
+++ libasync.c 2012-05-14 23:14:27.000000000 -0700 | ||
@@ -109,7 +109,7 @@ | ||
#include <sys/fs/vx_ioctl.h> | ||
#endif | ||
--- libasync.c.orig 2015-10-20 14:12:13 UTC | ||
+++ libasync.c | ||
@@ -96,13 +96,13 @@ | ||
|
||
-#if defined(OSFV5) || defined(linux) | ||
+#if defined(OSFV5) || defined(linux) || defined(__FreeBSD__) | ||
#include <string.h> | ||
#include <sys/types.h> | ||
#include <aio.h> | ||
-#if defined(solaris) || defined(linux) || defined(SCO_Unixware_gcc) || defined(__NetBSD__) | ||
+#if defined(solaris) || defined(linux) || defined(SCO_Unixware_gcc) || defined(__NetBSD__) || defined(__FreeBSD__) | ||
#else | ||
#include <sys/timers.h> | ||
#endif | ||
|
||
#include <sys/errno.h> | ||
#include <unistd.h> | ||
-#ifndef bsd4_4 | ||
+#if !defined(bsd4_4) && !defined(__FreeBSD__) | ||
#include <malloc.h> | ||
#endif | ||
#ifdef VXFS | ||
@@ -119,7 +119,7 @@ | ||
#include <stdlib.h> | ||
#endif | ||
|
||
-#if (defined(solaris) && defined(__LP64__)) || defined(__s390x__) || defined(FreeBSD) | ||
+#if (defined(solaris) && defined(__LP64__)) || defined(__s390x__) || defined(__FreeBSD__) | ||
-#if (defined(solaris) && defined(__LP64__)) || defined(__s390x__) || defined(FreeBSD) || defined(__NetBSD__) | ||
+#if (defined(solaris) && defined(__LP64__)) || defined(__s390x__) || defined(__FreeBSD__) || defined(__NetBSD__) | ||
/* If we are building for 64-bit Solaris, all functions that return pointers | ||
* must be declared before they are used; otherwise the compiler will assume | ||
* that they return ints and the top 32 bits of the pointer will be lost, | ||
@@ -135,7 +135,7 @@ | ||
void mbcopy(char *source, char *dest, size_t len); | ||
|
||
|
||
-#if !defined(solaris) && !defined(off64_t) && !defined(_OFF64_T) && !defined(__off64_t_defined) && !defined(SCO_Unixware_gcc) | ||
+#if !defined(solaris) && !defined(off64_t) && !defined(_OFF64_T) && !defined(__off64_t_defined) && !defined(SCO_Unixware_gcc) && !defined(__FreeBSD__) | ||
typedef long long off64_t; | ||
#endif | ||
#if defined(OSFV5) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...rks/unixbench/files/patch-pgms:cleanup.sh → ...rks/unixbench/files/patch-pgms_cleanup.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...marks/unixbench/files/patch-pgms:multi.sh → ...marks/unixbench/files/patch-pgms_multi.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
benchmarks/unixbench/files/patch-pgms:tst.sh → benchmarks/unixbench/files/patch-pgms_tst.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
benchmarks/unixbench/files/patch-execl.c → benchmarks/unixbench/files/patch-src_execl.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
TIMESTAMP = 1464949238 | ||
SHA256 (bbuchfink-diamond-v0.8.5_GH0.tar.gz) = 8ba092647af7c980ddd83acc6686acd2ba18744774c669027859dbaec644fda3 | ||
SIZE (bbuchfink-diamond-v0.8.5_GH0.tar.gz) = 203133 | ||
TIMESTAMP = 1466172154 | ||
SHA256 (bbuchfink-diamond-v0.8.6_GH0.tar.gz) = 94b755f5536fd2c8a009904efc2271aac7bfd9a44a74490fe12944b05c1cba64 | ||
SIZE (bbuchfink-diamond-v0.8.6_GH0.tar.gz) = 206973 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,19 +5,15 @@ PORTNAME= charmap | |
PORTVERSION= 0.2 | ||
PORTREVISION= 5 | ||
CATEGORIES= deskutils gnustep | ||
MASTER_SITES= SAVANNAH | ||
MASTER_SITES= http://www.sourcefiles.org/Utilities/GUI/ | ||
|
||
MAINTAINER= [email protected] | ||
COMMENT= Character map for GNUstep | ||
|
||
BROKEN= unfetchable | ||
DEPRECATED= Broken for more than 6 months | ||
EXPIRATION_DATE= 2016-07-04 | ||
|
||
LICENSE= GPLv2 | ||
|
||
USES= gnustep | ||
USE_GNUSTEP= back build | ||
USE_GNUSTEP= back base build gui | ||
|
||
post-install: | ||
${STRIP_CMD} ${STAGEDIR}${PREFIX}/GNUstep/System/Applications/Charmap.app/Charmap | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,20 +2,16 @@ | |
# $FreeBSD$ | ||
|
||
PORTNAME= directfb | ||
PORTVERSION= 1.4.13 | ||
PORTREVISION= 7 | ||
PORTVERSION= 1.4.17 | ||
CATEGORIES= devel | ||
MASTER_SITES= http://www.directfb.org/downloads/Core/${DISTNAME:R}/ | ||
MASTER_SITES= http://sources.buildroot.net/ | ||
DISTNAME= DirectFB-${PORTVERSION} | ||
|
||
MAINTAINER= [email protected] | ||
COMMENT= Graphic development lightweight API | ||
|
||
LICENSE= LGPL21 | ||
|
||
BROKEN= Does not fetch | ||
DEPRECATED= Broken for more than 6 months | ||
EXPIRATION_DATE= 2016-07-04 | ||
LIB_DEPENDS= libpng.so:graphics/png | ||
|
||
OPTIONS_DEFINE= FREETYPE X11 SDL UNIQUE TEST DOCS | ||
|
@@ -31,10 +27,9 @@ USES= cpe gmake jpeg libtool ncurses pathfix perl5 pkgconfig | |
USE_LDCONFIG= yes | ||
USE_PERL5= build | ||
PORTDOCS= * | ||
EXTRA_PATCHES= ${FILESDIR}/extra-libpng15:-p1 | ||
|
||
DIRECTFB_SHLIB= 5.0.8 # LT_BINARY.LT_AGE.LT_REVISION | ||
DIRECTFB_BIN= 5 # LT_BINARY | ||
DIRECTFB_SHLIB= 6.0.11 # LT_BINARY.LT_AGE.LT_REVISION | ||
DIRECTFB_BIN= ${DIRECTFB_SHLIB:R:R} # LT_BINARY | ||
PLIST_SUB+= DIRECTFB_VERSION="${PORTVERSION}" \ | ||
DIRECTFB_RELEASE="${PORTVERSION:R}" \ | ||
DIRECTFB_SHLIB="${DIRECTFB_SHLIB}" \ | ||
|
@@ -55,7 +50,7 @@ DOCS_BUILD_DEPENDS= man2html:textproc/man2html | |
FREETYPE_LIB_DEPENDS= libfreetype.so:print/freetype2 | ||
FREETYPE_CONFIGURE_ENABLE= freetype | ||
X11_USE= XORG=x11,xext,xproto | ||
X11_CONFIGURE_ENABLE= --x11 | ||
X11_CONFIGURE_ENABLE= x11 | ||
SDL_USE= sdl | ||
SDL_CONFIGURE_ENABLE= sdl | ||
UNIQUE_CONFIGURE_ENABLE= unique | ||
|
@@ -83,7 +78,7 @@ post-patch: | |
@${GREP} -lr alloca\.h ${WRKSRC} | ${XARGS} \ | ||
${REINPLACE_CMD} -e 's|<alloca\.h>|<stdlib.h>|g' | ||
|
||
post-install: | ||
post-install-DOCS-on: | ||
@${MKDIR} ${STAGEDIR}${DOCSDIR}/html | ||
.for f in AUTHORS ChangeLog NEWS README TODO fb.modes docs/README.screenshots docs/*.html | ||
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
SHA256 (DirectFB-1.4.13.tar.gz) = ff85ed00ce76c9f6ca7833534c1cbf00358c9a5450dc1649ce3bc283056ab9b5 | ||
SIZE (DirectFB-1.4.13.tar.gz) = 3113159 | ||
SHA256 (DirectFB-1.4.17.tar.gz) = 065a8e3a655b7e633eb1c2cdf55956496a29e0b8bd8ca700f0a5507909c864de | ||
SIZE (DirectFB-1.4.17.tar.gz) = 3346983 |
Oops, something went wrong.