*/*: sync with upstream

Taken from: FreeBSD
This commit is contained in:
Franco Fichtner 2015-08-07 08:26:23 +02:00
parent fe6b2457ec
commit b24d17cf65
113 changed files with 705 additions and 303 deletions

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= wordpress
PORTVERSION= 4.2.2
PORTVERSION= 4.2.4
DISTVERSIONSUFFIX= -zh_TW
CATEGORIES= chinese www
MASTER_SITES= http://tw.wordpress.org/ \

View file

@ -1,2 +1,2 @@
SHA256 (wordpress-4.2.2-zh_TW.tar.gz) = 4fad7a09f11d68ef8826bed6c63eaeb7dcf0c0c19f97772b5f92da3d1bd7297c
SIZE (wordpress-4.2.2-zh_TW.tar.gz) = 6690425
SHA256 (wordpress-4.2.4-zh_TW.tar.gz) = fb125990fb099d5eca0b27b5c07f80cd95ad9f2319b1e862d4fa50961eddf51c
SIZE (wordpress-4.2.4-zh_TW.tar.gz) = 6700208

View file

@ -3,6 +3,7 @@
PORTNAME= evolution-data-server
PORTVERSION= 3.16.4
PORTREVISION= 1
CATEGORIES= databases gnome
MASTER_SITES= GNOME
DIST_SUBDIR= gnome3

View file

@ -374,7 +374,7 @@ libdata/pkgconfig/libedata-cal-%%EVO_VERSION%%.pc
libdata/pkgconfig/libedataserver-%%EVO_VERSION%%.pc
libdata/pkgconfig/libedataserverui-%%EVO_VERSION%%.pc
libexec/camel-index-control-%%EVO_VERSION%%
libexec/camel-lock-helper-%%EVO_VERSION%%
@(,mail,2755) libexec/camel-lock-helper-%%EVO_VERSION%%
libexec/evolution-addressbook-factory
libexec/evolution-addressbook-factory-subprocess
libexec/evolution-calendar-factory

View file

@ -2,7 +2,7 @@
PORTNAME= virt-manager
PORTVERSION= 1.1.0
PORTREVISION= 4
PORTREVISION= 5
CATEGORIES= deskutils net-mgmt
MASTER_SITES= http://virt-manager.org/download/sources/${PORTNAME}/ \
LOCAL/jgh/deskutils/${PORTNAME}/
@ -29,21 +29,21 @@ PYDISTUTILS_CONFIGURE_TARGET= configure
PYDISTUTILS_CONFIGUREARGS= --prefix=${PREFIX}
USES= python:2.7 gettext shebangfix
USE_PYTHON= autoplist distutils
NO_ARCH= yes
USE_GNOME= introspection:run intltool librsvg2 pygobject3
INSTALLS_ICONS= yes
python_OLD_CMD= /usr/bin/python2
SHEBANG_FILES= virt-manager \
virt-install \
virt-clone \
virt-convert
virt-convert \
virt-xml
GLIB_SCHEMAS= org.virt-manager.virt-manager.gschema.xml
post-patch:
@${REINPLACE_CMD} -e '1s|/usr/bin/python2|${python_CMD}|' ${WRKSRC}/virt-xml
#add workaround for two autoplist functions
post-install:
@${MKDIR} ${STAGEDIR}/${PREFIX}/share/glib-2.0/schemas/

View file

@ -4508,6 +4508,7 @@
SUBDIR += rubygem-abstract
SUBDIR += rubygem-actionpack-action_caching
SUBDIR += rubygem-actionview
SUBDIR += rubygem-actionview41
SUBDIR += rubygem-active_scaffold
SUBDIR += rubygem-activejob
SUBDIR += rubygem-activemessaging

View file

@ -12,7 +12,7 @@ PKGNAMESUFFIX= 213
# note: before committing to this port, contact portmgr to arrange for an
# experimental ports run. Untested commits may be backed out at portmgr's
# discretion.
MAINTAINER= autotools@FreeBSD.org
MAINTAINER= tijl@FreeBSD.org
COMMENT= Automatically configure source code on many Un*x platforms (legacy 2.13)
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4

View file

@ -10,7 +10,7 @@ DISTFILES= # none
# note: before committing to this port, contact portmgr to arrange for an
# experimental ports run. Untested commits may be backed out at portmgr's
# discretion.
MAINTAINER= autotools@FreeBSD.org
MAINTAINER= tijl@FreeBSD.org
COMMENT= Autotools meta-port
RUN_DEPENDS= libtoolize:${PORTSDIR}/devel/libtool \

View file

@ -2,11 +2,10 @@
# $FreeBSD$
PORTNAME= cdash
PORTVERSION= 2.0.2
PORTREVISION= 2
PORTVERSION= 2.2.3
CATEGORIES= devel
MASTER_SITES= http://www.cdash.org/download/
DISTNAME= CDash-${PORTVERSION}
MASTER_SITES= http://www.cdash.org/wp-content/uploads/2014/11/
DISTNAME= CDash-2-2-3
MAINTAINER= ports@FreeBSD.org
COMMENT= Web-based software testing server
@ -21,10 +20,10 @@ USES= cmake:outsource zip
CMAKE_ARGS+= -DCDASH_DB_NAME:STRING=cdash \
-DCDASH_DB_LOGIN:STRING=cdash \
-DCDASH_DB_TYPE:STRING=${DB_TYPE}
USE_PHP= curl gd xsl
USE_PHP= curl gd pdo session xsl zlib
WRKSRC= ${WRKDIR}/${DISTNAME:S/./-/g}
PLIST_SUB= WWWOWN="${WWWOWN}"
PLIST_SUB= WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}"
SUB_FILES= pkg-message
SUB_LIST+= DB_TYPE=${DB_TYPE}
@ -32,19 +31,22 @@ SUB_LIST+= DB_TYPE=${DB_TYPE}
.if ${PORT_OPTIONS:MMYSQL}
USE_MYSQL= yes
USE_PHP+= mysql
USE_PHP+= mysql pdo_mysql
DB_TYPE= mysql
.endif
.if ${PORT_OPTIONS:MPGSQL}
USES+= pgsql
USE_PHP+= pgsql
USE_PHP+= pgsql pdo_pgsql
DB_TYPE= pgsql
.endif
do-install:
${MKDIR} ${WRKSRC}/rss
${CP} ${WRKSRC}/backup/.htaccess ${WRKSRC}/rss/.htaccess
${MKDIR} ${STAGEDIR}${PREFIX}/www/CDash
${RM} -f ${WRKSRC}/CMakeLists.txt.orig
${FIND} ${WRKSRC} -name "*.orig" -delete
${MV} ${WRKSRC}/cdash/config.local.php ${WRKSRC}/cdash/config.local.sample.php
cd ${WRKSRC} && ${COPYTREE_SHARE} \* ${STAGEDIR}${PREFIX}/www/CDash
.include <bsd.port.mk>

View file

@ -1,2 +1,2 @@
SHA256 (CDash-2.0.2.zip) = e50a7d0ad321ba2739d7210dea56c3d06006dc5a0677f2607b71fd2747eb91d1
SIZE (CDash-2.0.2.zip) = 2394352
SHA256 (CDash-2-2-3.zip) = 712c8beb7b379d356a27ed3f4829566245da8f53e89ff5fd688ae67b204f285b
SIZE (CDash-2-2-3.zip) = 2536252

View file

@ -0,0 +1,10 @@
--- cdash/common.php.orig 2015-08-05 14:20:51.000000000 +0000
+++ cdash/common.php 2015-08-05 14:21:39.038187339 +0000
@@ -20,6 +20,7 @@
if (PHP_VERSION >= 5) {
// Emulate the old xslt library functions
+ libxml_disable_entity_loader(false);
function xslt_create() {
return new XsltProcessor();
}

View file

@ -12,6 +12,8 @@ www/CDash/ajax/expectedbuildgroup.php
www/CDash/ajax/expectedinfo.php
www/CDash/ajax/finduserproject.php
www/CDash/ajax/findusers.php
www/CDash/ajax/getfeed.php
www/CDash/ajax/getviewcoverage.php
www/CDash/ajax/showbuildhistory.php
www/CDash/ajax/showbuildtimegraph.php
www/CDash/ajax/showbuildupdategraph.php
@ -33,7 +35,6 @@ www/CDash/api/getversion.php
www/CDash/api/hasfile.php
www/CDash/api/index.php
www/CDash/autoRemoveBuilds.php
www/CDash/backup.xsl
www/CDash/backup/.htaccess
www/CDash/backup/README.txt
www/CDash/buildOverview.php
@ -45,9 +46,10 @@ www/CDash/cdash/ChangeLog.txt
www/CDash/cdash/Copyright.txt
www/CDash/cdash/autoremove.php
www/CDash/cdash/bugurl.php
www/CDash/cdash/cdashmail.php
www/CDash/cdash/clientsubmit.php
www/CDash/cdash/common.php
www/CDash/cdash/config.local.php
www/CDash/cdash/config.local.sample.php
www/CDash/cdash/config.php
www/CDash/cdash/createRSS.php
www/CDash/cdash/ctestparser.php
@ -65,6 +67,8 @@ www/CDash/cdash/processsubmissions.php
www/CDash/cdash/repository.php
www/CDash/cdash/sendemail.php
www/CDash/cdash/version.php
www/CDash/colorblind.css
www/CDash/common.css
www/CDash/createProject.php
www/CDash/createProject.xsl
www/CDash/displayImage.php
@ -72,6 +76,8 @@ www/CDash/editSite.php
www/CDash/editSite.xsl
www/CDash/editUser.php
www/CDash/editUser.xsl
www/CDash/error.php
www/CDash/error.xsl
www/CDash/favicon.ico
www/CDash/filterdataFunctions.php
www/CDash/filterdataTemplate.xsl
@ -83,6 +89,7 @@ www/CDash/headeradminproject.xsl
www/CDash/headerback.xsl
www/CDash/headscripts.xsl
www/CDash/help.html
www/CDash/htaccess.in
www/CDash/images/Calendar.gif
www/CDash/images/Closed.gif
www/CDash/images/DownBlack.gif
@ -97,6 +104,9 @@ www/CDash/images/RightBlack.gif
www/CDash/images/activity-level.png
www/CDash/images/advanced.png
www/CDash/images/asc.gif
www/CDash/images/back_disabled.png
www/CDash/images/back_enabled.png
www/CDash/images/back_enabled_hover.png
www/CDash/images/bg.gif
www/CDash/images/bg1.gif
www/CDash/images/bgfo.gif
@ -121,13 +131,18 @@ www/CDash/images/error.png
www/CDash/images/feed-icon16x16.png
www/CDash/images/filecoverage.png
www/CDash/images/filter.gif
www/CDash/images/first.png
www/CDash/images/flag.png
www/CDash/images/flaggreen.gif
www/CDash/images/folder.png
www/CDash/images/forward_disabled.png
www/CDash/images/forward_enabled.png
www/CDash/images/forward_enabled_hover.png
www/CDash/images/graph.png
www/CDash/images/help.gif
www/CDash/images/hide.png
www/CDash/images/invite.png
www/CDash/images/last.png
www/CDash/images/loading.gif
www/CDash/images/logo2.gif
www/CDash/images/mail.png
@ -143,13 +158,19 @@ www/CDash/images/platform_freebsd.png
www/CDash/images/platform_linux.png
www/CDash/images/platform_mac.png
www/CDash/images/platform_windows.png
www/CDash/images/prev.png
www/CDash/images/previous.png
www/CDash/images/progressbar.gif
www/CDash/images/progressbg_green.gif
www/CDash/images/progressbg_orange.gif
www/CDash/images/progressbg_red.gif
www/CDash/images/refresh.png
www/CDash/images/settings.png
www/CDash/images/show.png
www/CDash/images/smiley-bad.png
www/CDash/images/smiley-good.png
www/CDash/images/sort_asc.png
www/CDash/images/sort_asc_disabled.png
www/CDash/images/sort_both.png
www/CDash/images/sort_desc.png
www/CDash/images/sort_desc_disabled.png
www/CDash/images/star.png
www/CDash/images/subproject.png
www/CDash/images/systemtray.png
@ -202,6 +223,7 @@ www/CDash/javascript/cdashBuildGroup.js
www/CDash/javascript/cdashClient.js
www/CDash/javascript/cdashCoverageGraph.js
www/CDash/javascript/cdashCreateProject.js
www/CDash/javascript/cdashFeed.js
www/CDash/javascript/cdashFilters.js
www/CDash/javascript/cdashIndexTable.js
www/CDash/javascript/cdashManageCoverageSorter.js
@ -215,8 +237,10 @@ www/CDash/javascript/cdashUpgrade.js
www/CDash/javascript/cdashUploadFilesSorter.js
www/CDash/javascript/cdashUser.js
www/CDash/javascript/cdashUserLabels.js
www/CDash/javascript/cdashViewCoverage.js
www/CDash/javascript/cdashmenu.js
www/CDash/javascript/excanvas.js
www/CDash/javascript/images/next.png
www/CDash/javascript/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png
www/CDash/javascript/images/ui-bg_flat_15_cd0a0a_40x100.png
www/CDash/javascript/images/ui-bg_glass_100_e4f1fb_1x400.png
@ -231,16 +255,21 @@ www/CDash/javascript/images/ui-icons_2e83ff_256x240.png
www/CDash/javascript/images/ui-icons_3d80b3_256x240.png
www/CDash/javascript/images/ui-icons_72a7cf_256x240.png
www/CDash/javascript/images/ui-icons_ffffff_256x240.png
www/CDash/javascript/je_compare-1.0.0.min.js
www/CDash/javascript/je_compare_style-1.0.0.css
www/CDash/javascript/jqModal.css
www/CDash/javascript/jqModal.js
www/CDash/javascript/jquery-1.6.2.js
www/CDash/javascript/jquery-ui-1.8.16.css
www/CDash/javascript/jquery-ui-1.8.16.min.js
www/CDash/javascript/jquery.cookie.js
www/CDash/javascript/jquery.dataTables.css
www/CDash/javascript/jquery.dataTables.min.js
www/CDash/javascript/jquery.flot.min.js
www/CDash/javascript/jquery.flot.pie.js
www/CDash/javascript/jquery.flot.selection.min.js
www/CDash/javascript/jquery.metadata.js
www/CDash/javascript/jquery.mobile-1.4.0.min.js
www/CDash/javascript/jquery.qtip.min.css
www/CDash/javascript/jquery.qtip.min.js
www/CDash/javascript/jquery.tablesorter.js
@ -271,6 +300,8 @@ www/CDash/manageClient.php
www/CDash/manageClient.xsl
www/CDash/manageCoverage.php
www/CDash/manageCoverage.xsl
www/CDash/manageMeasurements.php
www/CDash/manageMeasurements.xsl
www/CDash/manageProjectRoles.php
www/CDash/manageProjectRoles.xsl
www/CDash/manageSubproject.php
@ -314,6 +345,7 @@ www/CDash/models/dailyupdatefile.php
www/CDash/models/dynamicanalysis.php
www/CDash/models/dynamicanalysisdefect.php
www/CDash/models/errorlog.php
www/CDash/models/feed.php
www/CDash/models/image.php
www/CDash/models/label.php
www/CDash/models/labelemail.php
@ -337,7 +369,9 @@ www/CDash/register.php
www/CDash/register.xsl
www/CDash/removeBuilds.php
www/CDash/removeBuilds.xsl
www/CDash/robots.txt
www/CDash/router.php
www/CDash/rss/.htaccess
www/CDash/scheduleSummary.php
www/CDash/scheduleSummary.xsl
www/CDash/scripts/cdash_client_common.ctest
@ -352,7 +386,7 @@ www/CDash/sql/mysql/cdash-upgrade-1.2-1.4.sql
www/CDash/sql/mysql/cdash-upgrade-1.4-1.6.sql
www/CDash/sql/mysql/cdash-upgrade-1.6-1.8.sql
www/CDash/sql/mysql/cdash-upgrade-1.8-2.0.sql
www/CDash/sql/mysql/cdash-upgrade-2.0-2.1.sql
www/CDash/sql/mysql/cdash-upgrade-2.0-2.2.sql
www/CDash/sql/mysql/cdash.sql
www/CDash/sql/mysqlcompat.patch
www/CDash/sql/pgsql/cdash-upgrade-0-0.8.sql
@ -362,7 +396,7 @@ www/CDash/sql/pgsql/cdash-upgrade-1.2-1.4.sql
www/CDash/sql/pgsql/cdash-upgrade-1.4-1.6.sql
www/CDash/sql/pgsql/cdash-upgrade-1.6-1.8.sql
www/CDash/sql/pgsql/cdash-upgrade-1.8-2.0.sql
www/CDash/sql/pgsql/cdash-upgrade-2.0-2.1.sql
www/CDash/sql/pgsql/cdash-upgrade-2.0-2.2.sql
www/CDash/sql/pgsql/cdash.ext.sql
www/CDash/sql/pgsql/cdash.sql
www/CDash/submit.php
@ -622,7 +656,10 @@ www/CDash/tests/data/smile.gif
www/CDash/tests/data/smile2.gif
www/CDash/tests/kwtest/kw_db.php
www/CDash/tests/kwtest/kw_test_manager.php
www/CDash/tests/kwtest/kw_unlink.php
www/CDash/tests/kwtest/kw_web_tester.php
www/CDash/tests/kwtest/simpletest/VERSION
www/CDash/tests/kwtest/simpletest/arguments.php
www/CDash/tests/kwtest/simpletest/authentication.php
www/CDash/tests/kwtest/simpletest/autorun.php
www/CDash/tests/kwtest/simpletest/browser.php
@ -644,6 +681,8 @@ www/CDash/tests/kwtest/simpletest/invoker.php
www/CDash/tests/kwtest/simpletest/mock_objects.php
www/CDash/tests/kwtest/simpletest/page.php
www/CDash/tests/kwtest/simpletest/parser.php
www/CDash/tests/kwtest/simpletest/php_parser.php
www/CDash/tests/kwtest/simpletest/recorder.php
www/CDash/tests/kwtest/simpletest/reflection_php4.php
www/CDash/tests/kwtest/simpletest/reflection_php5.php
www/CDash/tests/kwtest/simpletest/remote.php
@ -655,6 +694,7 @@ www/CDash/tests/kwtest/simpletest/simpletest.php
www/CDash/tests/kwtest/simpletest/socket.php
www/CDash/tests/kwtest/simpletest/tag.php
www/CDash/tests/kwtest/simpletest/test_case.php
www/CDash/tests/kwtest/simpletest/tidy_parser.php
www/CDash/tests/kwtest/simpletest/unit_tester.php
www/CDash/tests/kwtest/simpletest/url.php
www/CDash/tests/kwtest/simpletest/user_agent.php
@ -812,6 +852,8 @@ www/CDash/viewDynamicAnalysisFile.php
www/CDash/viewDynamicAnalysisFile.xsl
www/CDash/viewErrorLog.php
www/CDash/viewErrorLog.xsl
www/CDash/viewFeed.php
www/CDash/viewFeed.xsl
www/CDash/viewFiles.php
www/CDash/viewFiles.xsl
www/CDash/viewIssues.php
@ -833,6 +875,7 @@ www/CDash/xml_handlers/abstract_handler.php
www/CDash/xml_handlers/build_handler.php
www/CDash/xml_handlers/configure_handler.php
www/CDash/xml_handlers/coverage_handler.php
www/CDash/xml_handlers/coverage_junit_handler.php
www/CDash/xml_handlers/coverage_log_handler.php
www/CDash/xml_handlers/dynamic_analysis_handler.php
www/CDash/xml_handlers/note_handler.php
@ -840,7 +883,14 @@ www/CDash/xml_handlers/project_handler.php
www/CDash/xml_handlers/sax_handler.php
www/CDash/xml_handlers/stack.php
www/CDash/xml_handlers/testing_handler.php
www/CDash/xml_handlers/testing_junit_handler.php
www/CDash/xml_handlers/testing_nunit_handler.php
www/CDash/xml_handlers/update_handler.php
www/CDash/xml_handlers/upload_handler.php
@dir(%%WWWOWN%%,,) www/CDash/rss
@dir(%%WWWOWN%%,,) www/CDash/backup
@owner %%WWWOWN%%
@group %%WWWGRP%%
@dir www/CDash/backup
@dir www/CDash/rss
@dir www/CDash/upload
@owner
@group

View file

@ -23,6 +23,8 @@ USES= libtool python
# LDFLAGS detection wrong
LDFLAGS= -L${LOCALBASE}/lib
MAKE_JOBS_UNSAFE= yes
post-install:
${INSTALL_DATA} ${WRKSRC}/jep.jar ${STAGEDIR}${JAVAJARDIR}/

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= robotframework-pabot
PORTVERSION= 0.13
PORTVERSION= 0.15
CATEGORIES= devel www python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,2 +1,2 @@
SHA256 (robotframework-pabot-0.13.tar.gz) = c7592d5a30f1b55310b8000aab9ed1f3182a42ce1bf4b88cc5eed03ac3e00db5
SIZE (robotframework-pabot-0.13.tar.gz) = 7398
SHA256 (robotframework-pabot-0.15.tar.gz) = c6a2cb12398945cfba3cb3b4c48553452ffa9b50e5552061dbc26b57c110661c
SIZE (robotframework-pabot-0.15.tar.gz) = 8329

View file

@ -0,0 +1,23 @@
# Created by: Torsten Zühlsdorff <ports@toco-domains.de>
# $FreeBSD$
PORTNAME= actionview
PORTVERSION= 4.1.12
CATEGORIES= devel rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= 41
MAINTAINER= ruby@FreeBSD.org
COMMENT= Rendering framework putting the V in MVC (part of Rails)
RUN_DEPENDS= rubygem-activesupport41>=${PORTVERSION}:${PORTSDIR}/devel/rubygem-activesupport41 \
rubygem-builder32>=3.2:${PORTSDIR}/devel/rubygem-builder32 \
rubygem-erubis>=2.7.0:${PORTSDIR}/www/rubygem-erubis
USE_RUBY= yes
USE_RUBYGEMS= yes
RUBYGEM_AUTOPLIST=yes
PORTSCOUT= limit:^4\.1
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (rubygem/actionview-4.1.12.gem) = 161c7d0d0e82a94c7b3ad3ddc7b916108810491edcbd4fcc27a128ac5cc468af
SIZE (rubygem/actionview-4.1.12.gem) = 158208

View file

@ -0,0 +1,3 @@
Simple, battle-tested conventions and helpers for building web pages.
WWW: http://www.rubyonrails.org

View file

@ -2,8 +2,8 @@
# $FreeBSD$
PORTNAME?= subversion
PORTVERSION= 1.8.13
PORTREVISION?= 2
PORTVERSION= 1.8.14
PORTREVISION?= 0
CATEGORIES+= devel
MASTER_SITES= APACHE/subversion
DIST_SUBDIR= subversion18

View file

@ -1,2 +1,2 @@
SHA256 (subversion18/subversion-1.8.13.tar.bz2) = 1099cc68840753b48aedb3a27ebd1e2afbcc84ddb871412e5d500e843d607579
SIZE (subversion18/subversion-1.8.13.tar.bz2) = 6863330
SHA256 (subversion18/subversion-1.8.14.tar.bz2) = 7f3883cdfcad4174e06dd94d6e3e8ec91856823268eebe60c924be76f5229a1f
SIZE (subversion18/subversion-1.8.14.tar.bz2) = 6850562

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
--- subversion/svn/util.c.orig 2013-07-10 04:00:05 UTC
+++ subversion/svn/util.c
@@ -66,6 +66,9 @@
--- subversion/svn/util.c.orig 2013-07-10 06:00:05.000000000 +0200
+++ subversion/svn/util.c 2015-07-30 13:00:04.642537000 +0200
@@ -66,6 +69,9 @@
#include "private/svn_client_private.h"
#include "private/svn_cmdline_private.h"
#include "private/svn_string_private.h"
@ -10,7 +10,7 @@
@@ -322,6 +325,70 @@ truncate_buffer_at_prefix(apr_size_t *ne
@@ -322,6 +328,70 @@ truncate_buffer_at_prefix(apr_size_t *ne
}
@ -81,7 +81,14 @@
#define EDITOR_EOF_PREFIX _("--This line, and those below, will be ignored--")
svn_error_t *
@@ -337,8 +404,38 @@ svn_cl__get_log_message(const char **log
@@ -334,11 +404,54 @@ svn_cl__get_log_message(const char **log
svn_stringbuf_t *default_msg = NULL;
struct log_msg_baton *lmb = baton;
svn_stringbuf_t *message = NULL;
+ svn_config_t *cfg;
+ const char *mfc_after, *sponsored_by;
+
+ cfg = lmb->config ? svn_hash_gets(lmb->config, SVN_CONFIG_CATEGORY_CONFIG) : NULL;
/* Set default message. */
default_msg = svn_stringbuf_create(APR_EOL_STR, pool);
@ -91,15 +98,24 @@
+ svn_stringbuf_appendcstr(default_msg, "Reviewed by:\t" APR_EOL_STR);
+ svn_stringbuf_appendcstr(default_msg, "Approved by:\t" APR_EOL_STR);
+ svn_stringbuf_appendcstr(default_msg, "Obtained from:\t" APR_EOL_STR);
+ svn_stringbuf_appendcstr(default_msg, "MFC after:\t" APR_EOL_STR);
+ svn_stringbuf_appendcstr(default_msg, "MFC after:\t");
+ svn_config_get(cfg, &mfc_after, SVN_CONFIG_SECTION_MISCELLANY, "freebsd-mfc-after", NULL);
+ if (mfc_after != NULL)
+ svn_stringbuf_appendcstr(default_msg, mfc_after);
+ svn_stringbuf_appendcstr(default_msg, APR_EOL_STR);
+ svn_stringbuf_appendcstr(default_msg, "MFH:\t\t" APR_EOL_STR);
+ svn_stringbuf_appendcstr(default_msg, "Relnotes:\t" APR_EOL_STR);
+ svn_stringbuf_appendcstr(default_msg, "Security:\t" APR_EOL_STR);
+ svn_stringbuf_appendcstr(default_msg, "Sponsored by:\t"
+ svn_stringbuf_appendcstr(default_msg, "Sponsored by:\t");
+ svn_config_get(cfg, &sponsored_by, SVN_CONFIG_SECTION_MISCELLANY, "freebsd-sponsored-by",
+#ifdef HAS_ORGANIZATION_NAME
+ ORGANIZATION_NAME
+ ORGANIZATION_NAME);
+#else
+ NULL);
+#endif
+ APR_EOL_STR);
+ if (sponsored_by != NULL)
+ svn_stringbuf_appendcstr(default_msg, sponsored_by);
+ svn_stringbuf_appendcstr(default_msg, APR_EOL_STR);
+ svn_stringbuf_appendcstr(default_msg, "Differential Revision:\t" APR_EOL_STR);
svn_stringbuf_appendcstr(default_msg, EDITOR_EOF_PREFIX);
- svn_stringbuf_appendcstr(default_msg, APR_EOL_STR APR_EOL_STR);
@ -121,7 +137,7 @@
*tmp_file = NULL;
if (lmb->message)
@@ -350,6 +447,7 @@ svn_cl__get_log_message(const char **log
@@ -350,6 +463,7 @@ svn_cl__get_log_message(const char **log
that follows it. */
truncate_buffer_at_prefix(&(log_msg_buf->len), log_msg_buf->data,
EDITOR_EOF_PREFIX);
@ -129,7 +145,7 @@
/* Make a string from a stringbuf, sharing the data allocation. */
log_msg_str->data = log_msg_buf->data;
@@ -470,6 +568,13 @@ svn_cl__get_log_message(const char **log
@@ -470,6 +584,13 @@ svn_cl__get_log_message(const char **log
if (message)
truncate_buffer_at_prefix(&message->len, message->data,
EDITOR_EOF_PREFIX);

View file

@ -216,7 +216,7 @@ post-install: ${MKREPOS_TARGET}
.if ${PORT_OPTIONS:MMOD_DAV_SVN}
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${APACHEMODDIR}/*.so
${MKDIR} ${STAGEDIR}${PREFIX}/${APACHEETCDIR}/modules.d
${CP} ${WRKDIR}/220_subversion.conf.sample ${STAGEDIR}${PREFIX}/${APACHEETCDIR}/modules.d
${INSTALL_DATA} ${WRKDIR}/220_subversion.conf.sample ${STAGEDIR}${PREFIX}/${APACHEETCDIR}/modules.d
.endif
.if !${PORT_OPTIONS:MSTATIC}

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= subversion
PORTVERSION= 1.7.20
PORTVERSION= 1.7.21
PORTREVISION?= 0
CATEGORIES+= devel
MASTER_SITES= APACHE/subversion
@ -38,7 +38,7 @@ OPTIONS_NAME= devel_subversion17
# ===============================================================
OPTIONS_SUB= yes
BDB_CONFIGURE_OFF= --without-berkeley-db
#BDB_CONFIGURE_OFF= --with-berkeley-db=no
BDB_USE= BDB=42+
GNOME_KEYRING_CONFIGURE_OFF= --without-gnome-keyring
@ -93,6 +93,11 @@ CFLAGS+= -fpic -DPIC
CFLAGS+= -DHAS_ORGANIZATION_NAME
.endif
# unbreak py-subversion
.if !${PORT_OPTIONS:MBDB}
CONFIGURE_ARGS+= --with-berkeley-db=no
.endif
.include <bsd.port.pre.mk>
pre-everything::

View file

@ -1,2 +1,2 @@
SHA256 (subversion17/subversion-1.7.20.tar.bz2) = 0d16f62d2ed1a152e26f8194ac3eb889ef9f1a1716959a43115266e8baa50068
SIZE (subversion17/subversion-1.7.20.tar.bz2) = 6014383
SHA256 (subversion17/subversion-1.7.21.tar.bz2) = efeb349c5ba6d529ff8e9730a2abd9cb70f276b249238a6b7f27ba7da1190620
SIZE (subversion17/subversion-1.7.21.tar.bz2) = 5996788

View file

@ -39,6 +39,15 @@
## KeepAlive on
## MaxKeepAliveRequests 1000
##
## # http://subversion.apache.org/docs/release-notes/1.7.html#server-performance-tuning
## # Calculate your own values!
## # For mod_dav_svn, a 1GB cache configuration with maximum data coverage looks like this
## <IfModule dav_svn_module>
## SVNInMemoryCacheSize 1048576
## SVNCacheFullTexts on
## SVNCacheTextDeltas on
## </IfModule>
##
## Multiple Repos with Digest auth:
## - AuthName is an arbitrary name that you choose for the authentication
## domain. Most browsers display this name in the dialog box when prompting
@ -46,7 +55,7 @@
## - AuthType specifies the type of authentication to use.
## - AuthUserFile specifies the location of the password file to use.
##
##<IfModule dav_module>
##<IfModule dav_svn_module>
##<Location /svn/>
## # Enable Subversion
## DAV svn

File diff suppressed because one or more lines are too long

View file

@ -7,6 +7,7 @@
SUBDIR += adsuck
SUBDIR += ares
SUBDIR += autotrust
SUBDIR += axfr2acl
SUBDIR += bind-tools
SUBDIR += bind10
SUBDIR += bind910
@ -33,6 +34,7 @@
SUBDIR += dnscheck
SUBDIR += dnscheckengine
SUBDIR += dnscrypt-proxy
SUBDIR += dnsdbck
SUBDIR += dnsflood
SUBDIR += dnshistory
SUBDIR += dnsjava
@ -170,6 +172,8 @@
SUBDIR += rbldnsd
SUBDIR += rbllookup
SUBDIR += rbllookup-ng
SUBDIR += renewck
SUBDIR += rpsl2acl
SUBDIR += rubygem-dnsruby
SUBDIR += rubygem-net-dns
SUBDIR += rubygem-public_suffix

22
dns/axfr2acl/Makefile Normal file
View file

@ -0,0 +1,22 @@
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
# $FreeBSD$
PORTNAME= axfr2acl
PORTVERSION= 1.00
CATEGORIES= dns perl5
MASTER_SITES= ftp://download.gnu.org.ua/pub/release/dnstools/ \
http://freebsd.nsu.ru/distfiles/
MAINTAINER= danfe@FreeBSD.org
COMMENT= Transfer A records from DNS zones and convert to BIND ACLs
LICENSE= GPLv3
RUN_DEPENDS= p5-Net-DNS>0:${PORTSDIR}/dns/p5-Net-DNS
USES= perl5
USE_PERL5= configure
PLIST_FILES= bin/axfr2acl man/man1/axfr2acl.1.gz
.include <bsd.port.mk>

2
dns/axfr2acl/distinfo Normal file
View file

@ -0,0 +1,2 @@
SHA256 (axfr2acl-1.00.tar.gz) = 00cae06ae4206e86ebbab31d8371dfa7ba9d505b5f0dcd107e64d789c39a36fe
SIZE (axfr2acl-1.00.tar.gz) = 5808

7
dns/axfr2acl/pkg-descr Normal file
View file

@ -0,0 +1,7 @@
axfr2acl transfers A records from the given DNS zones and converts them to
an ACL for use in BIND configuration files.
It is part of dnstools, a set of utilities for DNS management and related
tasks.
WWW: http://www.gnu.org.ua/software/dnstools/axfr2acl.html

23
dns/dnsdbck/Makefile Normal file
View file

@ -0,0 +1,23 @@
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
# $FreeBSD$
PORTNAME= dnsdbck
PORTVERSION= 1.00
CATEGORIES= dns perl5
MASTER_SITES= ftp://download.gnu.org.ua/pub/release/dnstools/ \
http://freebsd.nsu.ru/distfiles/
MAINTAINER= danfe@FreeBSD.org
COMMENT= Verify consistency of DNS information in an SQL database
LICENSE= GPLv3
RUN_DEPENDS= p5-Net-CIDR>0:${PORTSDIR}/net-mgmt/p5-Net-CIDR \
p5-Net-DNS>0:${PORTSDIR}/dns/p5-Net-DNS
USES= perl5
USE_PERL5= configure
PLIST_FILES= bin/dnsdbck man/man1/dnsdbck.1.gz
.include <bsd.port.mk>

2
dns/dnsdbck/distinfo Normal file
View file

@ -0,0 +1,2 @@
SHA256 (dnsdbck-1.00.tar.gz) = be9369b44ae132e6c3ead9e387e84a6f8599ce8864cb9d051321e1b16b8c8ebd
SIZE (dnsdbck-1.00.tar.gz) = 7813

6
dns/dnsdbck/pkg-descr Normal file
View file

@ -0,0 +1,6 @@
dnsdbck verifies consistency of DNS information in an SQL database.
It is part of dnstools, a set of utilities for DNS management and related
tasks.
WWW: http://www.gnu.org.ua/software/dnstools/dnsdbck.html

24
dns/renewck/Makefile Normal file
View file

@ -0,0 +1,24 @@
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
# $FreeBSD$
PORTNAME= renewck
PORTVERSION= 1.00
CATEGORIES= dns perl5
MASTER_SITES= ftp://download.gnu.org.ua/pub/release/dnstools/ \
http://freebsd.nsu.ru/distfiles/
MAINTAINER= danfe@FreeBSD.org
COMMENT= Check for expiring domains and send email notifications
LICENSE= GPLv3
RUN_DEPENDS= p5-Time-modules>0:${PORTSDIR}/devel/p5-Time-modules \
p5-Mail-Tools>0:${PORTSDIR}/mail/p5-Mail-Tools \
p5-GDBM>0:${PORTSDIR}/databases/p5-GDBM
USES= perl5
USE_PERL5= configure
PLIST_FILES= bin/renewck man/man1/renewck.1.gz
.include <bsd.port.mk>

2
dns/renewck/distinfo Normal file
View file

@ -0,0 +1,2 @@
SHA256 (renewck-1.00.tar.gz) = fabe933aae381839c32115b54b203e0b6a2bd200d3a63d2f75d135e4921c59b4
SIZE (renewck-1.00.tar.gz) = 7486

7
dns/renewck/pkg-descr Normal file
View file

@ -0,0 +1,7 @@
renewck checks expiration times of one or more domains and notifies user
via email about the domains that are approaching expiring.
It is part of dnstools, a set of utilities for DNS management and related
tasks.
WWW: http://www.gnu.org.ua/software/dnstools/renewck.html

22
dns/rpsl2acl/Makefile Normal file
View file

@ -0,0 +1,22 @@
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
# $FreeBSD$
PORTNAME= rpsl2acl
PORTVERSION= 1.00
CATEGORIES= dns perl5
MASTER_SITES= ftp://download.gnu.org.ua/pub/release/dnstools/ \
http://freebsd.nsu.ru/distfiles/
MAINTAINER= danfe@FreeBSD.org
COMMENT= Query set of RPSL database objects and convert to BIND ACLs
LICENSE= GPLv3
RUN_DEPENDS= p5-Net-CIDR>0:${PORTSDIR}/net-mgmt/p5-Net-CIDR
USES= perl5
USE_PERL5= configure
PLIST_FILES= bin/rpsl2acl man/man1/rpsl2acl.1.gz
.include <bsd.port.mk>

2
dns/rpsl2acl/distinfo Normal file
View file

@ -0,0 +1,2 @@
SHA256 (rpsl2acl-1.00.tar.gz) = f782f36eb7df009bf6c3f18181e65dbd1c8f31aa956e6ec49fad347b27726cf2
SIZE (rpsl2acl-1.00.tar.gz) = 4939

7
dns/rpsl2acl/pkg-descr Normal file
View file

@ -0,0 +1,7 @@
rpsl2acl queries a set of RPSL database objects (normally route-sets) and
converts them to an ACL for use in BIND configuration files.
It is part of dnstools, a set of utilities for DNS management and related
tasks.
WWW: http://www.gnu.org.ua/software/dnstools/rpsl2acl.html

View file

@ -3,8 +3,9 @@
PORTNAME= whoseip
PORTVERSION= 1.00
CATEGORIES= dns
MASTER_SITES= ftp://download.gnu.org.ua/pub/release/dnstools/
CATEGORIES= dns perl5
MASTER_SITES= ftp://download.gnu.org.ua/pub/release/dnstools/ \
http://freebsd.nsu.ru/distfiles/
MAINTAINER= danfe@FreeBSD.org
COMMENT= Get information about IP addresses: country code and network

View file

@ -1,4 +1,7 @@
whoseip returns information about IP addresses: country code and network
they belong to.
It is part of dnstools, a set of utilities for DNS management and related
tasks.
WWW: http://www.gnu.org.ua/software/dnstools/whoseip.html

View file

@ -3,7 +3,7 @@
PORTNAME= apache-openoffice
PORTVERSION= ${AOOVERSION1}.${AOOVERSION2}.${SVNREVISION}
PORTREVISION= 2
#PORTREVISION= 1
PORTEPOCH= 3
CATEGORIES= editors java
MASTER_SITES= http://ci.apache.org/projects/openoffice/milestones/${AOOVERSION}-${AOORC}-r${SVNREVISION}/source/ \
@ -100,7 +100,7 @@ AOOVERSION2= 2
AOOVERSION3= 0
# From solenv/inc/minor.mk SOURCEREVISION LAST_MINOR BUILD
AOOTAG= AOO420m1\(Build:9800\)
SVNREVISION= 1689959
SVNREVISION= 1694132
#AOORC=rc3
EXTSRC= ApacheOpenOffice.ext_sources.${AOOVERSION1}.x.x.20150707.tar.gz
@ -170,33 +170,21 @@ MMEDIA_USE= GSTREAMER=yes
.include <${FILESDIR}/Makefile.localized>
.if ${COMPILER_TYPE} == clang
. if ${COMPILER_VERSION} < 35 && ${ARCH} == amd64
BUILD_DEPENDS+= clang35:${PORTSDIR}/lang/clang35
CPP= clang-cpp35
CC= clang35
CXX= clang++35
. endif
CPPFLAGS+= -I${LOCALBASE}/include
.else
USE_GCC= yes
SUBST= "s/-fexceptions/& -fno-enforce-eh-specs/;s/-DHAVE_STL_INCLUDE_PATH/-DBOOST_TR1_DISABLE_INCLUDE_NEXT -DBOOST_TR1_GCC_INCLUDE_PATH=c++/"
.endif
.if ${ARCH} == amd64
FREEBSD_ENV_SET= FreeBSDAMDEnv.Set.sh
.else
FREEBSD_ENV_SET= FreeBSDX86Env.Set.sh
.endif
LOCALIZED_LANG?= en-US
PACKAGE_PREFIX= Apache_OpenOffice
.if ${ARCH} == amd64
PACKAGE_MIDDLE= ${PORTVERSION}_${OPSYS}_x86-64
.else
FREEBSD_ENV_SET= FreeBSDX86Env.Set.sh
PACKAGE_MIDDLE= ${PORTVERSION}_${OPSYS}_x86
.endif
PACKAGE_PREFIX= Apache_OpenOffice
LOCALIZED_LANG?= en-US
.if ${PORT_OPTIONS:MCCACHE} || defined(WITH_CCACHE)
BUILD_DEPENDS+= ccache:${PORTSDIR}/devel/ccache
@ -308,6 +296,7 @@ post-extract:
${TAR} -C ${WRKSUBDIR} -xzf ${DISTDIR}/${DIST_SUBDIR}/${EXTSRC}
${CP} ${DISTDIR}/${DIST_SUBDIR}/unowinreg.dll ${WRKSRC}/external/unowinreg/
${RM} -rf ${WRKSRC}/l10n
${LN} -sf ${UNZIP_CMD} ${WRKSRC}/solenv/bin/unzip
${SED} -e '\|^For main/vcl/unx/generic/fontmanager/parseAFM|,/^__/p' \
-e '\|^For PostScript(R) AFM|,/^__/p' \
-e d ${WRKSRC}/LICENSE > ${LICENSE_FILE_ADOBE}
@ -338,27 +327,28 @@ post-extract:
-e d ${WRKSRC}/LICENSE > ${LICENSE_FILE_W3C}
post-patch:
.if defined (USE_GCC)
${REINPLACE_CMD} -e ${SUBST} ${WRKSRC}/solenv/gbuild/platform/freebsd.mk
${REINPLACE_CMD} -e ${SUBST} ${WRKSRC}/solenv/inc/unxfbsd.mk
.endif
.if ${ARCH} == i386
# g++49 -Os sometimes leaves inline class methods undefined
# autodoc core dumps when built with with -Os clang 3.6 on i386
if [ ${CXX} = g++49 -o \
${COMPILER_TYPE} = clang -a ${COMPILER_VERSION} = 36 ]; then \
${REINPLACE_CMD} -e "s/ := -Os/ := -O0/" ${WRKSRC}/solenv/gbuild/platform/freebsd.mk; \
${REINPLACE_CMD} -e "s/=-Os /=-O0 /" ${WRKSRC}/solenv/inc/unxfbsdi.mk; \
.if ${COMPILER_TYPE} == gcc
# g++49 -Os sometimes leaves inline class methods undefined,
# affects fmgridif.cxx and ColumnControl.cxx
# See: <https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65009>
if [ ${CXX} = g++49 ]; then \
${REINPLACE_CMD} -e "s/ := -Os/ := -Os -fno-devirtualize -fno-devirtualize-speculatively/" ${WRKSRC}/solenv/gbuild/platform/freebsd.mk; \
${REINPLACE_CMD} -e "s/=-Os /=-Os -fno-devirtualize -fno-devirtualize-speculatively /" ${WRKSRC}/solenv/inc/unxfbsdi.mk; \
fi
.elif ${ARCH} == i386 && ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} == 36
# autodoc and uno (bridgetest) core dump when built with with -Os
# on i386, affects file.cxx and bridgetest.cxx
# Using -O2 optimiztion works, and -Os is essentially -O2 with out
# loop unrolling.
# Changing optimization in just unxfbsdi.mk is sufficient to get
# a successful build, but change it in both places to avoid the
# possibility of obscure runtime problems.
${REINPLACE_CMD} -e "s/=-Os /=-O2 -fno-unroll-loops /" ${WRKSRC}/solenv/inc/unxfbsdi.mk
${REINPLACE_CMD} -e "s/ := -Os/ := -O2 -fno-unroll-loops/" ${WRKSRC}/solenv/gbuild/platform/freebsd.mk
.endif
pre-configure:
${LN} -sf ${UNZIP_CMD} ${WRKSRC}/solenv/bin/unzip
do-build:
cd ${WRKSUBDIR} ; ${PRINTF} "[repositories]\n" > source_config
cd ${WRKSUBDIR} ; ${PRINTF} "main=active\n" >> source_config
cd ${WRKSUBDIR} ; ${PRINTF} "extras=active\n" >> source_config
${PRINTF} "[repositories]\nmain=active\nextras=active\n" > ${WRKSUBDIR}/source_config
cd ${WRKSRC} ; ./bootstrap
#
# numproc controls the number of parallel makes.
@ -375,27 +365,27 @@ do-build:
# * dmproc >= numproc
# * dmproc <= 2*numproc if MAKE_JOBS_NUMBER <= 3
#
cd ${WRKSRC} ; . ${FREEBSD_ENV_SET} ; cd instsetoo_native/util ; \
export LANG=C LC_ALL=C FBSD_LDFLAGS="${LDFLAGS}" ; \
if [ ${MAKE_JOBS_NUMBER} -le 3 ] ; then \
numproc=1 ; dmproc=${MAKE_JOBS_NUMBER} ; \
if [ ${MAKE_JOBS_NUMBER} -le 3 ] ; then \
numproc=1 ; dmproc=${MAKE_JOBS_NUMBER} ; \
else \
a=1 ; \
while [ $$(( 2 * $${a} * $${a} )) -lt ${MAKE_JOBS_NUMBER} ]; do \
a=$$(( $${a} + 1 )) ; \
done ; \
b=$$(( $${a} + 1 )) ; \
ad=$$(( ( ${MAKE_JOBS_NUMBER} + $${a} - 1 ) / $${a} )) ; \
ap=$$(( $${a} * $${ad} )) ; \
bd=$$(( ( ${MAKE_JOBS_NUMBER} + $${b} - 1 ) / $${b} )) ; \
bp=$$(( $${b} * $${bd} )) ; \
if [ $${ap} -le $${bp} ]; then \
numproc=$${a} ; dmproc=$${ad} ; \
else \
a=1 ; \
while [ $$(( 2 * $${a} * $${a} )) -lt ${MAKE_JOBS_NUMBER} ]; do \
a=$$(( $${a} + 1 )) ; \
done ; \
b=$$(( $${a} + 1 )) ; \
ad=$$(( ( ${MAKE_JOBS_NUMBER} + $${a} - 1 ) / $${a} )) ; \
ap=$$(( $${a} * $${ad} )) ; \
bd=$$(( ( ${MAKE_JOBS_NUMBER} + $${b} - 1 ) / $${b} )) ; \
bp=$$(( $${b} * $${bd} )) ; \
if [ $${ap} -le $${bp} ]; then \
numproc=$${a} ; dmproc=$${ad} ; \
else \
numproc=$${b} ; dmproc=$${bd} ; \
fi ; \
numproc=$${b} ; dmproc=$${bd} ; \
fi ; \
build.pl --all -P$${numproc} -- -P$${dmproc}
fi ; \
cd ${WRKSRC}/instsetoo_native ; \
. ../${FREEBSD_ENV_SET} ; \
LANG=C LC_ALL=C build.pl --all -P$${numproc} -- -P$${dmproc}
do-install:
cd ${WRKSRC}/instsetoo_native/unxfbsd?.pro/Apache_OpenOffice/archive/install/${LOCALIZED_LANG}/ ; ${LS} *.tar.?z > ${WRKDIR}/INSTALLFILES

View file

@ -1,5 +1,5 @@
SHA256 (openoffice/apache-openoffice-r1689959-src.tar.xz) = 22f66a8d19d1bb3355370875628f5bc44ec02c7ce75fb57021ced1834eb8da29
SIZE (openoffice/apache-openoffice-r1689959-src.tar.xz) = 215148292
SHA256 (openoffice/apache-openoffice-r1694132-src.tar.xz) = 861f9e7c559a3bc345c4a3e5e94fa15683259ee00692034833a40d03bdb2ddce
SIZE (openoffice/apache-openoffice-r1694132-src.tar.xz) = 215178940
SHA256 (openoffice/unowinreg.dll) = f563e522922133db9340b0306711c2d8767cc3481dd9e7d9b0d059906d12653c
SIZE (openoffice/unowinreg.dll) = 6144
SHA256 (openoffice/ApacheOpenOffice.ext_sources.4.x.x.20150707.tar.gz) = 966a8333c83a18ddd84401389006d6e0b52b8175924b808b54b88211669985fa

View file

@ -0,0 +1,27 @@
--- connectivity/source/drivers/dbase/makefile.mk.orig 2014-09-19 18:15:41 UTC
+++ connectivity/source/drivers/dbase/makefile.mk
@@ -76,7 +76,9 @@ EXCEPTIONSFILES=\
$(SLO)$/DDriver.obj
# [kh] ppc linux gcc compiler problem
-.IF "$(OS)$(COM)$(CPUNAME)"=="LINUXGCCPOWERPC"
+# [Don Lewis] clang 3.4 -O2 on amd64 tries to use R_X86_64_PC32 relocation with
+# symbol _ZThn192_N12connectivity4file10OFileTable7acquireEvj
+.IF "$(OS)$(COM)$(CPUNAME)"=="LINUXGCCPOWERPC" || ("$(OS)$(COM)$(CPUNAME)"=="FREEBSDCLANGX86_64" && $(CCNUMVER)>=000300040000 && $(CCNUMVER)<000300050000)
EXCEPTIONSNOOPTFILES= \
$(SLO)$/DTable.obj
.ELSE
--- solenv/inc/tg_compv.mk.orig 2015-08-05 01:53:01 UTC
+++ solenv/inc/tg_compv.mk
@@ -38,7 +38,11 @@ CFLAGSNUMVERSION_CMD=-dumpversion $(PIPE
.ELIF "$(COM)"=="CLANG"
CFLAGSVERSION=--version
CFLAGSVERSION_CMD=--version | head -n1 | sed -e"s/.*version //" -e"s/ .*//"
+.IF "$(OS)"="FREEBSD"
+CFLAGSNUMVERSION_CMD=${CFLAGSVERSION_CMD} | $(AWK) -v num=true -f $(SOLARENV)/bin/getcompver.awk
+.ELSE
CFLAGSNUMVERSION_CMD=${CFLAGSVERSION_CMD} | sed -e"s/\.//"
+.ENDIF
.ELIF "$(COM)"=="MSC"
CFLAGSVERSION=
CFLAGSVERSION_CMD= $(PIPEERROR) $(AWK) -f $(SOLARENV)/bin/getcompver.awk

View file

@ -407,6 +407,7 @@
SUBDIR += hohlin
SUBDIR += hoichess
SUBDIR += holotz-castle
SUBDIR += hypatia_engine
SUBDIR += iagno
SUBDIR += icbm3d
SUBDIR += icebreaker

View file

@ -0,0 +1,22 @@
# $FreeBSD$
PORTNAME= hypatia_engine
PORTVERSION= 0.2.29
CATEGORIES= games python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= lillian.lynn.lemmer@gmail.com
COMMENT= Game engine for 2D top-down, tile-based action RPGs
LICENSE= MIT
RUN_DEPENDS= ${PYGAME} \
${PYTHON_PKGNAMEPREFIX}pyganim>0:${PORTSDIR}/graphics/py-pyganim \
${PYTHON_PKGNAMEPREFIX}pillow>0:${PORTSDIR}/graphics/py-pillow \
${PYTHON_PKGNAMEPREFIX}enum34>0:${PORTSDIR}/devel/py-enum34
USES= python:2
USE_PYTHON= autoplist concurrent distutils
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (hypatia_engine-0.2.29.tar.gz) = 2d6cd5adce19326ca8737f211a35e83c65be864e04d51b44236ad72442eca1df
SIZE (hypatia_engine-0.2.29.tar.gz) = 27005

View file

@ -0,0 +1,4 @@
Make 2D action adventure games. For programmers and nonprogrammers alike.
Create a games like Legend of Zelda: Oracle of Ages and Oracle of Seasons.
WWW: http://lillian-lemmer.github.io/hypatia

View file

@ -2,9 +2,8 @@
# $FreeBSD$
PORTNAME= wordpress
PORTVERSION= 4.2.3
PORTVERSION= 4.2.4
DISTVERSIONSUFFIX= -de_DE
PORTREVISION= 1
CATEGORIES= german www
MASTER_SITES= http://de.wordpress.org/

View file

@ -1,2 +1,2 @@
SHA256 (wordpress-4.2.3-de_DE.tar.gz) = e96497009f9c227c9f02e26dd7535a4fb5703a2a861f76c8b177770f5a2db8ff
SIZE (wordpress-4.2.3-de_DE.tar.gz) = 6727495
SHA256 (wordpress-4.2.4-de_DE.tar.gz) = 5cecaf6f2a1f16529e7b39a0ebb18d7c94f9220b789acf852788e808588f2b1e
SIZE (wordpress-4.2.4-de_DE.tar.gz) = 6727821

View file

@ -38,18 +38,15 @@ CONFIGURE_ARGS= --with-html-dir=${DOCSDIR} \
--disable-wgl \
--enable-tee
OPTIONS_DEFINE= OPENGL XCB GLIB X11 EGL
OPTIONS_DEFAULT=OPENGL XCB GLIB X11 EGL
OPTIONS_DEFINE= OPENGL XCB GLIB X11
OPTIONS_DEFAULT=OPENGL XCB GLIB X11
XCB_DESC= Enable XCB (X C-language Binding) Support
GLIB_DESC= Enable GObject Functions Feature
EGL_DESC= 2D/3D rendering support via EGL
OPTIONS_SUB= yes
X11_USE= xorg=xrender,xext
X11_CONFIGURE_ENABLE=xlib
OPENGL_USE= gl=gl xorg=glproto:both,dri2proto:both
OPENGL_CONFIGURE_ENABLE=gl
EGL_USE= gl=egl
EGL_CONFIGURE_ENABLE=egl
OPENGL_USE= gl=gl,egl xorg=glproto:both,dri2proto:both
OPENGL_CONFIGURE_ENABLE=gl egl
GLIB_USE= gnome=glib20
GLIB_CONFIGURE_ENABLE= gobject
XCB_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xcb-renderutil.pc:${PORTSDIR}/x11/xcb-util-renderutil

View file

@ -41,7 +41,7 @@ lib/libcairo.so
lib/libcairo.so.2
lib/libcairo.so.%%LIBVER%%
libdata/pkgconfig/cairo.pc
%%EGL%%libdata/pkgconfig/cairo-egl.pc
%%OPENGL%%libdata/pkgconfig/cairo-egl.pc
libdata/pkgconfig/cairo-fc.pc
libdata/pkgconfig/cairo-ft.pc
%%OPENGL%%libdata/pkgconfig/cairo-gl.pc

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= gscan2pdf
PORTVERSION= 1.3.3
PORTVERSION= 1.3.4
CATEGORIES= graphics
MASTER_SITES= SF

View file

@ -1,2 +1,2 @@
SHA256 (gscan2pdf-1.3.3.tar.xz) = ca9eee74a5fea619c6ccd3508bb4c6548e2cfa169aa4689ed371d28e37d295f4
SIZE (gscan2pdf-1.3.3.tar.xz) = 359416
SHA256 (gscan2pdf-1.3.4.tar.xz) = a2885dfab92179f1e2dc668cc3c18ceac4ef1dcdab5f3ae2f6b9f4a962445470
SIZE (gscan2pdf-1.3.4.tar.xz) = 359408

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= Number-Phone-JP
PORTVERSION= 0.20150703
PORTVERSION= 0.20150803
CATEGORIES= japanese perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:TANIGUCHI

View file

@ -1,2 +1,2 @@
SHA256 (Number-Phone-JP-0.20150703.tar.gz) = 17d05cfff6cbcc3e82167929f090d22e39dbce9af899eb01de89c8952b4f73c9
SIZE (Number-Phone-JP-0.20150703.tar.gz) = 409439
SHA256 (Number-Phone-JP-0.20150803.tar.gz) = 382a17194bdd11e6dcf11f1286c671f2dd1da6be11aeb07334e80baaf046ca8c
SIZE (Number-Phone-JP-0.20150803.tar.gz) = 409436

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= wordpress
PORTVERSION= 4.2.2
PORTVERSION= 4.2.4
DISTVERSIONSUFFIX= -ja
CATEGORIES= japanese www
MASTER_SITES= http://ja.wordpress.org/

View file

@ -1,2 +1,2 @@
SHA256 (wordpress-4.2.2-ja.tar.gz) = 7e34ba580aed16c4fd769f033b0e7fa79b7c5813ba52e4496f14da0ac4451373
SIZE (wordpress-4.2.2-ja.tar.gz) = 6773205
SHA256 (wordpress-4.2.4-ja.tar.gz) = 71046b99c76b19d6f0a8d472dd9db53e24f362235a30dac0f8fd0dab36aeb76b
SIZE (wordpress-4.2.4-ja.tar.gz) = 6753336

View file

@ -2,13 +2,13 @@
# $FreeBSD$
PORTNAME= opendkim
PORTVERSION= 2.9.2
PORTREVISION= 7
PORTVERSION= 2.10.3
CATEGORIES= mail security
MASTER_SITES= SF/${PORTNAME} \
SF/${PORTNAME}/Previous%20Releases
SF/${PORTNAME}/Previous%20Releases \
ftp://ftpmirror.uk/freebsd-ports/${PORTNAME}/
MAINTAINER= umq@ueo.co.jp
MAINTAINER= freebsd-ports@dan.me.uk
COMMENT= DKIM library and milter implementation
LICENSE= BSD3CLAUSE SENDMAIL
@ -21,7 +21,7 @@ LICENSE_PERMS_SENDMAIL= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
GNU_CONFIGURE= yes
NO_OPTIONS_SORT=yes
USES= pkgconfig perl5 shebangfix libtool
USES= libtool perl5 pkgconfig shebangfix
USE_PERL5= run
SHEBANG_FILES= opendkim/opendkim-genkey* reputation/opendkim-* stats/opendkim-* \
reprrd/opendkim-reprrdimport*
@ -120,19 +120,19 @@ CONFIGURE_ARGS+= --with-milter=${MILTERBASE}
.if ${PORT_OPTIONS:MLUA_ONLY_SIGNING} || \
${PORT_OPTIONS:MRBL}
.if !${PORT_OPTIONS:MLUA}
IGNORE= Options LUA_ONLY_SIGNING and RBL require LUA as well
IGNORE= options LUA_ONLY_SIGNING and RBL require LUA as well
.endif
.endif
.if ${PORT_OPTIONS:MREPUTATION}
.if !${PORT_OPTIONS:MCURL} || !${PORT_OPTIONS:MJANSSON}
IGNORE= Option REPUTATION requires CURL and JANSSON as well
IGNORE= option REPUTATION requires CURL and JANSSON as well
.endif
.endif
.if ${PORT_OPTIONS:MSTATSEXT}
.if !${PORT_OPTIONS:MSTATS} || !${PORT_OPTIONS:MLUA}
IGNORE= Option STATSEXT requires STATS and LUA as well
IGNORE= option STATSEXT requires STATS and LUA as well
.endif
.endif
@ -151,6 +151,10 @@ USE_BDB= 40+
. endif
.endif
.if ${PORT_OPTIONS:MCODECOVERAGE}
LDFLAGS+= -lpthread
.endif
pre-configure:
${REINPLACE_CMD} -e '/LIBLUA_LIBS/s/lua5\.[0-9]/lua-${LUA_VER}/' \
-e '/PKG_CONFIG/s/lua5\.[0-9]/lua-${LUA_VER}/' \

View file

@ -47,6 +47,9 @@ DEFAULT_SENDER_CONFIGURE_ENABLE=default_sender
DIFFHEADERS_DESC= Compare signed and verified headers (experimental)
DIFFHEADERS_CONFIGURE_ENABLE= diffheaders
DIFFHEADERS_LIB_DEPENDS= libtre.so:${PORTSDIR}/textproc/libtre
DIFFHEADERS_CONFIGURE_WITH= tre=${LOCALBASE}
DIFFHEADERS_CONFIGURE_OFF= --without-tre
IDENTITY_HEADER_DESC= Special header to set identity
IDENTITY_HEADER_CONFIGURE_ENABLE= identity_header

View file

@ -1,2 +1,2 @@
SHA256 (opendkim-2.9.2.tar.gz) = 1f0c66afbe48f6223d2ab985b2c27594ae45035e3e81eba887d8ec6e5e1282c0
SIZE (opendkim-2.9.2.tar.gz) = 1229383
SHA256 (opendkim-2.10.3.tar.gz) = 43a0ba57bf942095fe159d0748d8933c6b1dd1117caf0273fa9a0003215e681b
SIZE (opendkim-2.10.3.tar.gz) = 1210224

View file

@ -1,6 +1,6 @@
--- ./libopendkim/tests/Makefile.in.orig 2013-02-26 06:06:04.000000000 +0900
+++ ./libopendkim/tests/Makefile.in 2013-02-26 19:58:50.000000000 +0900
@@ -1049,8 +1049,10 @@
--- libopendkim/tests/Makefile.in.orig 2015-05-12 18:43:48 UTC
+++ libopendkim/tests/Makefile.in
@@ -1108,8 +1108,10 @@ am__nobase_list = $(am__nobase_strip_set
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
@ -13,7 +13,7 @@
am__uninstall_files_from_dir = { \
test -z "$$files" \
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
@@ -2782,16 +2784,19 @@
@@ -4131,16 +4133,19 @@ uninstall-am: uninstall-dist_docDATA
@LCOV_TRUE@description.txt: $(check_PROGRAMS) $(check_SCRIPTS)
@LCOV_TRUE@ rm -f $@
@LCOV_TRUE@ for i in $(check_PROGRAMS); do \

View file

@ -1,6 +1,6 @@
--- ./opendkim/tests/Makefile.in.orig 2013-02-26 06:06:06.000000000 +0900
+++ ./opendkim/tests/Makefile.in 2013-02-26 19:58:50.000000000 +0900
@@ -98,8 +98,10 @@
--- opendkim/tests/Makefile.in.orig 2015-05-12 18:43:49 UTC
+++ opendkim/tests/Makefile.in
@@ -139,8 +139,10 @@ am__nobase_list = $(am__nobase_strip_set
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
@ -13,7 +13,7 @@
am__uninstall_files_from_dir = { \
test -z "$$files" \
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
@@ -778,14 +780,16 @@
@@ -1298,14 +1300,16 @@ uninstall-am: uninstall-dist_docDATA
@LCOV_TRUE@description.txt: $(check_SCRIPTS)
@LCOV_TRUE@ rm -f $@
@LCOV_TRUE@ for test in $? ; do \

View file

@ -65,16 +65,14 @@
include/opendkim/dkim.h
lib/libopendkim.a
lib/libopendkim.so
lib/libopendkim.so.9
lib/libopendkim.so.9.0.3
lib/libopendkim.so.10
lib/libopendkim.so.10.0.3
libdata/pkgconfig/opendkim.pc
man/man8/opendkim-genkey.8.gz
man/man8/opendkim-genzone.8.gz
man/man8/opendkim-testadsp.8.gz
man/man8/opendkim-testkey.8.gz
man/man8/opendkim-testmsg.8.gz
sbin/opendkim-genkey
sbin/opendkim-genzone
sbin/opendkim-testadsp
sbin/opendkim-testkey
sbin/opendkim-testmsg

View file

@ -22,6 +22,10 @@ RUN_DEPENDS= opendkim>=2.5.0:${PORTSDIR}/mail/opendkim \
USES= perl5
USE_PERL5= configure
BROKEN= fails to compile with present version of mail/opendkim port
DEPRECATED= Does not compile with newer opendkim port. Please use mail/p5-Mail-DKIM instead.
EXPIRATION_DATE= 2015-10-31
PLIST_FILES= %%SITE_ARCH%%/Mail/OpenDKIM.pm \
%%SITE_ARCH%%/Mail/OpenDKIM/DKIM.pm \
%%SITE_ARCH%%/Mail/OpenDKIM/PrivateKey.pm \

View file

@ -10,5 +10,4 @@
%%SQUIRRELDIR%%/plugins/calendar_file_backend/index.php
%%SQUIRRELDIR%%/plugins/calendar_file_backend/setup.php
%%SQUIRRELDIR%%/plugins/calendar_file_backend/version
@dirrmtry %%SQUIRRELDIR%%/plugins/calendar_file_backend/
@exec if [ -f %D/%%SQUIRRELDIR%%/config/config.php ]; then %D/%%SQUIRRELDIR%%/config/conf.pl --install-plugin %%SQUIRREL_PLUGIN_NAME%%; fi

View file

@ -44,31 +44,4 @@
%%SQUIRRELDIR%%/plugins/change_ldappass/version
%%SQUIRRELDIR%%/plugins/change_ldappass/setup.php
%%SQUIRRELDIR%%/plugins/change_ldappass/xgetpot
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/mkntpwd
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/de_DE/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/de_DE
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/pl_PL/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/pl_PL
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/fr_FR/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/fr_FR
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/nn_NO/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/nn_NO
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/el_GR/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/el_GR
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/cs_CZ/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/cs_CZ
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/sv_SE/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/sv_SE
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/no_NO/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/no_NO
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/pt_BR/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/pt_BR
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/lt_LT/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/lt_LT
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/es_ES/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/es_ES
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/nl_NL/LC_MESSAGES
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale/nl_NL
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass/locale
@dirrm %%SQUIRRELDIR%%/plugins/change_ldappass
@exec if [ -f %D/%%SQUIRRELDIR%%/config/config.php ]; then %D/%%SQUIRRELDIR%%/config/conf.pl --install-plugin %%SQUIRREL_PLUGIN_NAME%%; fi

View file

@ -13,8 +13,6 @@ LICENSE_FILE= ${WRKDIR}/${OCTSRC}/COPYING
LIB_DEPENDS= libmpfr.so:${PORTSDIR}/math/mpfr
USES= compiler:c++11-lang
# OCTSRC is the name of the directory of the package.
# It is usually ${OCTAVE_PKGNAME} or ${DISTNAME}.
OCTSRC= ${DISTNAME}
@ -27,10 +25,4 @@ post-build:
${RM} -f ${WRKSRC}/Makefile ${WRKSRC}/configure
cd ${WRKDIR} && ${TAR} cfz ${DISTNAME}.tar.gz ${OCTSRC}
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 1000000 || ${ARCH} == "i386"
BROKEN= Doesn't build on FreeBSD 9 nor i386
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View file

@ -5,8 +5,13 @@ build and install scripts.
This is interval.
The package provides data types for verified computing. The implementation
of intervals in inf-sup format is based on interval boundaries represented
by binary64 numbers and is standard conforming to IEEE 1788.
The interval package for real-valued interval arithmetic allows to evaluate
functions over subsets of their domain. All results are verified, because
interval computations automatically keep track of any errors. These
concepts can be used to handle uncertainties, estimate arithmetic errors
and produce reliable results. Also it can be applied to computer-assisted
proofs, constraint programming, and verified computing. The implementation
is based on interval boundaries represented by binary64 numbers and is
conforming to IEEE Std 1788-2015, IEEE standard for interval arithmetic.
WWW: http://octave.sourceforge.net/

View file

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= ejabberd
PORTVERSION= 15.06
PORTREVISION= 2
PORTVERSION= 15.07
CATEGORIES= net-im
MASTER_SITES= http://www.process-one.net/downloads/${PORTNAME}/${PORTVERSION}/:p1 \
http://distfiles.pirateparty.in/ashish/:deps \
@ -83,7 +82,7 @@ post-install:
.if ${PORT_OPTIONS:MPAM}
${INSTALL} -m 444 ${FILESDIR}/pam_ejabberd ${STAGEDIR}${PREFIX}/etc/pam.d/ejabberd
.endif
.for _file in p1_tls_drv.so expat_erl.so p1_yaml.so esip_drv.so p1_sha.so jiffy.so ezlib_drv.so iconv.so stringprep.so
.for _file in p1_tls_drv.so expat_erl.so p1_yaml.so esip_drv.so p1_sha.so jiffy.so ezlib_drv.so iconv.so stringprep.so sqlite3_drv.so xml.so
-@[ -f ${STAGEDIR}${PREFIX}/lib/erlang/lib/ejabberd-${PORTVERSION}/priv/lib/${_file} ] && ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/erlang/lib/ejabberd-${PORTVERSION}/priv/lib/${_file}
.endfor

View file

@ -1,4 +1,4 @@
SHA256 (ejabberd-15.06.tgz) = fcc001d0f2fc8b99bb2a4e7a42ec02c3c5d62191ea2aae19636f88e4e08be3a8
SIZE (ejabberd-15.06.tgz) = 1560640
SHA256 (ejabberd-15.07.tgz) = 87d5001521cbb779b84bc74879e032e2514d9a651e24c4e40cce0907ab405bd1
SIZE (ejabberd-15.07.tgz) = 1640947
SHA256 (ejabberd-deps-3.tar.xz) = 29c3e3d0841d55543a62c74cfc041ab88751f0d9168cc3b9253b5a95611cb842
SIZE (ejabberd-deps-3.tar.xz) = 18697860

View file

@ -11,7 +11,6 @@ lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/acl.beam
lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/adhoc.beam
%%REDIS%%lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/basho_bench_driver_eredis.beam
%%REDIS%%lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/basho_bench_driver_erldis.beam
lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/bitmap.beam
lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/cache_tab.beam
lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/cache_tab_sup.beam
lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/cache_tab_app.beam
@ -21,8 +20,6 @@ lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/cyrsasl_digest.beam
lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/cyrsasl_plain.beam
lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/cyrsasl_scram.beam
%%NO_LAGER%%lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/dynamic_compile.beam
lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/ehyperloglog.app
lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/ehyperloglog.beam
lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/%%PORTNAME%%.app
lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/%%PORTNAME%%.beam
lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/ebin/%%PORTNAME%%_admin.beam
@ -417,6 +414,7 @@ lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/priv/msgs/zh.msg
%%SQLITE%%lib/erlang/lib/%%PORTNAME%%-%%PORTVERSION%%/priv/sqlite3_drv.so
sbin/%%PORTNAME%%ctl
%%PORTDOCS%%%%DOCSDIR%%/COPYING
%%PORTDOCS%%%%DOCSDIR%%/guide.html
@dir /var/spool/ejabberd
@dir /var/run/ejabberdctl
@dir /var/log/ejabberd

View file

@ -2,34 +2,49 @@
# $FreeBSD$
PORTNAME= telegram
PORTVERSION= 1.0.5.1
PORTREVISION= 1
PORTVERSION= 1.3.1
CATEGORIES= net-im
MASTER_SITES= http://github.com/vysheng/tg/archive/:source1 \
http://github.com/vysheng/tgl/archive/:source2 \
http://github.com/vysheng/tl-parser/archive/:source3
DISTFILES= 1.3.1.tar.gz:source1 2.0.1.tar.gz:source2 master.zip:source3
MAINTAINER= ports@FreeBSD.org
MAINTAINER= cpm@fbsd.es
COMMENT= Command-line interface for Telegram
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libconfig.so:${PORTSDIR}/devel/libconfig \
libevent.so:${PORTSDIR}/devel/libevent2
USE_GITHUB= yes
GH_ACCOUNT= vysheng
GH_PROJECT= tg
libevent.so:${PORTSDIR}/devel/libevent2 \
libjansson.so:${PORTSDIR}/devel/jansson
USES= execinfo gmake lua:52 ncurses pkgconfig readline
USE_OPENSSL= yes
GNU_CONFIGURE= yes
PLIST_FILES= bin/telegram-cli \
etc/tg-server.pub
WRKSRC= ${WRKDIR}/tg-1.3.1
post-patch:
${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' ${WRKSRC}/main.c
PLIST_FILES= bin/telegram-cli \
etc/telegram-cli/server.pub
PORTDOCS= *
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 1000024
USE_GCC= 4.8+
.endif
post-extract:
@${MV} ${WRKDIR}/tgl-2.0.1/* ${WRKSRC}/tgl
@${MV} ${WRKDIR}/tl-parser-master/* ${WRKSRC}/tgl/tl-parser
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/etc/telegram-cli
${INSTALL_PROGRAM} ${WRKSRC}/bin/telegram-cli ${STAGEDIR}${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/tg-server.pub ${STAGEDIR}${PREFIX}/etc
${INSTALL_DATA} ${WRKSRC}/tg-server.pub ${STAGEDIR}${PREFIX}/etc/telegram-cli/server.pub
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC}/ && ${INSTALL_DATA} CHANGELOG README-LUA README.es README.md \
${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>
.include <bsd.port.post.mk>

View file

@ -1,2 +1,6 @@
SHA256 (vysheng-tg-1.0.5.1_GH0.tar.gz) = 5a78fd46e978ff450eda6f4664499042dddf053f4fe233fe3157499869646fb8
SIZE (vysheng-tg-1.0.5.1_GH0.tar.gz) = 390832
SHA256 (1.3.1.tar.gz) = b70b1d8b97b44086b64e467f81c6aceb8263092c26a8cf1a7d717eb1b5360415
SIZE (1.3.1.tar.gz) = 278051
SHA256 (2.0.1.tar.gz) = 549bbfc46715bae31b50a54cc21eefd61109cd28dcdddbe4e53726aec3d924f1
SIZE (2.0.1.tar.gz) = 250488
SHA256 (master.zip) = 14e9c78dae2b32acaf845121725ab694e21276959f07242470ebb39a1934fdf5
SIZE (master.zip) = 82671

View file

@ -1,19 +0,0 @@
--- main.c.orig 2014-09-24 12:35:27.000000000 +0200
+++ main.c 2014-10-02 10:22:46.000000000 +0200
@@ -59,6 +59,7 @@
#include <grp.h>
#include <arpa/inet.h>
+#include <netinet/in.h>
#include "telegram.h"
#include "loop.h"
@@ -803,7 +804,7 @@
running_for_first_time ();
parse_config ();
- tgl_set_rsa_key ("/etc/" PROG_NAME "/server.pub");
+ tgl_set_rsa_key ("%%PREFIX%%/etc/tg-server.pub");
tgl_set_rsa_key ("tg-server.pub");

View file

@ -1,11 +0,0 @@
--- mtproto-client.c.orig 2014-10-02 12:07:49.000000000 +0200
+++ mtproto-client.c 2014-10-02 12:08:13.000000000 +0200
@@ -80,7 +80,7 @@
#define MAX_NET_RES (1L << 16)
//extern int log_level;
-#ifndef HAVE___BUILTIN_BSWAP32
+#if !defined(HAVE___BUILTIN_BSWAP32) && !defined(__FreeBSD__) && !defined(__OpenBSD__)
static inline unsigned __builtin_bswap32(unsigned x) {
return ((x << 24) & 0xff000000 ) |
((x << 8) & 0x00ff0000 ) |

View file

@ -1,15 +0,0 @@
--- net.c.orig 2014-10-02 12:12:58.000000000 +0200
+++ net.c 2014-10-02 12:13:09.000000000 +0200
@@ -26,11 +26,11 @@
#include <string.h>
#include <stdlib.h>
#include <assert.h>
+#include <sys/types.h>
#include <netdb.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <sys/fcntl.h>
-#include <sys/types.h>
#include <sys/socket.h>
#include <errno.h>
#include <stdio.h>

View file

@ -2,6 +2,7 @@
PORTNAME= libzmq4
PORTVERSION= 4.1.2
PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= http://download.zeromq.org/
DISTNAME= zeromq-${DISTVERSION}

View file

@ -0,0 +1,20 @@
15f9ee19cb895f7fb7b6d09ec64d4b82717ee1aa
diff --git src/socket_base.cpp src/socket_base.cpp
index bddbaf2..79044b1 100644
--- src/socket_base.cpp
+++ src/socket_base.cpp
@@ -717,11 +717,12 @@ int zmq::socket_base_t::connect (const char *addr_)
// Following code is quick and dirty check to catch obvious errors,
// without trying to be fully accurate.
const char *check = address.c_str ();
- if (isalnum (*check) || isxdigit (*check)) {
+ if (isalnum (*check) || isxdigit (*check) || *check == '[') {
check++;
while (isalnum (*check)
|| isxdigit (*check)
- || *check == '.' || *check == '-' || *check == ':'|| *check == ';')
+ || *check == '.' || *check == '-' || *check == ':'|| *check == ';'
+ || *check == ']')
check++;
}
// Assume the worst, now look for success

View file

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= wordpress
PORTVERSION= 4.2.3
PORTVERSION= 4.2.4
DISTVERSIONSUFFIX= -ru_RU
CATEGORIES= russian www
MASTER_SITES= http://ru.wordpress.org/

View file

@ -1,2 +1,2 @@
SHA256 (wordpress-4.2.3-ru_RU.tar.gz) = 5b523a2f463a73a86f673ed90885864b355cbd5172b8466bd0c9b88207a1e5fa
SIZE (wordpress-4.2.3-ru_RU.tar.gz) = 6778280
SHA256 (wordpress-4.2.4-ru_RU.tar.gz) = b8a20a6e8097f072bd8e75f7695a14bb3c646a69d62f627c67ec00d925c8be7e
SIZE (wordpress-4.2.4-ru_RU.tar.gz) = 6768021

View file

@ -509,6 +509,7 @@
SUBDIR += p5-Crypt-OpenSSL-X509
SUBDIR += p5-Crypt-PBKDF2
SUBDIR += p5-Crypt-PGPSimple
SUBDIR += p5-Crypt-PWSafe3
SUBDIR += p5-Crypt-PassGen
SUBDIR += p5-Crypt-Passwd-XS
SUBDIR += p5-Crypt-PasswdMD5

View file

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= kpcli
PORTVERSION= 2.8
PORTVERSION= 3.0
CATEGORIES= security
MASTER_SITES= SF/kpcli/
EXTRACT_SUFX= .pl
@ -28,6 +28,11 @@ USES= perl5 shebangfix
SHEBANG_FILES= kpcli
PLIST_FILES= bin/kpcli man/man1/${PORTNAME}.1.gz
OPTIONS_DEFINE= PWSAFE3
PWSAFE3_DESC= Password Safe V3 file importing
PWSAFE3_BUILD_DEPENDS+= p5-Crypt-PWSafe3>=1.21:${PORTSDIR}/security/p5-Crypt-PWSafe3
PWSAFE3_RUN_DEPENDS+= p5-Crypt-PWSafe3>=1.21:${PORTSDIR}/security/p5-Crypt-PWSafe3
do-extract:
@${MKDIR} ${WRKSRC}
${CP} ${DISTDIR}/${PORTNAME}-${PORTVERSION}.pl ${WRKSRC}/${PORTNAME}

View file

@ -1,2 +1,2 @@
SHA256 (kpcli-2.8.pl) = 21351afe96bd8d151cc5b551b9852249199802deac5ed05ba8538f18c308b2ee
SIZE (kpcli-2.8.pl) = 176617
SHA256 (kpcli-3.0.pl) = 947b7b0485215f72e14bb8936c847abb583253c597f58234650922270259049c
SIZE (kpcli-3.0.pl) = 181841

View file

@ -0,0 +1,28 @@
# Created by: Alexander Y. Grigoryev <alexander.4mail@gmail.com>
# $FreeBSD$
PORTNAME= Crypt-PWSafe3
PORTVERSION= 1.21
CATEGORIES= security perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= alexander.4mail@gmail.com
COMMENT= Read and write Passwordsafe v3 files
LICENSE= ART20
BUILD_DEPENDS= p5-Digest-HMAC>=1.00:${PORTSDIR}/security/p5-Digest-HMAC \
p5-Digest-SHA>=1.00:${PORTSDIR}/security/p5-Digest-SHA \
p5-Crypt-CBC>=2.30:${PORTSDIR}/security/p5-Crypt-CBC \
p5-Crypt-ECB>=1.45:${PORTSDIR}/security/p5-Crypt-ECB \
p5-Crypt-Twofish>=2.14:${PORTSDIR}/security/p5-Crypt-Twofish \
p5-Crypt-Random>=1.25:${PORTSDIR}/security/p5-Crypt-Random \
p5-Data-UUID>=1.217:${PORTSDIR}/devel/p5-Data-UUID \
p5-File-Temp>=0:${PORTSDIR}/devel/p5-File-Temp
RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= perl5
USE_PERL5= configure
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (Crypt-PWSafe3-1.21.tar.gz) = d2bd49387655db25f4aeb29cd27940d4a95c114e1ab3def57f83e98bf5ef2114
SIZE (Crypt-PWSafe3-1.21.tar.gz) = 24886

View file

@ -0,0 +1,3 @@
Crypt::PWSafe3 provides read/write access to Password Safe V3 database files.
WWW: http://search.cpan.org/dist/Crypt-PWSafe3/

View file

@ -0,0 +1,14 @@
%%SITE_PERL%%/Crypt/PWSafe3.pm
%%SITE_PERL%%/Crypt/PWSafe3/Databaseformat.pm
%%SITE_PERL%%/Crypt/PWSafe3/Field.pm
%%SITE_PERL%%/Crypt/PWSafe3/HeaderField.pm
%%SITE_PERL%%/Crypt/PWSafe3/PasswordPolicy.pm
%%SITE_PERL%%/Crypt/PWSafe3/Record.pm
%%SITE_PERL%%/Crypt/PWSafe3/SHA256.pm
%%PERL5_MAN3%%/Crypt::PWSafe3.3.gz
%%PERL5_MAN3%%/Crypt::PWSafe3::Databaseformat.3.gz
%%PERL5_MAN3%%/Crypt::PWSafe3::Field.3.gz
%%PERL5_MAN3%%/Crypt::PWSafe3::HeaderField.3.gz
%%PERL5_MAN3%%/Crypt::PWSafe3::PasswordPolicy.3.gz
%%PERL5_MAN3%%/Crypt::PWSafe3::Record.3.gz
%%PERL5_MAN3%%/Crypt::PWSafe3::SHA256.3.gz

View file

@ -7,8 +7,8 @@
+# Function to safely execute yacc
+#
+safe_yacc = \
+ _d=`mktemp -d $(OBJDIR)/$$_f.XXXXXX` &&\
+ _f=`echo $(1) | tr '[:upper:]' '[:lower:]'` &&\
+ _d=`mktemp -d $(OBJDIR)/$$_f.XXXXXX` &&\
+ _t=`basename $(3)` &&\
+ $(YACC) $(YFLAGS) -p$(1) -o$$_d/$$_f.c -d $(2) &&\
+ mv $$_d/$$_f.$${_t\#\#*.} $(3);\

View file

@ -2,7 +2,6 @@
PORTNAME= b2sum
PORTVERSION= 0.0.d${B2VERSION}
PORTREVISION= 1
CATEGORIES= sysutils security
MASTER_SITES= http://blake2.net/
DISTNAME= blake2_code_${B2VERSION}${EXTRACT_SUFFX}
@ -13,9 +12,7 @@ COMMENT= Fast secure hashing
LICENSE= CC0-1.0
LICENSE_FILE= ${WRKSRC}/../COPYING
BROKEN_FreeBSD_9_amd64= does not build
B2VERSION= 20150529
B2VERSION= 20150531
USES= zip
USE_CSTD= c99
@ -41,7 +38,7 @@ CFLAGS+= -march=native
.endif
.if (${PORT_OPTIONS:MSSE} && (${ARCH} == "i386" || ${ARCH} == "amd64"))
CFLAGS+= -I../sse
CFLAGS+= -I../sse -flax-vector-conversions
.else
CFLAGS+= -I../ref
EXTRA_PATCHES= ${PATCHDIR}/use_ref.patch

View file

@ -1,2 +1,2 @@
SHA256 (blake2_code_20150529.zip) = 30a3140f7747fb67765bcf5f26c85c5e9ec8a168bb31faa2dee93f4cc0b5e813
SIZE (blake2_code_20150529.zip) = 890257
SHA256 (blake2_code_20150531.zip) = 37168711cddb349e7462bcc4874992a8e1c66de2318a20507b498be2d7c7d1e7
SIZE (blake2_code_20150531.zip) = 461445

View file

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= iocage
PORTVERSION= 1.6.6
PORTREVISION= 1
PORTVERSION= 1.7.2
CATEGORIES= sysutils
PKGNAMESUFFIX= -devel
@ -15,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
USE_GITHUB= yes
GH_ACCOUNT= pannon
GH_TAGNAME= 31e7a81
GH_TAGNAME= 4dccc0
.include <bsd.port.pre.mk>

View file

@ -1,2 +1,2 @@
SHA256 (pannon-iocage-1.6.6-31e7a81_GH0.tar.gz) = 02be800669983e01cf9cb35262916072ed4729177ea495b6466388e64132cede
SIZE (pannon-iocage-1.6.6-31e7a81_GH0.tar.gz) = 290182
SHA256 (pannon-iocage-1.7.2-4dccc0_GH0.tar.gz) = e549576c6a762348547ab3c0b6ecbb54e47e43c641798ab6fcf9a161fb5e22a8
SIZE (pannon-iocage-1.7.2-4dccc0_GH0.tar.gz) = 293924

View file

@ -2,6 +2,7 @@ etc/rc.d/iocage
lib/iocage/ioc-cmd
lib/iocage/ioc-common
lib/iocage/ioc-configure
lib/iocage/ioc-git
lib/iocage/ioc-globals
lib/iocage/ioc-hacks
lib/iocage/ioc-help

View file

@ -16,7 +16,7 @@ LIB_DEPENDS= libgtop-2.0.so:${PORTSDIR}/devel/libgtop \
PORTSCOUT= limitw:1,even
USES= gettext gmake pathfix pkgconfig tar:xz
USES= alias gettext gmake pathfix pkgconfig tar:xz
USE_MATE= icontheme
USE_GNOME= gtk20 gtkmm24 intlhack librsvg2 libwnck libxml2
CONFIGURE_ARGS= --with-gtk=2.0

View file

@ -1222,6 +1222,7 @@
SUBDIR += py-pyscss
SUBDIR += py-pysrt
SUBDIR += py-pystache
SUBDIR += py-pystemmer
SUBDIR += py-python-augeas
SUBDIR += py-pytidylib
SUBDIR += py-pyx12
@ -1273,7 +1274,6 @@
SUBDIR += py2html
SUBDIR += py3-libxml2
SUBDIR += pychm
SUBDIR += pystemmer
SUBDIR += qprint
SUBDIR += qstardict
SUBDIR += qt4-xml

View file

@ -7,11 +7,15 @@ PORTREVISION= 1
CATEGORIES= textproc python
MASTER_SITES= CHEESESHOP \
http://snowball.tartarus.org/wrappers/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= PyStemmer-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Snowball Stemming Algorithms for Information Retrieval
LICENSE= MIT BSD3CLAUSE
LICENSE_COMB= dual
USES= python
USE_PYTHON= distutils autoplist

Some files were not shown because too many files have changed in this diff Show more