*/*: sync with upstream
Taken from: FreeBSD
This commit is contained in:
parent
9e195567b8
commit
4343e2943d
155 changed files with 1442 additions and 373 deletions
|
|
@ -13,8 +13,6 @@ COMMENT= Music creation tool inspired by Fast Tracker 2
|
|||
|
||||
LICENSE= GPLv3
|
||||
|
||||
NOT_FOR_ARCH= powerpc
|
||||
|
||||
LIB_DEPENDS+= libjack.so:audio/jack \
|
||||
libzzip.so:devel/zziplib
|
||||
|
||||
|
|
@ -32,6 +30,7 @@ ICONS= carton.ico carton.png
|
|||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
BROKEN_powerpc= Does not build on powerpc
|
||||
BROKEN_powerpc64= Does not build on powerpc64
|
||||
|
||||
post-install:
|
||||
|
|
|
|||
|
|
@ -55,6 +55,7 @@
|
|||
SUBDIR += muscle
|
||||
SUBDIR += ncbi-blast+
|
||||
SUBDIR += ncbi-toolkit
|
||||
SUBDIR += njplot
|
||||
SUBDIR += p5-AcePerl
|
||||
SUBDIR += p5-Bio-ASN1-EntrezGene
|
||||
SUBDIR += p5-Bio-Das
|
||||
|
|
|
|||
39
biology/njplot/Makefile
Normal file
39
biology/njplot/Makefile
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# Created by: Motomichi Matsuzaki <mzaki@biol.s.u-tokyo.ac.jp>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= njplot
|
||||
PORTVERSION= 2.4
|
||||
CATEGORIES= biology
|
||||
MASTER_SITES= ftp://pbil.univ-lyon1.fr/pub/mol_phylogeny/njplot/ \
|
||||
ftp://pbil.univ-lyon1.fr/pub/mol_phylogeny/njplot/archive/
|
||||
|
||||
MAINTAINER= jrm@FreeBSD.org
|
||||
COMMENT= Phylogenetic tree drawing program
|
||||
|
||||
LICENSE= NONE
|
||||
|
||||
BUILD_DEPENDS= blastall:biology/ncbi-toolkit
|
||||
|
||||
MAKEFILE= makefile
|
||||
|
||||
USES= motif
|
||||
USE_XORG= x11 xmu xp xt
|
||||
|
||||
BINARIES= newicktops newicktotxt njplot unrooted
|
||||
PLIST_FILES= ${BINARIES:S|^|bin/|} man/man1/njplot.1.gz \
|
||||
man/man1/unrooted.1.gz ${DATADIR}/njplot.help
|
||||
PORTDOCS= njplot.html njplot.gif
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${BINARIES:S|^|${WRKSRC}/|} ${STAGEDIR}${PREFIX}/bin
|
||||
${INSTALL_MAN} ${WRKSRC}/*.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
||||
@${MKDIR} ${STAGEDIR}${DATADIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/njplot.help ${STAGEDIR}${DATADIR}
|
||||
|
||||
do-install-DOCS-on:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
biology/njplot/distinfo
Normal file
3
biology/njplot/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1479168824
|
||||
SHA256 (njplot-2.4.tar.gz) = e470f7583691da2ad36a7cda4269bf64807f77cb27fe1e16cbfefc45942469d3
|
||||
SIZE (njplot-2.4.tar.gz) = 83239
|
||||
49
biology/njplot/files/patch-makefile
Normal file
49
biology/njplot/files/patch-makefile
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
--- makefile.orig 2012-01-04 08:50:43 UTC
|
||||
+++ makefile
|
||||
@@ -1,5 +1,5 @@
|
||||
#uncomment and locally adapt next line to fix the full helpfile path name
|
||||
-HELPFILENAME = -DHELPFILENAME=\"/usr/share/njplot/njplot.help\"
|
||||
+HELPFILENAME = -DHELPFILENAME=\"${DATADIR}/njplot.help\"
|
||||
|
||||
#comment out next line and uncomment next 2 to use the PDFLib Lite library
|
||||
NO_PDF = -DNO_PDF
|
||||
@@ -7,27 +7,31 @@ NO_PDF = -DNO_PDF
|
||||
#PDFLIB = -L$(PDF) -lpdf
|
||||
|
||||
# c compiler and linker
|
||||
-CC = gcc
|
||||
+CC ?= cc
|
||||
|
||||
-# Vibrant top directory
|
||||
-VIBRANT = /usr/include/ncbi
|
||||
+NCBIINC = $(LOCALBASE)/include/ncbi
|
||||
+NCBILIB = $(LOCALBASE)/lib/ncbi
|
||||
|
||||
OBJECTS = njplot-vib.o
|
||||
OBJUNROOTED = unrooted-vib.o preptree.o
|
||||
|
||||
+CFLAGS = -c -DWIN_MOTIF -Dunix -I${LOCALBASE}/include -I$(NCBIINC) $(HELPFILENAME) $(NO_PDF) -Wimplicit-function-declaration
|
||||
|
||||
-CFLAGS = -c -DWIN_MOTIF -Dunix -I$(VIBRANT) $(HELPFILENAME) $(NO_PDF)
|
||||
-
|
||||
all: njplot unrooted newicktops newicktotxt
|
||||
|
||||
|
||||
njplot : $(OBJECTS)
|
||||
$(CC) -o njplot $(OBJECTS) \
|
||||
- -lvibrant -lncbi -lXm -lXt
|
||||
-
|
||||
+ -L$(NCBILIB) \
|
||||
+ -lvibrant -lncbi \
|
||||
+ $(MOTIFLIB) \
|
||||
+ -L$(LOCALBASE)/lib -lXmu -lXt -lX11 -lm
|
||||
+
|
||||
unrooted : $(OBJUNROOTED)
|
||||
$(CC) -o unrooted $(OBJUNROOTED) \
|
||||
- -lvibrant -lncbi -lXm -lXt
|
||||
+ -L$(NCBILIB) -lvibrant -lncbi \
|
||||
+ $(MOTIFLIB) \
|
||||
+ -L$(LOCALBASE)/lib -lXmu -lXt -lX11 -lm
|
||||
|
||||
newicktops: njplot-vib.c
|
||||
$(CC) -DNO_GUI -DNO_PDF -o $@ njplot-vib.c -lm
|
||||
17
biology/njplot/pkg-descr
Normal file
17
biology/njplot/pkg-descr
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
NJplot is a tree drawing program able to draw any phylogenetic tree expressed
|
||||
in the Newick phylogenetic tree format (e.g., the format used by the PHYLIP
|
||||
package). NJplot is especially convenient for rooting the unrooted trees
|
||||
obtained from parsimony, distance or maximum likelihood tree-building methods.
|
||||
|
||||
The package contains the following programs:
|
||||
njplot - draw phylogenetic trees and interactively modify them
|
||||
newicktops - non-interactive version rendering into a PostScript file
|
||||
newicktotxt - non-interactive version rendering into a text file
|
||||
unrooted - draw unrooted circular trees
|
||||
|
||||
If you use NJplot in a published work, please cite the following reference:
|
||||
|
||||
Perriere, G. and Gouy, M. (1996) WWW-Query: An on-line retrieval system for
|
||||
biological sequence banks. Biochimie, 78, 364-369.
|
||||
|
||||
WWW: http://pbil.univ-lyon1.fr/software/njplot.html
|
||||
|
|
@ -1,10 +1,10 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= qsstv
|
||||
PORTVERSION= 9.1.5
|
||||
PORTVERSION= 9.2.4
|
||||
CATEGORIES= comms hamradio
|
||||
MASTER_SITES= http://users.telenet.be/on4qz/qsstv/downloads/ \
|
||||
LOCAL/shurd
|
||||
LOCAL/db
|
||||
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
||||
|
||||
MAINTAINER= hamradio@FreeBSD.org
|
||||
|
|
@ -16,13 +16,14 @@ LIB_DEPENDS= libasound.so:audio/alsa-lib \
|
|||
libfftw3.so:math/fftw3 \
|
||||
libfftw3f.so:math/fftw3-float \
|
||||
libhamlib.so:comms/hamlib \
|
||||
libopenjp2.so.7:graphics/openjpeg \
|
||||
libopenjp2.so:graphics/openjpeg \
|
||||
libpulse.so:audio/pulseaudio \
|
||||
libv4l2.so:multimedia/libv4l
|
||||
BUILD_DEPENDS= v4l_compat>=0:multimedia/v4l_compat
|
||||
|
||||
USES= qmake
|
||||
USE_QT5= buildtools core gui network widgets xml
|
||||
USE_GL+= gl
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
DOCS_CXXFLAGS= -DWITH_DOCS
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (qsstv_9.1.5.tar.gz) = 00b2e418ca39417eb6df73e4159e29f5844ce57b215188148fe4b5d12dc55f9a
|
||||
SIZE (qsstv_9.1.5.tar.gz) = 12372952
|
||||
TIMESTAMP = 1477497154
|
||||
SHA256 (qsstv_9.2.4.tar.gz) = 509c01e0d966ce622478d89cc168acb66327af452d2ef593731c23f35c8db3c5
|
||||
SIZE (qsstv_9.2.4.tar.gz) = 11883587
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
PORTNAME= bcode
|
||||
PORTVERSION= 0.6
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= converters devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
@ -12,7 +13,7 @@ COMMENT= Another bencode implementation
|
|||
|
||||
LICENSE= MIT
|
||||
|
||||
USES= python:2
|
||||
USES= python:2.7
|
||||
USE_PYTHON= distutils autoplist
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= cego
|
||||
PORTVERSION= 2.31.2
|
||||
PORTVERSION= 2.31.3
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://www.lemke-it.com/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1479046552
|
||||
SHA256 (cego-2.31.2.tar.gz) = 8c9c93d983f1018a43735b8ca5ba13afc93790e58c0fe8a40076375a532249b2
|
||||
SIZE (cego-2.31.2.tar.gz) = 1398334
|
||||
TIMESTAMP = 1479283971
|
||||
SHA256 (cego-2.31.3.tar.gz) = 0dcaddc175418819cd04844492aa41a746afbfc1c3d9e55a46d2bac2ba146da5
|
||||
SIZE (cego-2.31.3.tar.gz) = 1398340
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ PORTEPOCH= 2
|
|||
CATEGORIES= databases
|
||||
MASTER_SITES= http://www.mavetju.org/download/
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Manipulate db(3)'s btree(3) and hash(3) databases - NetBSD port
|
||||
|
||||
PLIST_FILES= bin/db \
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= MySQL-Diff
|
||||
PORTVERSION= 0.48
|
||||
PORTVERSION= 0.50
|
||||
CATEGORIES= databases perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
@ -15,7 +15,8 @@ LICENSE_COMB= dual
|
|||
|
||||
BUILD_DEPENDS= p5-Class-MakeMethods>=0:devel/p5-Class-MakeMethods \
|
||||
p5-DBD-mysql>=0:databases/p5-DBD-mysql \
|
||||
p5-File-Slurp>=0:devel/p5-File-Slurp
|
||||
p5-File-Slurp>=0:devel/p5-File-Slurp \
|
||||
p5-String-ShellQuote>=0:textproc/p5-String-ShellQuote
|
||||
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
||||
|
||||
USES= perl5 shebangfix
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1467116916
|
||||
SHA256 (MySQL-Diff-0.48.tar.gz) = 836571e4cc80a44a8fb1bee440a07a4b32a6301afc6335013803a99d8e52656e
|
||||
SIZE (MySQL-Diff-0.48.tar.gz) = 25926
|
||||
TIMESTAMP = 1479326260
|
||||
SHA256 (MySQL-Diff-0.50.tar.gz) = 573c2cf0a07fab2663991cbc0988c2763676364cd9bcb63399363dff0430cfd0
|
||||
SIZE (MySQL-Diff-0.50.tar.gz) = 26212
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ PORTREVISION= 1
|
|||
CATEGORIES= databases net
|
||||
MASTER_SITES= http://www.mavetju.org/download/
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Multiplex multiple PostgreSQL databases to one relay
|
||||
|
||||
PLIST_FILES= bin/postgresql-relay etc/postgresql-relay.conf-sample \
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= sqlite3
|
||||
PORTVERSION= 3.15.0
|
||||
PORTVERSION= 3.15.1
|
||||
CATEGORIES= databases tcl
|
||||
MASTER_SITES= https://www.sqlite.org/2016/ http://www2.sqlite.org/2016/ http://www3.sqlite.org/2016/
|
||||
PKGNAMEPREFIX= tcl-
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1478268196
|
||||
SHA256 (sqlite-autoconf-3150000.tar.gz) = 77162da9b4a0336d7e77d5252b690662850f62b47c12d9125f74ab9de78ded27
|
||||
SIZE (sqlite-autoconf-3150000.tar.gz) = 2490473
|
||||
TIMESTAMP = 1479297471
|
||||
SHA256 (sqlite-autoconf-3150100.tar.gz) = 5dfa89b7697ee3c2ac7b44e8e157e7f204bf999c866afcaa8bb1c7ff656ae2c5
|
||||
SIZE (sqlite-autoconf-3150100.tar.gz) = 2491350
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ MASTER_SITES= SF
|
|||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Calendar program for women
|
||||
|
||||
LICENSE= GPLv2
|
||||
LICENSE= GPLv2+
|
||||
|
||||
USES= python:run tar:bzip2
|
||||
USE_WX= 3.0+
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ PORTVERSION= 3.7
|
|||
CATEGORIES= deskutils
|
||||
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-c/${PORTVERSION}/
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Hebrew Calendar calculator
|
||||
|
||||
USES= makeinfo
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ MASTER_SITES= http://sourceforge.net/projects/${PORTNAME}/files/${PORTNAME}/${PO
|
|||
PKGNAMESUFFIX= -RC7
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}_20100615
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Webbased calendar with iCal support
|
||||
|
||||
LICENSE= GPLv2
|
||||
|
|
|
|||
|
|
@ -4,6 +4,6 @@ COMMENT= GNU binutils for AArch64 cross-development
|
|||
PKGNAMEPREFIX= aarch64-
|
||||
PLIST= ${.CURDIR}/pkg-plist
|
||||
|
||||
MASTERDIR= ${.CURDIR}/../binutils/
|
||||
MASTERDIR= ${.CURDIR}/../binutils
|
||||
|
||||
.include "${MASTERDIR}/Makefile"
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ PORTVERSION= 1.5
|
|||
CATEGORIES= devel
|
||||
MASTER_SITES= http://sources.redhat.com/autobook/
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= GNU autoconf, automake, and libtool - The Book
|
||||
|
||||
NO_BUILD= yes # it's only text!
|
||||
|
|
|
|||
|
|
@ -10,6 +10,8 @@ DISTNAME= ${PORTNAME}
|
|||
MAINTAINER= joerg@FreeBSD.org
|
||||
COMMENT= Bruce's C compiler (with as and ld); can do 16-bit code
|
||||
|
||||
BROKEN= unfetchable (MASTER_SITES not defined)
|
||||
|
||||
USES= uidfix
|
||||
|
||||
CONFLICTS= bin86-[0-9]* dev86-[0-9]*
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= cmake
|
||||
PORTVERSION= 3.6.2
|
||||
PORTVERSION= 3.6.3
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= https://www.cmake.org/files/v${PORTVERSION:R}/
|
||||
PKGNAMESUFFIX= -doc
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= cmake
|
||||
PORTVERSION= 3.6.2
|
||||
PORTVERSION= 3.6.3
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= https://www.cmake.org/files/v${PORTVERSION:R}/
|
||||
PKGNAMESUFFIX= -gui
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ PORTREVISION= 4
|
|||
CATEGORIES= devel games
|
||||
MASTER_SITES= http://perso.b2b2c.ca/sarrazip/dev/
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Generic game engine for 2D double-buffering animation
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= jenkins
|
||||
PORTVERSION= 2.19.2
|
||||
PORTVERSION= 2.19.3
|
||||
CATEGORIES= devel java
|
||||
MASTER_SITES= http://mirrors.jenkins-ci.org/war-stable/${PORTVERSION}/
|
||||
PKGNAMESUFFIX= -lts
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1478062429
|
||||
SHA256 (jenkins/2.19.2/jenkins.war) = 6eb89e410b263a4c73028cc4e0165e8fd567c0a35df43d12ab4117a1fc86ad31
|
||||
SIZE (jenkins/2.19.2/jenkins.war) = 69757994
|
||||
TIMESTAMP = 1479318802
|
||||
SHA256 (jenkins/2.19.3/jenkins.war) = bad23e08ce084fdaaccfb7c76fccf435f62cda30c6095b4b3929fb02a9ab3a36
|
||||
SIZE (jenkins/2.19.3/jenkins.war) = 69764788
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= jenkins
|
||||
PORTVERSION= 2.31
|
||||
PORTVERSION= 2.32
|
||||
CATEGORIES= devel java
|
||||
MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/
|
||||
DISTNAME= jenkins
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1479137729
|
||||
SHA256 (jenkins/2.31/jenkins.war) = 3afa4f308455d050eb5bd9d97b5f5217030a44eaeb641ce031cdacd33d7ca5d9
|
||||
SIZE (jenkins/2.31/jenkins.war) = 70132690
|
||||
TIMESTAMP = 1479320830
|
||||
SHA256 (jenkins/2.32/jenkins.war) = e1b6f6aec89baa1d4596292637e6586e91e3c875315cfce156a0349df062d5e3
|
||||
SIZE (jenkins/2.32/jenkins.war) = 70132589
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ CONFIGURE_TARGET=${ARCH:S/amd64/x86_64/}-portbld-${OPSYS:tl}${OSREL}
|
|||
INFO= bfd
|
||||
|
||||
BROKEN_aarch64= Fails to configure: machine aarch64-portbld not recognized
|
||||
BROKEN_armv64= Fails to configure: BFD does not support target armv6-portbld-freebsd12.0
|
||||
BROKEN_armv6= Fails to configure: BFD does not support target armv6-portbld-freebsd12.0
|
||||
BROKEN_mips64= Fails to configure: BFD does not support target mips64-portbld-freebsd12.0
|
||||
|
||||
pre-configure:
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= liblangtag
|
||||
PORTVERSION= 0.5.8
|
||||
PORTVERSION= 0.6.2
|
||||
CATEGORIES= devel textproc
|
||||
MASTER_SITES= https://bitbucket.org/tagoh/liblangtag/downloads/ \
|
||||
LOCAL/jkim
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (liblangtag-0.5.8.tar.bz2) = 08e2f64bfe3f750be7391eb0af53967e164b628c59f02be4d83789eb4f036eaa
|
||||
SIZE (liblangtag-0.5.8.tar.bz2) = 672452
|
||||
TIMESTAMP = 1479327412
|
||||
SHA256 (liblangtag-0.6.2.tar.bz2) = d6242790324f1432fb0a6fae71b6851f520b2c5a87675497cf8ea14c2924d52e
|
||||
SIZE (liblangtag-0.6.2.tar.bz2) = 766080
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ include/liblangtag/lt-redundant-db.h
|
|||
include/liblangtag/lt-redundant.h
|
||||
include/liblangtag/lt-region-db.h
|
||||
include/liblangtag/lt-region.h
|
||||
include/liblangtag/lt-relation-db.h
|
||||
include/liblangtag/lt-script-db.h
|
||||
include/liblangtag/lt-script.h
|
||||
include/liblangtag/lt-string.h
|
||||
|
|
@ -29,7 +30,7 @@ include/liblangtag/lt-variant.h
|
|||
include/liblangtag/lt-xml.h
|
||||
lib/liblangtag.so
|
||||
lib/liblangtag.so.1
|
||||
lib/liblangtag.so.1.3.1
|
||||
lib/liblangtag.so.1.4.1
|
||||
lib/liblangtag/liblangtag-ext-ldml-t.so
|
||||
lib/liblangtag/liblangtag-ext-ldml-u.so
|
||||
libdata/pkgconfig/liblangtag.pc
|
||||
|
|
@ -42,7 +43,6 @@ share/gtk-doc/html/liblangtag/ch01.html
|
|||
share/gtk-doc/html/liblangtag/deprecated-api-index.html
|
||||
share/gtk-doc/html/liblangtag/home.png
|
||||
share/gtk-doc/html/liblangtag/index.html
|
||||
share/gtk-doc/html/liblangtag/index.sgml
|
||||
share/gtk-doc/html/liblangtag/left-insensitive.png
|
||||
share/gtk-doc/html/liblangtag/left.png
|
||||
share/gtk-doc/html/liblangtag/liblangtag-Container---Extension.html
|
||||
|
|
@ -59,6 +59,7 @@ share/gtk-doc/html/liblangtag/liblangtag-Database---Grandfathered.html
|
|||
share/gtk-doc/html/liblangtag/liblangtag-Database---Language.html
|
||||
share/gtk-doc/html/liblangtag/liblangtag-Database---Redundant.html
|
||||
share/gtk-doc/html/liblangtag/liblangtag-Database---Region.html
|
||||
share/gtk-doc/html/liblangtag/liblangtag-Database---Relation.html
|
||||
share/gtk-doc/html/liblangtag/liblangtag-Database---Script.html
|
||||
share/gtk-doc/html/liblangtag/liblangtag-Database---Variant.html
|
||||
share/gtk-doc/html/liblangtag/liblangtag-Database.html
|
||||
|
|
@ -89,3 +90,5 @@ share/gtk-doc/html/liblangtag/up.png
|
|||
%%DATADIR%%/common/bcp47/transform_private_use.xml
|
||||
%%DATADIR%%/common/bcp47/variant.xml
|
||||
%%DATADIR%%/common/supplemental/likelySubtags.xml
|
||||
%%DATADIR%%/common/supplemental/supplementalData.xml
|
||||
%%DATADIR%%/common/supplemental/supplementalMetadata.xml
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= zookeeper
|
||||
PORTVERSION= 3.4.7
|
||||
PORTVERSION= 3.4.9
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= APACHE/${PORTNAME}/current
|
||||
PKGNAMEPREFIX= lib
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (zookeeper-3.4.7.tar.gz) = 2e043e04c4da82fbdb38a68e585f3317535b3842c726e0993312948afcc83870
|
||||
SIZE (zookeeper-3.4.7.tar.gz) = 21816477
|
||||
TIMESTAMP = 1479326793
|
||||
SHA256 (zookeeper-3.4.9.tar.gz) = e7f340412a61c7934b5143faef8d13529b29242ebfba2eba48169f4a8392f535
|
||||
SIZE (zookeeper-3.4.9.tar.gz) = 22724574
|
||||
|
|
|
|||
|
|
@ -12,9 +12,14 @@ PATCHFILES= ${PORTNAME}-${PORTVERSION}-m68hc1x-20040801.diffs.gz
|
|||
PATCH_DIST_STRIP= -p1
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= The binutils cross-toolchain for the 6811
|
||||
COMMENT= Binutils cross-toolchain for the 6811
|
||||
|
||||
FORBIDDEN= multiple vulnerabilities: CVE-2014-8503, CVE-2014-8502, CVE-2014-8501
|
||||
DEPRECATED= multiple vulnerabilities, version is years behind upstream
|
||||
EXPIRATION_DATE= 2017-02-17
|
||||
|
||||
ONLY_FOR_ARCHS= i386
|
||||
|
||||
NOT_FOR_ARCHS= amd64
|
||||
USES= gmake
|
||||
HAS_CONFIGURE= yes
|
||||
|
||||
|
|
|
|||
|
|
@ -4,4 +4,4 @@ The GNU binutils contain: as, ld, ar, objcopy, objdump and many other
|
|||
utilities. The format of object files is ELF-32. The GNU Binutils support
|
||||
translation to other formats such as S-records, Intel HEX records, ...
|
||||
|
||||
WWW: http://www.gnu-m68hc11.org/
|
||||
WWW: http://savannah.gnu.org/projects/m68hc11/
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ CONFIGURE_ARGS+=--target=${GCC_TARGET} --disable-nls --enable-languages=c,c++ \
|
|||
|
||||
ALL_TARGET?= all-gcc
|
||||
INSTALL_TARGET?= install-gcc
|
||||
BROKEN_FreeBSD9= plist is different on 9.x that on other arches
|
||||
BROKEN_FreeBSD_9= plist is different on 9.x that on other arches
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
|
|
|
|||
|
|
@ -2,8 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= sope2
|
||||
PORTVERSION= 2.3.13
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 2.3.17
|
||||
CATEGORIES= devel gnustep
|
||||
MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/
|
||||
DISTNAME= SOPE-${PORTVERSION}
|
||||
|
|
@ -41,6 +40,9 @@ PGSQL_USES= pgsql
|
|||
MYSQL_USE= MYSQL=client
|
||||
MEMCACHED_RUN_DEPENDS= ${LOCALBASE}/bin/memcached:databases/memcached
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/configure
|
||||
|
||||
post-patch-LDAP-off:
|
||||
@${REINPLACE_CMD} -e '/checkLinking "ldap"/d' ${WRKSRC}/configure
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1468338940
|
||||
SHA256 (SOPE-2.3.13.tar.gz) = 6b1f3492af1e33a9d1eea818a297408deadc6559713eda71c08e54e62c3f376d
|
||||
SIZE (SOPE-2.3.13.tar.gz) = 2278988
|
||||
TIMESTAMP = 1478673266
|
||||
SHA256 (SOPE-2.3.17.tar.gz) = 3547a37f44c1bac2484999828c766005f86335ff2249317b085d191882bde8c4
|
||||
SIZE (SOPE-2.3.17.tar.gz) = 2279816
|
||||
|
|
|
|||
|
|
@ -1,25 +1,11 @@
|
|||
--- configure.orig 2015-09-16 18:26:48 UTC
|
||||
+++ configure
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/bin/bash
|
||||
+#!/bin/sh
|
||||
|
||||
#
|
||||
# Note: When adding make options to this script, ensure that the source still
|
||||
@@ -41,7 +41,7 @@ else
|
||||
--- configure 2016-11-09 01:44:58.178493000 -0500
|
||||
+++ configure 2016-11-09 01:45:25.386129000 -0500
|
||||
@@ -45,7 +45,7 @@
|
||||
fi
|
||||
|
||||
# TODO: add pg_config, mysql_config etc!
|
||||
-LINK_SYSLIBDIRS="-L/usr/local/pgsql/lib -L/usr/local/lib -L/usr/lib"
|
||||
+LINK_SYSLIBDIRS="-L${LOCALBASE}/lib/postgresql -L${LOCALBASE}/lib/mysql -L${LOCALBASE}/lib -L/usr/lib"
|
||||
+LINK_SYSLIBDIRS="-L%%LOCALBASE%%/lib/postgresql -L%%LOCALBASE%%/lib/mysql -L%%LOCALBASE%%/lib -L/usr/lib"
|
||||
|
||||
# ******************** usage ********************
|
||||
|
||||
@@ -396,6 +396,7 @@ genConfigMake() {
|
||||
cfgwrite "debug:=no"
|
||||
fi
|
||||
cfgwrite ""
|
||||
+ cfgwrite "NEEDS_GUI=no"
|
||||
|
||||
if test $ARG_WITH_STRIP = 1; then
|
||||
cfgwrite "# configured to produce stripped code";
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= sope3
|
||||
PORTVERSION= 3.1.5
|
||||
PORTVERSION= 3.2.1
|
||||
CATEGORIES= devel gnustep
|
||||
MASTER_SITES= http://www.sogo.nu/files/downloads/SOGo/Sources/
|
||||
DISTNAME= SOPE-${PORTVERSION}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1471538310
|
||||
SHA256 (SOPE-3.1.5.tar.gz) = 4f88b896527b5ca803ac9fb8a38df79f11105e06df492c458e08cbe105928d5b
|
||||
SIZE (SOPE-3.1.5.tar.gz) = 2279532
|
||||
TIMESTAMP = 1478673000
|
||||
SHA256 (SOPE-3.2.1.tar.gz) = ed2124b3c7219c9475fe918e8ab1564b8f71d68c3cd8599f6e61b5574ae10433
|
||||
SIZE (SOPE-3.2.1.tar.gz) = 2280029
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@ pre-configure:
|
|||
fi
|
||||
.endif
|
||||
.if ${PORT_OPTIONS:MSTATIC}
|
||||
@if ${GREP} -q icui18n ${LOCALBASE}/lib/libsqlite3.la ; then \
|
||||
@if ${GREP} -q ucol_close ${LOCALBASE}/lib/libsqlite3.a ; then \
|
||||
${ECHO_MSG} "" ; \
|
||||
${ECHO_MSG} "You can not build static subversion if your SQLite3 is built with ICU enabled."; \
|
||||
${ECHO_MSG} "Please, reinstall 'devel/sqlite3' port with disabled ICU support."; \
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= zookeeper
|
||||
PORTVERSION= 3.4.7
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 3.4.9
|
||||
CATEGORIES= devel java
|
||||
MASTER_SITES= APACHE/${PORTNAME}/current
|
||||
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (zookeeper-3.4.7.tar.gz) = 2e043e04c4da82fbdb38a68e585f3317535b3842c726e0993312948afcc83870
|
||||
SIZE (zookeeper-3.4.7.tar.gz) = 21816477
|
||||
TIMESTAMP = 1479220970
|
||||
SHA256 (zookeeper-3.4.9.tar.gz) = e7f340412a61c7934b5143faef8d13529b29242ebfba2eba48169f4a8392f535
|
||||
SIZE (zookeeper-3.4.9.tar.gz) = 22724574
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ DISTVERSION= 134
|
|||
CATEGORIES= dns
|
||||
MASTER_SITES= http://dnscap.dns-oarc.net/
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= DNS network traffic capture utility
|
||||
|
||||
HAS_CONFIGURE= yes
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ PORTREVISION= 1
|
|||
CATEGORIES= dns
|
||||
MASTER_SITES= http://www.mavetju.org/download/
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Trace a chain of DNS servers to the source
|
||||
|
||||
USES= gmake
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ PORTREVISION= 2
|
|||
CATEGORIES= dns mail
|
||||
MASTER_SITES= http://www.mavetju.org/download/
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Check given IP/Host presence in RBLs
|
||||
|
||||
BUILD_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS \
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
SUBDIR += biew
|
||||
SUBDIR += bitedit
|
||||
SUBDIR += boiling-egg
|
||||
SUBDIR += bpatch
|
||||
SUBDIR += bvi
|
||||
SUBDIR += calligra
|
||||
SUBDIR += calligra-l10n
|
||||
|
|
|
|||
27
editors/bpatch/Makefile
Normal file
27
editors/bpatch/Makefile
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Created by: joerg
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= bpatch
|
||||
PORTVERSION= 1.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= editors
|
||||
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
||||
MASTER_SITE_SUBDIR= joerg
|
||||
DISTNAME= ${PORTNAME}
|
||||
|
||||
MAINTAINER= joerg@FreeBSD.org
|
||||
COMMENT= Hex editor that doesn't load the whole file at once
|
||||
|
||||
# 2016-11-14: Email from Prof. (em.) John Rupley
|
||||
# As far as I am concerned, the code is public domain, with no
|
||||
# restrictions. Steven List, in his README for the original
|
||||
# distribution, said that the original author, Garry Johnson, gave him
|
||||
# permission to place the code in the public domain. So, do whatever
|
||||
# you will with bpatch. Nice to know it may still have a life.
|
||||
LICENSE= CC0-1.0
|
||||
|
||||
NO_WRKSUBDIR= yes
|
||||
PLIST_FILES= bin/bpatch \
|
||||
man/man1/bpatch.1.gz
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
editors/bpatch/distinfo
Normal file
3
editors/bpatch/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1479337364
|
||||
SHA256 (bpatch.tar.gz) = 3bb5c8f239be00b18e3ef7f6900bdfb037888a58de8a92ebe24cb0ae6ad41d8c
|
||||
SIZE (bpatch.tar.gz) = 16087
|
||||
42
editors/bpatch/files/patch-Makefile
Normal file
42
editors/bpatch/files/patch-Makefile
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
--- Makefile.orig 2016-11-12 08:33:41 UTC
|
||||
+++ Makefile
|
||||
@@ -0,0 +1,39 @@
|
||||
+# This may have to change on your system.
|
||||
+# You may have to fiddle with various combinations of curses, termcap,
|
||||
+# terminfo, etc. Good luck!
|
||||
+PREFIX?= /usr/local
|
||||
+BINDIR= ${PREFIX}/bin
|
||||
+MANDIR= ${PREFIX}/man/man1
|
||||
+
|
||||
+LIBS = -lncurses
|
||||
+#LIBS = -ltermlib
|
||||
+#LIBS = -lterminfo
|
||||
+#for sysV
|
||||
+#LIBS = -lcurses
|
||||
+
|
||||
+# However you need getopt.
|
||||
+#GETOPT = -lgetopt
|
||||
+#not for sysV! (nor for some BSD)
|
||||
+#GETOPT =
|
||||
+
|
||||
+# If you're running on a 4.[23] system, you probably want this.
|
||||
+#WORK = -DMOD_HAX
|
||||
+#sysV
|
||||
+#WORK =
|
||||
+
|
||||
+#BSD or thereabouts
|
||||
+CFLAGS+= $(WORK)
|
||||
+#Microport sysV/AT, large model, for sdb debugger
|
||||
+#CFLAGS = -g -Ml
|
||||
+
|
||||
+all: bpatch
|
||||
+
|
||||
+clean:
|
||||
+ rm -f bpatch bpatch.o *.core
|
||||
+
|
||||
+bpatch: bpatch.o
|
||||
+ $(CC) -o bpatch $(CFLAGS) bpatch.o $(GETOPT) $(LIBS)
|
||||
+
|
||||
+install: bpatch bpatch.1
|
||||
+ $(BSD_INSTALL_PROGRAM) bpatch $(DESTDIR)$(BINDIR)
|
||||
+ $(BSD_INSTALL_MAN) bpatch.1 $(DESTDIR)$(MANDIR)
|
||||
347
editors/bpatch/files/patch-bpatch.c
Normal file
347
editors/bpatch/files/patch-bpatch.c
Normal file
|
|
@ -0,0 +1,347 @@
|
|||
--- bpatch.c.orig 1990-01-17 14:33:33 UTC
|
||||
+++ bpatch.c
|
||||
@@ -90,10 +90,15 @@
|
||||
/*E*/
|
||||
/*S includes, globals, and defines */
|
||||
/*Page Eject*/
|
||||
-#include <curses.h>
|
||||
+#include <ncurses.h>
|
||||
#include <fcntl.h>
|
||||
#include <signal.h>
|
||||
#include <ctype.h>
|
||||
+#include <stdlib.h>
|
||||
+#include <string.h>
|
||||
+#include <unistd.h>
|
||||
+#include <stdio.h>
|
||||
+#include <termios.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
@@ -103,14 +108,18 @@ struct stat sb;
|
||||
void icc ();
|
||||
void copyrec ();
|
||||
void schwapp ();
|
||||
-
|
||||
-/* added declarations, mostly for cleanliness */
|
||||
-extern long lseek();
|
||||
-extern long atol();
|
||||
-extern char *strncpy();
|
||||
-extern void exit();
|
||||
-extern unsigned sleep(); /* signal problems ??? if sleep called */
|
||||
-extern void perror();
|
||||
+void breakp ();
|
||||
+void reset ();
|
||||
+int ckfile (char *, long *);
|
||||
+int bread (int, char *, int, int);
|
||||
+void errmsg (char *, unsigned);
|
||||
+void show (int, char[16][16], char *, long, int, long, char, int, int, int, int, int, int);
|
||||
+void dbg_msg (register char *);
|
||||
+void dohelp ();
|
||||
+void search (register int);
|
||||
+int arrow (register int, register int*, register int *);
|
||||
+void outstr (char *);
|
||||
+void outch (register char);
|
||||
|
||||
/* set up for calls to outstr and errmsg, etc, */
|
||||
/* by use of sprintf to fill outbuf */
|
||||
@@ -190,7 +199,7 @@ WINDOW *errwin = NULL;
|
||||
#ifdef MOD_HAX
|
||||
#else /* use original code... */
|
||||
/* plus some more for restoring terminal function */
|
||||
- struct termio asis, aswas;
|
||||
+ struct termios asis, aswas;
|
||||
#endif /* MOD_HAX */
|
||||
|
||||
/*S main - control all the work from here */
|
||||
@@ -202,6 +211,7 @@ WINDOW *errwin = NULL;
|
||||
*
|
||||
*********************************************************************/
|
||||
/*E*/
|
||||
+int
|
||||
main (argc, argv)
|
||||
int argc;
|
||||
char *argv[];
|
||||
@@ -210,12 +220,10 @@ char *argv[];
|
||||
extern WINDOW *newwin ();
|
||||
|
||||
register char *cp; /* general purpose char ptr */
|
||||
- extern char *gets (); /* get string from stdin */
|
||||
char m = '\017'; /* mask for hex edit */
|
||||
char response[512]; /* general purpose buffer */
|
||||
int z; /* character read in */
|
||||
|
||||
- int breakp (); /* signal trapping function */
|
||||
int c; /* current screen column */
|
||||
int change = 0; /* true if cmd line option toggled */
|
||||
int fid; /* file descriptor */
|
||||
@@ -234,8 +242,7 @@ char *argv[];
|
||||
extern char *optarg; /* getopt pointer to opt arg */
|
||||
|
||||
extern long getnum ();
|
||||
- extern char *instr (); /* get a string from the cmd line */
|
||||
- extern int reset (); /* exit function - reset terminal */
|
||||
+ extern char *myinstr (); /* get a string from the cmd line */
|
||||
|
||||
/* ------------------------------------------------------------ */
|
||||
/* set up signal handling */
|
||||
@@ -333,19 +340,27 @@ char *argv[];
|
||||
alphawin = subwin (stdscr, 16, 16, 4, 57);
|
||||
keypad (alphawin, TRUE);
|
||||
errwin = subwin (stdscr, 1, 80, 23, 0);
|
||||
+ if (errwin == NULL)
|
||||
+ errwin = stdscr;
|
||||
+ if (hexwin == NULL || alphawin == NULL)
|
||||
+ {
|
||||
+ fprintf(stderr, "Can't create all necessary curses windows.\n");
|
||||
+ reset (0);
|
||||
+ exit (2);
|
||||
+ }
|
||||
|
||||
#ifdef MOD_HAX
|
||||
/* This is not exactly what the original code does,
|
||||
but it's good enough. -r$ */
|
||||
raw();
|
||||
#else /* use original code... */
|
||||
- ioctl (0, TCGETA, &asis);
|
||||
+ tcgetattr (0, &asis);
|
||||
aswas = asis; /* save termio stuff for later restore */
|
||||
asis.c_cc[VINTR] = '\0';
|
||||
asis.c_iflag &= ~IXON;
|
||||
asis.c_iflag &= ~IXOFF;
|
||||
asis.c_iflag &= ~IXANY;
|
||||
- ioctl (0, TCSETA, &asis);
|
||||
+ tcsetattr (0, TCSANOW, &asis);
|
||||
#endif /* MOD_HAX */
|
||||
}
|
||||
|
||||
@@ -398,7 +413,7 @@ char *argv[];
|
||||
{
|
||||
position = lseek (fid, ((long )recno) * 256, 0);
|
||||
|
||||
- if ((bytes = bread (fid, record, 256, block)) < 0)
|
||||
+ if ((bytes = bread (fid, (char *)record, 256, block)) < 0)
|
||||
{
|
||||
sprintf(outbuf, "error on reading file %s", filename);
|
||||
errmsg (outbuf, SLEEP_TIME);
|
||||
@@ -478,7 +493,9 @@ char *argv[];
|
||||
}
|
||||
pbrk = 0;
|
||||
fprintf (stderr, "\007");
|
||||
- gets (response);
|
||||
+ fgets (response, 512, stdin);
|
||||
+ if ((cp = strchr (response, '\n')))
|
||||
+ *cp = 0;
|
||||
|
||||
if (pbrk) status = EOF;
|
||||
}
|
||||
@@ -617,7 +634,7 @@ char *argv[];
|
||||
|
||||
case '\006': /* new file (^F) */
|
||||
close (fid);
|
||||
- fid = ckfile (cp = instr (), &size);
|
||||
+ fid = ckfile (cp = myinstr (), &size);
|
||||
if (fid < 0)
|
||||
{
|
||||
fid = ckfile (filename, &size);
|
||||
@@ -832,7 +849,8 @@ char *argv[];
|
||||
touchwin (alphawin);
|
||||
wrefresh (alphawin);
|
||||
|
||||
- while ((z = wgetch (alphawin)) != DEL)
|
||||
+ while ((z = wgetch (alphawin)) != KEY_DC &&
|
||||
+ z != KEY_BACKSPACE)
|
||||
{
|
||||
if (!arrow (z, &r, &c))
|
||||
{
|
||||
@@ -902,7 +920,8 @@ char *argv[];
|
||||
touchwin (hexwin);
|
||||
wrefresh (hexwin);
|
||||
|
||||
- while ((z = wgetch (hexwin)) != DEL)
|
||||
+ while ((z = wgetch (hexwin)) != KEY_DC
|
||||
+ && z != KEY_BACKSPACE)
|
||||
{
|
||||
if (!arrow (z, &r, &c))
|
||||
{
|
||||
@@ -1083,21 +1102,9 @@ char *argv[];
|
||||
/*E*/
|
||||
/*checked typing of parameters as declared in fucntion */
|
||||
/* versus declarations at call */
|
||||
-show (bytes, record, filename, size, recno, position,
|
||||
- m,reclen, dump, ebcdic, swab_opt, block, honly)
|
||||
-int bytes;
|
||||
-char record[16][16];
|
||||
-char *filename;
|
||||
-long size;
|
||||
-int recno;
|
||||
-long position;
|
||||
-char m;
|
||||
-int reclen;
|
||||
-int dump;
|
||||
-int ebcdic;
|
||||
-int swab_opt;
|
||||
-int block;
|
||||
-int honly;
|
||||
+void
|
||||
+show (int bytes, char record[16][16], char *filename, long size, int recno, long position,
|
||||
+ char m, int reclen, int dump, int ebcdic, int swab_opt, int block, int honly)
|
||||
{
|
||||
int i;
|
||||
int j;
|
||||
@@ -1281,7 +1288,7 @@ int honly;
|
||||
/*S breakp - set pbrk on interrupt */
|
||||
/*H breakp */
|
||||
/*E*/
|
||||
-int breakp (i)
|
||||
+void breakp (i)
|
||||
int i;
|
||||
{
|
||||
int s;
|
||||
@@ -1448,6 +1455,7 @@ char *type;
|
||||
/*S ckfile - check on existence, accessibility, and type of file */
|
||||
/*H ckfile */
|
||||
/*E*/
|
||||
+int
|
||||
ckfile (filename, sizep)
|
||||
char *filename;
|
||||
long *sizep;
|
||||
@@ -1515,6 +1523,7 @@ long *sizep;
|
||||
/*S dohelp - display help text */
|
||||
/*H dohelp */
|
||||
/*E*/
|
||||
+void
|
||||
dohelp ()
|
||||
{
|
||||
static char *helptxt[] = {
|
||||
@@ -1592,6 +1601,7 @@ dohelp ()
|
||||
/*S reset - reset terminal to original state */
|
||||
/*H reset */
|
||||
/*E*/
|
||||
+void
|
||||
reset (sig)
|
||||
int sig;
|
||||
{
|
||||
@@ -1600,7 +1610,7 @@ int sig;
|
||||
move (23, 0);
|
||||
refresh ();
|
||||
#ifndef MOD_HAX
|
||||
- ioctl (0, TCSETA, &aswas);
|
||||
+ tcsetattr (0, TCSANOW, &aswas);
|
||||
#endif
|
||||
endwin ();
|
||||
}
|
||||
@@ -1610,17 +1620,17 @@ int sig;
|
||||
fprintf (stderr, "killed with signal %d\n", sig);
|
||||
exit (sig);
|
||||
}
|
||||
- return (0);
|
||||
}
|
||||
/*S arrow - determine if current character is a cursor control key */
|
||||
/*H arrow */
|
||||
/*E*/
|
||||
+int
|
||||
arrow (k, r, c)
|
||||
register int k;
|
||||
register int *r;
|
||||
register int *c;
|
||||
{
|
||||
- register ret = 1;
|
||||
+ register int ret = 1;
|
||||
|
||||
/* watch out for conflict of VI_* amd KEY_* definitions */
|
||||
if (k == KEY_UP || k == VI_UP)
|
||||
@@ -1673,6 +1683,7 @@ register int *c;
|
||||
/*S dbg_msg - print a debug message */
|
||||
/*H dbg_msg */
|
||||
/*E*/
|
||||
+void
|
||||
dbg_msg (msg)
|
||||
register char *msg;
|
||||
{
|
||||
@@ -1683,11 +1694,11 @@ register char *msg;
|
||||
|
||||
return;
|
||||
}
|
||||
-/*S instr - get a character string from the terminal */
|
||||
-/*H instr */
|
||||
+/*S myinstr - get a character string from the terminal */
|
||||
+/*H myinstr */
|
||||
/*E*/
|
||||
char *
|
||||
-instr ()
|
||||
+myinstr ()
|
||||
{
|
||||
static char buf[512];
|
||||
|
||||
@@ -1815,6 +1826,7 @@ register int hex;
|
||||
/*S search - look for an ascii string in the file */
|
||||
/*H search */
|
||||
/*E*/
|
||||
+void
|
||||
search (fid)
|
||||
register int fid;
|
||||
{
|
||||
@@ -1827,13 +1839,13 @@ register int fid;
|
||||
register int matched = 0;
|
||||
register int srch_len;
|
||||
|
||||
- register char *cp = instr ();
|
||||
+ register char *cp = myinstr ();
|
||||
register char *rp;
|
||||
|
||||
int row, col;
|
||||
|
||||
srch_len = strlen (cp);
|
||||
- copyrec (record, lrecord, sizeof record);
|
||||
+ copyrec ((char *)record, lrecord, sizeof record);
|
||||
lrecord[256] = '\0';
|
||||
|
||||
pbrk = 0;
|
||||
@@ -1875,7 +1887,7 @@ register int fid;
|
||||
{
|
||||
recno = currec;
|
||||
stay = 0;
|
||||
- copyrec (record, unch_rec, sizeof record);
|
||||
+ copyrec ((char *)record, (char *)unch_rec, sizeof record);
|
||||
werase (errwin);
|
||||
touchwin (errwin);
|
||||
wrefresh (errwin);
|
||||
@@ -1891,6 +1903,7 @@ register int fid;
|
||||
}
|
||||
/* simplified call to errmsg(), by using sprintf to load format */
|
||||
/* sleep_time is not implemented and awaits cleaning up of the signals (?) */
|
||||
+void
|
||||
errmsg (fmt, sleep_time)
|
||||
unsigned sleep_time;
|
||||
char *fmt;
|
||||
@@ -1911,7 +1924,7 @@ char *fmt;
|
||||
}
|
||||
else
|
||||
{
|
||||
- fprintf (stderr, fmt);
|
||||
+ fprintf (stderr, "%s", fmt);
|
||||
fprintf (stderr, "\n");
|
||||
}
|
||||
/* signal problem ?? if sleep called
|
||||
@@ -1921,16 +1934,17 @@ char *fmt;
|
||||
return;
|
||||
}
|
||||
/* simplified call to outstr(), by using sprintf to load format */
|
||||
+void
|
||||
outstr (fmt)
|
||||
char *fmt;
|
||||
{
|
||||
- if (dump) printf (fmt);
|
||||
- else printw (fmt);
|
||||
+ if (dump) printf ("%s", fmt);
|
||||
+ else printw ("%s", fmt);
|
||||
|
||||
return;
|
||||
}
|
||||
-outch (ch)
|
||||
-register char ch;
|
||||
+void
|
||||
+outch (register char ch)
|
||||
{
|
||||
if (dump) putchar (ch);
|
||||
else addch (ch);
|
||||
14
editors/bpatch/pkg-descr
Normal file
14
editors/bpatch/pkg-descr
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
Original code written by Garry M. Johnson and Steven Lisk.
|
||||
|
||||
This is a neat program that contains some neat code. It allows you
|
||||
to dump or edit files (binary or ascii), displayed by 256-byte records
|
||||
in side-by-side hex and ascii formats. Other features (eg. toggled
|
||||
swap within byte pairs) are included.
|
||||
|
||||
The most interesting feature of this editor is that it doesn't load the
|
||||
entire file at once, unlike all other hex editors. Thus, you can browse
|
||||
and edit very large files or even raw disks.
|
||||
|
||||
The program does not include a redistribution notice, but it was posted
|
||||
to comp.sources.unix ages ago, and the README mentions the word "public
|
||||
domain".
|
||||
|
|
@ -16,7 +16,7 @@ DISTFILES= ${PORTNAME:tu}${EXTRACT_SUFX}:code \
|
|||
DIST_SUBDIR= m2000
|
||||
EXTRACT_ONLY= ${PORTNAME:tu}${EXTRACT_SUFX}
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Portable emulator for the Philips P2000 home computer
|
||||
|
||||
EXTRACT_DEPENDS=${UNZIP_CMD}:archivers/unzip
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= wine
|
||||
DISTVERSION= 1.9.22
|
||||
DISTVERSION= 1.9.23
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= emulators
|
||||
MASTER_SITES= SF/${PORTNAME}/Source \
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1478098580
|
||||
SHA256 (wine-1.9.22.tar.bz2) = a3bf8e1ac7c7a742601e4215687c8374dda4050ea64c0fc90fb196645a41ec41
|
||||
SIZE (wine-1.9.22.tar.bz2) = 23616095
|
||||
SHA256 (v1.9.22.tar.gz) = 1bd7a9a01aec4f2887bbb6df53883a44b9ff39afcaa36b4206c17bf985c245e0
|
||||
SIZE (v1.9.22.tar.gz) = 10034259
|
||||
TIMESTAMP = 1479289125
|
||||
SHA256 (wine-1.9.23.tar.bz2) = e3efa726f6b3df75cc1151341300c0dc9cd171d84313a428ca44684df9c4368c
|
||||
SIZE (wine-1.9.23.tar.bz2) = 23573977
|
||||
SHA256 (v1.9.23.tar.gz) = 155c4a3c46e0924890a84e8182638658c571ddf26c905bc465dd364145df1c84
|
||||
SIZE (v1.9.23.tar.gz) = 10050058
|
||||
|
|
|
|||
|
|
@ -394,6 +394,7 @@ include/wine/windows/ifmib.h
|
|||
include/wine/windows/iimgctx.h
|
||||
include/wine/windows/iimgctx.idl
|
||||
include/wine/windows/imagehlp.h
|
||||
include/wine/windows/ime.h
|
||||
include/wine/windows/imm.h
|
||||
include/wine/windows/imnact.h
|
||||
include/wine/windows/imnact.idl
|
||||
|
|
@ -1023,6 +1024,7 @@ lib/wine/api-ms-win-downlevel-shlwapi-l1-1-0.dll.so
|
|||
lib/wine/api-ms-win-downlevel-shlwapi-l2-1-0.dll.so
|
||||
lib/wine/api-ms-win-downlevel-user32-l1-1-0.dll.so
|
||||
lib/wine/api-ms-win-downlevel-version-l1-1-0.dll.so
|
||||
lib/wine/api-ms-win-dx-d3dkmt-l1-1-0.dll.so
|
||||
%%STAGING%%lib/wine/api-ms-win-eventing-classicprovider-l1-1-0.dll.so
|
||||
lib/wine/api-ms-win-eventing-consumer-l1-1-0.dll.so
|
||||
lib/wine/api-ms-win-eventing-controller-l1-1-0.dll.so
|
||||
|
|
@ -1030,6 +1032,7 @@ lib/wine/api-ms-win-eventing-provider-l1-1-0.dll.so
|
|||
lib/wine/api-ms-win-eventlog-legacy-l1-1-0.dll.so
|
||||
lib/wine/api-ms-win-ntuser-dc-access-l1-1-0.dll.so
|
||||
%%STAGING%%lib/wine/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll.so
|
||||
lib/wine/api-ms-win-rtcore-ntuser-private-l1-1-0.dll.so
|
||||
%%STAGING%%lib/wine/api-ms-win-rtcore-ntuser-window-l1-1-0.dll.so
|
||||
lib/wine/api-ms-win-security-audit-l1-1-1.dll.so
|
||||
lib/wine/api-ms-win-security-base-l1-1-0.dll.so
|
||||
|
|
@ -1212,11 +1215,20 @@ lib/wine/explorer.exe.so
|
|||
lib/wine/explorerframe.dll.so
|
||||
%%STAGING%%lib/wine/ext-ms-win-appmodel-usercontext-l1-1-0.dll.so
|
||||
lib/wine/ext-ms-win-gdi-dc-create-l1-1-1.dll.so
|
||||
lib/wine/ext-ms-win-gdi-dc-l1-2-0.dll.so
|
||||
lib/wine/ext-ms-win-gdi-devcaps-l1-1-0.dll.so
|
||||
lib/wine/ext-ms-win-gdi-draw-l1-1-1.dll.so
|
||||
lib/wine/ext-ms-win-gdi-render-l1-1-0.dll.so
|
||||
%%STAGING%%lib/wine/ext-ms-win-kernel32-package-current-l1-1-0.dll.so
|
||||
lib/wine/ext-ms-win-ntuser-message-l1-1-1.dll.so
|
||||
%%STAGING%%lib/wine/ext-ms-win-ntuser-mouse-l1-1-0.dll.so
|
||||
lib/wine/ext-ms-win-ntuser-uicontext-ext-l1-1-0.dll.so
|
||||
lib/wine/ext-ms-win-ntuser-private-l1-1-1.dll.so
|
||||
lib/wine/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll.so
|
||||
lib/wine/ext-ms-win-ntuser-window-l1-1-1.dll.so
|
||||
lib/wine/ext-ms-win-rtcore-gdi-object-l1-1-0.dll.so
|
||||
lib/wine/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll.so
|
||||
lib/wine/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll.so
|
||||
lib/wine/ext-ms-win-rtcore-ntuser-dpi-l1-1-0.dll.so
|
||||
%%STAGING%%lib/wine/ext-ms-win-rtcore-ntuser-syscolors-l1-1-0.dll.so
|
||||
%%STAGING%%lib/wine/ext-ms-win-rtcore-ntuser-sysparams-l1-1-0.dll.so
|
||||
|
|
@ -1363,6 +1375,7 @@ lib/wine/fakedlls/api-ms-win-downlevel-shlwapi-l1-1-0.dll
|
|||
lib/wine/fakedlls/api-ms-win-downlevel-shlwapi-l2-1-0.dll
|
||||
lib/wine/fakedlls/api-ms-win-downlevel-user32-l1-1-0.dll
|
||||
lib/wine/fakedlls/api-ms-win-downlevel-version-l1-1-0.dll
|
||||
lib/wine/fakedlls/api-ms-win-dx-d3dkmt-l1-1-0.dll
|
||||
%%STAGING%%lib/wine/fakedlls/api-ms-win-eventing-classicprovider-l1-1-0.dll
|
||||
lib/wine/fakedlls/api-ms-win-eventing-consumer-l1-1-0.dll
|
||||
lib/wine/fakedlls/api-ms-win-eventing-controller-l1-1-0.dll
|
||||
|
|
@ -1370,6 +1383,13 @@ lib/wine/fakedlls/api-ms-win-eventing-provider-l1-1-0.dll
|
|||
lib/wine/fakedlls/api-ms-win-eventlog-legacy-l1-1-0.dll
|
||||
lib/wine/fakedlls/api-ms-win-ntuser-dc-access-l1-1-0.dll
|
||||
%%STAGING%%lib/wine/fakedlls/api-ms-win-rtcore-ntuser-draw-l1-1-0.dll
|
||||
lib/wine/fakedlls/ext-ms-win-ntuser-private-l1-1-1.dll
|
||||
lib/wine/fakedlls/ext-ms-win-ntuser-rectangle-ext-l1-1-0.dll
|
||||
lib/wine/fakedlls/ext-ms-win-ntuser-window-l1-1-1.dll
|
||||
lib/wine/fakedlls/ext-ms-win-rtcore-gdi-object-l1-1-0.dll
|
||||
lib/wine/fakedlls/ext-ms-win-rtcore-gdi-rgn-l1-1-0.dll
|
||||
lib/wine/fakedlls/ext-ms-win-rtcore-ntuser-dc-access-l1-1-0.dll
|
||||
lib/wine/fakedlls/api-ms-win-rtcore-ntuser-private-l1-1-0.dll
|
||||
%%STAGING%%lib/wine/fakedlls/api-ms-win-rtcore-ntuser-window-l1-1-0.dll
|
||||
lib/wine/fakedlls/api-ms-win-security-audit-l1-1-1.dll
|
||||
lib/wine/fakedlls/api-ms-win-security-base-l1-1-0.dll
|
||||
|
|
@ -1552,7 +1572,10 @@ lib/wine/fakedlls/explorer.exe
|
|||
lib/wine/fakedlls/explorerframe.dll
|
||||
%%STAGING%%lib/wine/fakedlls/ext-ms-win-appmodel-usercontext-l1-1-0.dll
|
||||
lib/wine/fakedlls/ext-ms-win-gdi-dc-create-l1-1-1.dll
|
||||
lib/wine/fakedlls/ext-ms-win-gdi-dc-l1-2-0.dll
|
||||
lib/wine/fakedlls/ext-ms-win-gdi-devcaps-l1-1-0.dll
|
||||
lib/wine/fakedlls/ext-ms-win-gdi-draw-l1-1-1.dll
|
||||
lib/wine/fakedlls/ext-ms-win-gdi-render-l1-1-0.dll
|
||||
%%STAGING%%lib/wine/fakedlls/ext-ms-win-kernel32-package-current-l1-1-0.dll
|
||||
lib/wine/fakedlls/ext-ms-win-ntuser-message-l1-1-1.dll
|
||||
%%STAGING%%lib/wine/fakedlls/ext-ms-win-ntuser-mouse-l1-1-0.dll
|
||||
|
|
|
|||
|
|
@ -533,6 +533,7 @@
|
|||
SUBDIR += linux-defcon
|
||||
SUBDIR += linux-doom3
|
||||
SUBDIR += linux-doom3-demo
|
||||
SUBDIR += linux-dwarffortress
|
||||
SUBDIR += linux-enemyterritory
|
||||
SUBDIR += linux-enemyterritory-etpro
|
||||
SUBDIR += linux-enemyterritory-jaymod
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ PORTREVISION= 3
|
|||
CATEGORIES= games
|
||||
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Reimplementation of Atomic Bomber Man
|
||||
|
||||
LICENSE= GPLv2
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ CATEGORIES= games
|
|||
MASTER_SITES= http://games.flowix.com/files/einstein/
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Remake of old DOS game Sherlock, which was inspired by Albert Einstein's puzzle
|
||||
|
||||
USE_SDL= sdl ttf mixer
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ PLIST= ${WRKDIR}/pkg-plist
|
|||
PLIST_DIRS= %%DATADIR%%
|
||||
|
||||
BROKEN_aarch64= Fails to install: runaway process
|
||||
BROKEN_armv64= Fails to install: runaway process
|
||||
BROKEN_armv6= Fails to install: runaway process
|
||||
BROKEN_mips64= Fails to install: runaway process
|
||||
|
||||
post-patch:
|
||||
|
|
|
|||
63
games/linux-dwarffortress/Makefile
Normal file
63
games/linux-dwarffortress/Makefile
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
# Created by: Michael Williams <ports@mgwsoftware.com>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= dwarffortress
|
||||
DISTVERSION= 0.43.05
|
||||
CATEGORIES= games linux
|
||||
MASTER_SITES= http://www.bay12games.com/dwarves/
|
||||
PKGNAMEPREFIX= linux-
|
||||
DISTNAME= df_${DISTVERSION:S|0.||:S|.|_|}_linux32
|
||||
|
||||
MAINTAINER= pawel@FreeBSD.org
|
||||
COMMENT= Dwarven fortress building game with ASCII graphics (Linux version)
|
||||
|
||||
LICENSE= BAY12
|
||||
LICENSE_NAME= Bay 12 Games Dwarf Fortress Licence
|
||||
LICENSE_TEXT= Copyright (c) 2002-2016. All rights are retained by Tarn Adams, \
|
||||
save the following: you may redistribute the unmodified binary \
|
||||
and accompanying files, provided you do so free of charge. You \
|
||||
may distribute modified text files from the data and raw \
|
||||
folders (see the readme.txt in those folders for more \
|
||||
information). We'd appreciate it if you credit yourself or an \
|
||||
alias somewhere for any modifications to prevent confusion \
|
||||
with vanilla DF (it helps with bug reports). If you'd like to \
|
||||
distribute a modified version of the game or portion of the \
|
||||
archive and are worried about copyright infringement, please \
|
||||
contact Tarn Adams at toadyone@bay12games.com.
|
||||
LICENSE_PERMS= dist-mirror pkg-mirror auto-accept
|
||||
|
||||
USES= linux tar:bzip2
|
||||
USE_LINUX= gtk2 libsndfile openal-soft sdlimage sdlttf xorglibs
|
||||
|
||||
SUB_FILES= dwarffortress
|
||||
NO_BUILD= yes
|
||||
WRKSRC= ${WRKDIR}/df_linux
|
||||
|
||||
ONLY_FOR_ARCHS= i386 amd64
|
||||
|
||||
PORTDOCS= README.linux readme.txt file\ changes.txt release\ notes.txt \
|
||||
command\ line.txt
|
||||
DESKTOP_ENTRIES="Dwarf Fortress" "" "" "dwarffortress" \
|
||||
"Game;Simulation;" false
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
do-install:
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/dwarffortress ${STAGEDIR}${PREFIX}/bin
|
||||
@${MKDIR} ${STAGEDIR}${PREFIX}/libexec/dwarffortress
|
||||
${BRANDELF} -t Linux ${WRKSRC}/libs/Dwarf_Fortress
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/libs/Dwarf_Fortress \
|
||||
${STAGEDIR}${PREFIX}/libexec/dwarffortress
|
||||
(cd ${WRKSRC}/libs && ${INSTALL_LIB} libgcc_s.so.1 libgraphics.so \
|
||||
libstdc++.so.6 ${STAGEDIR}${PREFIX}/libexec/dwarffortress)
|
||||
@${MKDIR} ${STAGEDIR}${DATADIR}/data
|
||||
(cd ${WRKSRC} && ${COPYTREE_SHARE} raw ${STAGEDIR}${DATADIR})
|
||||
(cd ${WRKSRC}/data && ${COPYTREE_SHARE} "announcement art dipscript \
|
||||
help index init initial_movies movies shader.fs shader.vs \
|
||||
sound speech" ${STAGEDIR}${DATADIR}/data)
|
||||
|
||||
do-install-DOCS-on:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
games/linux-dwarffortress/distinfo
Normal file
3
games/linux-dwarffortress/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1473957795
|
||||
SHA256 (df_43_05_linux32.tar.bz2) = 0334e6b35ecc36949f5c60ffc1eb46fade3365b55a44f2e11fd4ae799ba7819a
|
||||
SIZE (df_43_05_linux32.tar.bz2) = 12158550
|
||||
33
games/linux-dwarffortress/files/dwarffortress.in
Normal file
33
games/linux-dwarffortress/files/dwarffortress.in
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
#!/bin/sh
|
||||
|
||||
# FreeBSD Dwarf Fortress Loading Script
|
||||
# Created: December 2015
|
||||
# Created By: Michael Williams <ports@mgwsoftware.com>
|
||||
# Based off Loading Script for ArchLinux:
|
||||
# (https://projects.archlinux.org/svntogit/community.git/tree/trunk/dwarffortress?h=packages/dwarffortress)
|
||||
|
||||
#export SDL_DISABLE_LOCK_KEYS=1 # Work around for bug in Debian/Ubuntu SDL patch.
|
||||
#export SDL_VIDEO_CENTERED=1 # Centre the screen. Messes up resizing.
|
||||
|
||||
confdir="$HOME/.dwarffortress"
|
||||
prefix=%%PREFIX%%
|
||||
libdir=$prefix/libexec/dwarffortress
|
||||
sharedir=$prefix/share/dwarffortress
|
||||
datadir=$sharedir/data
|
||||
|
||||
if [ ! -d "$confdir" ]; then
|
||||
mkdir -p "$confdir/data"
|
||||
ln -s $libdir "$confdir/libs"
|
||||
ln -s $sharedir/raw "$confdir/raw"
|
||||
cp -rn $datadir/init "$confdir/data/init"
|
||||
fi
|
||||
|
||||
for link in announcement art dipscript help index initial_movies movies shader.fs shader.vs sound speech; do
|
||||
cp -r $datadir/$link "$confdir/data/$link"
|
||||
chmod -R u+w "$confdir/data/$link"
|
||||
done
|
||||
|
||||
export LD_LIBRARY_PATH=$libdir
|
||||
|
||||
cd "$confdir"
|
||||
exec ./libs/Dwarf_Fortress "$@"
|
||||
4
games/linux-dwarffortress/pkg-descr
Normal file
4
games/linux-dwarffortress/pkg-descr
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
Dwarf Fortress is a single-player fantasy game. You can control a dwarven
|
||||
outpost or an adventurer in a randomly generated, persistent world.
|
||||
|
||||
WWW: http://www.bay12games.com/dwarves/
|
||||
300
games/linux-dwarffortress/pkg-plist
Normal file
300
games/linux-dwarffortress/pkg-plist
Normal file
|
|
@ -0,0 +1,300 @@
|
|||
@(root,wheel,755) bin/dwarffortress
|
||||
libexec/dwarffortress/Dwarf_Fortress
|
||||
libexec/dwarffortress/libgcc_s.so.1
|
||||
libexec/dwarffortress/libgraphics.so
|
||||
libexec/dwarffortress/libstdc++.so.6
|
||||
%%DATADIR%%/data/announcement/diplomatrebuffed
|
||||
%%DATADIR%%/data/announcement/end2
|
||||
%%DATADIR%%/data/announcement/end3
|
||||
%%DATADIR%%/data/announcement/end4
|
||||
%%DATADIR%%/data/announcement/end5
|
||||
%%DATADIR%%/data/announcement/fortressintro
|
||||
%%DATADIR%%/data/announcement/hastyking
|
||||
%%DATADIR%%/data/announcement/kingarrival
|
||||
%%DATADIR%%/data/announcement/merchantexit
|
||||
%%DATADIR%%/data/announcement/merchantintro
|
||||
%%DATADIR%%/data/announcement/semiend
|
||||
%%DATADIR%%/data/announcement/unretire
|
||||
%%DATADIR%%/data/art/curses_640x300.bmp
|
||||
%%DATADIR%%/data/art/curses_640x300.png
|
||||
%%DATADIR%%/data/art/curses_800x600.bmp
|
||||
%%DATADIR%%/data/art/curses_800x600.png
|
||||
%%DATADIR%%/data/art/curses_square_16x16.bmp
|
||||
%%DATADIR%%/data/art/curses_square_16x16.png
|
||||
%%DATADIR%%/data/art/font license.txt
|
||||
%%DATADIR%%/data/art/font.ttf
|
||||
%%DATADIR%%/data/art/mouse.bmp
|
||||
%%DATADIR%%/data/art/mouse.png
|
||||
%%DATADIR%%/data/dipscript/dwarf_liaison
|
||||
%%DATADIR%%/data/dipscript/elves_firstcontact
|
||||
%%DATADIR%%/data/dipscript/elves_standard
|
||||
%%DATADIR%%/data/dipscript/human_standard
|
||||
%%DATADIR%%/data/dipscript/human_trade
|
||||
%%DATADIR%%/data/dipscript/text/dwarf_liaison1
|
||||
%%DATADIR%%/data/dipscript/text/dwarf_liaison_bye
|
||||
%%DATADIR%%/data/dipscript/text/elves_firstcontact1
|
||||
%%DATADIR%%/data/dipscript/text/elves_firstcontact2
|
||||
%%DATADIR%%/data/dipscript/text/elves_standard1
|
||||
%%DATADIR%%/data/dipscript/text/elves_standard_bye
|
||||
%%DATADIR%%/data/dipscript/text/human_standard1
|
||||
%%DATADIR%%/data/dipscript/text/human_standard_bye
|
||||
%%DATADIR%%/data/dipscript/text/human_trade1
|
||||
%%DATADIR%%/data/dipscript/text/human_trade_bye
|
||||
%%DATADIR%%/data/help/a_first
|
||||
%%DATADIR%%/data/help/a_icons
|
||||
%%DATADIR%%/data/help/a_intro
|
||||
%%DATADIR%%/data/help/a_keys
|
||||
%%DATADIR%%/data/help/a_main
|
||||
%%DATADIR%%/data/help/accounts
|
||||
%%DATADIR%%/data/help/building_clutter
|
||||
%%DATADIR%%/data/help/crafts
|
||||
%%DATADIR%%/data/help/defense
|
||||
%%DATADIR%%/data/help/food
|
||||
%%DATADIR%%/data/help/icons
|
||||
%%DATADIR%%/data/help/icons_creature
|
||||
%%DATADIR%%/data/help/icons_dwarf
|
||||
%%DATADIR%%/data/help/icons_items
|
||||
%%DATADIR%%/data/help/icons_terrain
|
||||
%%DATADIR%%/data/help/intro
|
||||
%%DATADIR%%/data/help/living_quarters
|
||||
%%DATADIR%%/data/help/machines
|
||||
%%DATADIR%%/data/help/main
|
||||
%%DATADIR%%/data/help/menu_activity_zones
|
||||
%%DATADIR%%/data/help/menu_builditem
|
||||
%%DATADIR%%/data/help/menu_buildjob
|
||||
%%DATADIR%%/data/help/menu_buildjob_animaltrap
|
||||
%%DATADIR%%/data/help/menu_buildjob_depot
|
||||
%%DATADIR%%/data/help/menu_buildjob_door
|
||||
%%DATADIR%%/data/help/menu_buildjob_farmplot
|
||||
%%DATADIR%%/data/help/menu_buildjob_lever
|
||||
%%DATADIR%%/data/help/menu_buildjob_shop
|
||||
%%DATADIR%%/data/help/menu_buildjob_siege
|
||||
%%DATADIR%%/data/help/menu_buildjob_stockpile
|
||||
%%DATADIR%%/data/help/menu_civlist
|
||||
%%DATADIR%%/data/help/menu_designations
|
||||
%%DATADIR%%/data/help/menu_jobunitlist
|
||||
%%DATADIR%%/data/help/menu_look
|
||||
%%DATADIR%%/data/help/menu_make_buildings
|
||||
%%DATADIR%%/data/help/menu_manager
|
||||
%%DATADIR%%/data/help/menu_military
|
||||
%%DATADIR%%/data/help/menu_nobles
|
||||
%%DATADIR%%/data/help/menu_orders
|
||||
%%DATADIR%%/data/help/menu_professions
|
||||
%%DATADIR%%/data/help/menu_roomlist
|
||||
%%DATADIR%%/data/help/menu_rooms
|
||||
%%DATADIR%%/data/help/menu_squads
|
||||
%%DATADIR%%/data/help/menu_status
|
||||
%%DATADIR%%/data/help/menu_status_animals
|
||||
%%DATADIR%%/data/help/menu_status_currency
|
||||
%%DATADIR%%/data/help/menu_status_justice
|
||||
%%DATADIR%%/data/help/menu_status_kitchen
|
||||
%%DATADIR%%/data/help/menu_status_prices
|
||||
%%DATADIR%%/data/help/menu_status_stocks
|
||||
%%DATADIR%%/data/help/menu_status_stone
|
||||
%%DATADIR%%/data/help/menu_stockpiles
|
||||
%%DATADIR%%/data/help/menu_viewunit
|
||||
%%DATADIR%%/data/help/menu_wages
|
||||
%%DATADIR%%/data/help/menus
|
||||
%%DATADIR%%/data/help/mining
|
||||
%%DATADIR%%/data/help/new_region
|
||||
%%DATADIR%%/data/help/outpost
|
||||
%%DATADIR%%/data/help/practice
|
||||
%%DATADIR%%/data/help/r_intro
|
||||
%%DATADIR%%/data/help/r_main
|
||||
%%DATADIR%%/data/help/setup_game
|
||||
%%DATADIR%%/data/help/storage
|
||||
%%DATADIR%%/data/help/table_item_designations
|
||||
%%DATADIR%%/data/help/tables
|
||||
%%DATADIR%%/data/help/technical
|
||||
%%DATADIR%%/data/help/text_viewer
|
||||
%%DATADIR%%/data/help/text_viewer2
|
||||
%%DATADIR%%/data/help/text_viewer3
|
||||
%%DATADIR%%/data/help/trading
|
||||
%%DATADIR%%/data/help/unit_profile
|
||||
%%DATADIR%%/data/help/water
|
||||
%%DATADIR%%/data/help/wood
|
||||
%%DATADIR%%/data/index
|
||||
%%DATADIR%%/data/init/announcements.txt
|
||||
%%DATADIR%%/data/init/arena.txt
|
||||
%%DATADIR%%/data/init/colors.txt
|
||||
%%DATADIR%%/data/init/d_init.txt
|
||||
%%DATADIR%%/data/init/init.txt
|
||||
%%DATADIR%%/data/init/interface.txt
|
||||
%%DATADIR%%/data/init/world_gen.txt
|
||||
%%DATADIR%%/data/initial_movies/bay12games.cmv
|
||||
%%DATADIR%%/data/initial_movies/dwarf_fortress.cmv
|
||||
%%DATADIR%%/data/initial_movies/toadyone.cmv
|
||||
%%DATADIR%%/data/shader.fs
|
||||
%%DATADIR%%/data/shader.vs
|
||||
%%DATADIR%%/data/sound/DFINTRO.ogg
|
||||
%%DATADIR%%/data/sound/DFINTROEND.ogg
|
||||
%%DATADIR%%/data/sound/DFPICK.ogg
|
||||
%%DATADIR%%/data/sound/DFRUBBLE.ogg
|
||||
%%DATADIR%%/data/sound/baybeyond.ogg
|
||||
%%DATADIR%%/data/sound/bayend.ogg
|
||||
%%DATADIR%%/data/sound/bayquality.ogg
|
||||
%%DATADIR%%/data/sound/baystart.ogg
|
||||
%%DATADIR%%/data/sound/song_game.ogg
|
||||
%%DATADIR%%/data/sound/song_title.ogg
|
||||
%%DATADIR%%/data/speech/ab_specific_hf_seeker.txt
|
||||
%%DATADIR%%/data/speech/animal_slayer.txt
|
||||
%%DATADIR%%/data/speech/arch_info_justification.txt
|
||||
%%DATADIR%%/data/speech/child_age_proclamation.txt
|
||||
%%DATADIR%%/data/speech/current_profession_no_year.txt
|
||||
%%DATADIR%%/data/speech/current_profession_year.txt
|
||||
%%DATADIR%%/data/speech/curse.txt
|
||||
%%DATADIR%%/data/speech/dwarf.txt
|
||||
%%DATADIR%%/data/speech/elf.txt
|
||||
%%DATADIR%%/data/speech/family_relationship_additional.txt
|
||||
%%DATADIR%%/data/speech/family_relationship_additional_dead.txt
|
||||
%%DATADIR%%/data/speech/family_relationship_no_spec.txt
|
||||
%%DATADIR%%/data/speech/family_relationship_no_spec_dead.txt
|
||||
%%DATADIR%%/data/speech/family_relationship_spec.txt
|
||||
%%DATADIR%%/data/speech/family_relationship_spec_dead.txt
|
||||
%%DATADIR%%/data/speech/general.txt
|
||||
%%DATADIR%%/data/speech/goodbye_worship_1.txt
|
||||
%%DATADIR%%/data/speech/goodbye_worship_2.txt
|
||||
%%DATADIR%%/data/speech/goodbye_worship_3.txt
|
||||
%%DATADIR%%/data/speech/greet.txt
|
||||
%%DATADIR%%/data/speech/greet_baby.txt
|
||||
%%DATADIR%%/data/speech/greet_reply.txt
|
||||
%%DATADIR%%/data/speech/greet_reply_after_hero.txt
|
||||
%%DATADIR%%/data/speech/greet_reply_diff_language.txt
|
||||
%%DATADIR%%/data/speech/greet_reply_unusual_first.txt
|
||||
%%DATADIR%%/data/speech/greet_worship.txt
|
||||
%%DATADIR%%/data/speech/guard_profession.txt
|
||||
%%DATADIR%%/data/speech/guard_warning.txt
|
||||
%%DATADIR%%/data/speech/hist_fig_slayer.txt
|
||||
%%DATADIR%%/data/speech/hunting_profession.txt
|
||||
%%DATADIR%%/data/speech/hunting_profession_year.txt
|
||||
%%DATADIR%%/data/speech/justification_antithetical.txt
|
||||
%%DATADIR%%/data/speech/justification_experience.txt
|
||||
%%DATADIR%%/data/speech/justification_proximity.txt
|
||||
%%DATADIR%%/data/speech/justification_reminder.txt
|
||||
%%DATADIR%%/data/speech/justification_representation.txt
|
||||
%%DATADIR%%/data/speech/lair_hunter_minotaur.txt
|
||||
%%DATADIR%%/data/speech/mercenary_profession.txt
|
||||
%%DATADIR%%/data/speech/mercenary_profession_year.txt
|
||||
%%DATADIR%%/data/speech/no_family.txt
|
||||
%%DATADIR%%/data/speech/past_hunting_profession.txt
|
||||
%%DATADIR%%/data/speech/past_mercenary_profession.txt
|
||||
%%DATADIR%%/data/speech/past_profession_no_year.txt
|
||||
%%DATADIR%%/data/speech/past_profession_year.txt
|
||||
%%DATADIR%%/data/speech/past_scouting_profession.txt
|
||||
%%DATADIR%%/data/speech/past_snatcher_profession.txt
|
||||
%%DATADIR%%/data/speech/past_thief_profession.txt
|
||||
%%DATADIR%%/data/speech/past_wandering_profession.txt
|
||||
%%DATADIR%%/data/speech/positive.txt
|
||||
%%DATADIR%%/data/speech/same_site_ab_specific_hf_seeker.txt
|
||||
%%DATADIR%%/data/speech/same_site_specific_hf_seeker.txt
|
||||
%%DATADIR%%/data/speech/scouting_profession.txt
|
||||
%%DATADIR%%/data/speech/scouting_profession_year.txt
|
||||
%%DATADIR%%/data/speech/site_specific_hf_seeker.txt
|
||||
%%DATADIR%%/data/speech/slayer.txt
|
||||
%%DATADIR%%/data/speech/snatcher_profession.txt
|
||||
%%DATADIR%%/data/speech/snatcher_profession_year.txt
|
||||
%%DATADIR%%/data/speech/soldier_profession.txt
|
||||
%%DATADIR%%/data/speech/task_recommendation.txt
|
||||
%%DATADIR%%/data/speech/temple_already_member.txt
|
||||
%%DATADIR%%/data/speech/temple_become_member.txt
|
||||
%%DATADIR%%/data/speech/thief_profession.txt
|
||||
%%DATADIR%%/data/speech/thief_profession_year.txt
|
||||
%%DATADIR%%/data/speech/threat.txt
|
||||
%%DATADIR%%/data/speech/unknown_hf_seeker.txt
|
||||
%%DATADIR%%/data/speech/wandering_profession.txt
|
||||
%%DATADIR%%/data/speech/wandering_profession_year.txt
|
||||
%%DATADIR%%/raw/graphics/example/dwarves.bmp
|
||||
%%DATADIR%%/raw/graphics/graphics_example.txt
|
||||
%%DATADIR%%/raw/interaction examples/interaction_disturbance.txt
|
||||
%%DATADIR%%/raw/interaction examples/interaction_region.txt
|
||||
%%DATADIR%%/raw/interaction examples/interaction_secret.txt
|
||||
%%DATADIR%%/raw/interaction examples/interaction_underground_special.txt
|
||||
%%DATADIR%%/raw/interaction examples/interaction_vampire.txt
|
||||
%%DATADIR%%/raw/interaction examples/interaction_werebeast.txt
|
||||
%%DATADIR%%/raw/objects/b_detail_plan_default.txt
|
||||
%%DATADIR%%/raw/objects/body_default.txt
|
||||
%%DATADIR%%/raw/objects/body_rcp.txt
|
||||
%%DATADIR%%/raw/objects/building_custom.txt
|
||||
%%DATADIR%%/raw/objects/c_variation_default.txt
|
||||
%%DATADIR%%/raw/objects/creature_amphibians.txt
|
||||
%%DATADIR%%/raw/objects/creature_annelids.txt
|
||||
%%DATADIR%%/raw/objects/creature_birds.txt
|
||||
%%DATADIR%%/raw/objects/creature_birds_new.txt
|
||||
%%DATADIR%%/raw/objects/creature_bug_slug_new.txt
|
||||
%%DATADIR%%/raw/objects/creature_desert_new.txt
|
||||
%%DATADIR%%/raw/objects/creature_domestic.txt
|
||||
%%DATADIR%%/raw/objects/creature_equipment.txt
|
||||
%%DATADIR%%/raw/objects/creature_fanciful.txt
|
||||
%%DATADIR%%/raw/objects/creature_insects.txt
|
||||
%%DATADIR%%/raw/objects/creature_large_mountain.txt
|
||||
%%DATADIR%%/raw/objects/creature_large_ocean.txt
|
||||
%%DATADIR%%/raw/objects/creature_large_riverlake.txt
|
||||
%%DATADIR%%/raw/objects/creature_large_temperate.txt
|
||||
%%DATADIR%%/raw/objects/creature_large_tropical.txt
|
||||
%%DATADIR%%/raw/objects/creature_large_tundra.txt
|
||||
%%DATADIR%%/raw/objects/creature_mountain_new.txt
|
||||
%%DATADIR%%/raw/objects/creature_next_underground.txt
|
||||
%%DATADIR%%/raw/objects/creature_ocean_new.txt
|
||||
%%DATADIR%%/raw/objects/creature_other.txt
|
||||
%%DATADIR%%/raw/objects/creature_reptiles.txt
|
||||
%%DATADIR%%/raw/objects/creature_riverlakepool_new.txt
|
||||
%%DATADIR%%/raw/objects/creature_small_mammal_new.txt
|
||||
%%DATADIR%%/raw/objects/creature_small_mammals.txt
|
||||
%%DATADIR%%/raw/objects/creature_small_ocean.txt
|
||||
%%DATADIR%%/raw/objects/creature_small_riverlake.txt
|
||||
%%DATADIR%%/raw/objects/creature_standard.txt
|
||||
%%DATADIR%%/raw/objects/creature_subterranean.txt
|
||||
%%DATADIR%%/raw/objects/creature_temperate_new.txt
|
||||
%%DATADIR%%/raw/objects/creature_tropical_new.txt
|
||||
%%DATADIR%%/raw/objects/creature_tundra_taiga_new.txt
|
||||
%%DATADIR%%/raw/objects/descriptor_color_standard.txt
|
||||
%%DATADIR%%/raw/objects/descriptor_pattern_iris_eye.txt
|
||||
%%DATADIR%%/raw/objects/descriptor_pattern_pupil_eye.txt
|
||||
%%DATADIR%%/raw/objects/descriptor_pattern_special.txt
|
||||
%%DATADIR%%/raw/objects/descriptor_shape_standard.txt
|
||||
%%DATADIR%%/raw/objects/entity_default.txt
|
||||
%%DATADIR%%/raw/objects/examples and notes/gaits.txt
|
||||
%%DATADIR%%/raw/objects/examples and notes/item_instrument_example.txt
|
||||
%%DATADIR%%/raw/objects/examples and notes/reaction_instrument_example.txt
|
||||
%%DATADIR%%/raw/objects/inorganic_metal.txt
|
||||
%%DATADIR%%/raw/objects/inorganic_other.txt
|
||||
%%DATADIR%%/raw/objects/inorganic_stone_gem.txt
|
||||
%%DATADIR%%/raw/objects/inorganic_stone_layer.txt
|
||||
%%DATADIR%%/raw/objects/inorganic_stone_mineral.txt
|
||||
%%DATADIR%%/raw/objects/inorganic_stone_soil.txt
|
||||
%%DATADIR%%/raw/objects/interaction_standard.txt
|
||||
%%DATADIR%%/raw/objects/item_ammo.txt
|
||||
%%DATADIR%%/raw/objects/item_armor.txt
|
||||
%%DATADIR%%/raw/objects/item_food.txt
|
||||
%%DATADIR%%/raw/objects/item_gloves.txt
|
||||
%%DATADIR%%/raw/objects/item_helm.txt
|
||||
%%DATADIR%%/raw/objects/item_pants.txt
|
||||
%%DATADIR%%/raw/objects/item_shield.txt
|
||||
%%DATADIR%%/raw/objects/item_shoes.txt
|
||||
%%DATADIR%%/raw/objects/item_siegeammo.txt
|
||||
%%DATADIR%%/raw/objects/item_tool.txt
|
||||
%%DATADIR%%/raw/objects/item_toy.txt
|
||||
%%DATADIR%%/raw/objects/item_trapcomp.txt
|
||||
%%DATADIR%%/raw/objects/item_weapon.txt
|
||||
%%DATADIR%%/raw/objects/language_DWARF.txt
|
||||
%%DATADIR%%/raw/objects/language_ELF.txt
|
||||
%%DATADIR%%/raw/objects/language_GOBLIN.txt
|
||||
%%DATADIR%%/raw/objects/language_HUMAN.txt
|
||||
%%DATADIR%%/raw/objects/language_SYM.txt
|
||||
%%DATADIR%%/raw/objects/language_words.txt
|
||||
%%DATADIR%%/raw/objects/material_template_default.txt
|
||||
%%DATADIR%%/raw/objects/plant_crops.txt
|
||||
%%DATADIR%%/raw/objects/plant_garden.txt
|
||||
%%DATADIR%%/raw/objects/plant_grasses.txt
|
||||
%%DATADIR%%/raw/objects/plant_new_trees.txt
|
||||
%%DATADIR%%/raw/objects/plant_standard.txt
|
||||
%%DATADIR%%/raw/objects/reaction_adv_carpenter.txt
|
||||
%%DATADIR%%/raw/objects/reaction_other.txt
|
||||
%%DATADIR%%/raw/objects/reaction_smelter.txt
|
||||
%%DATADIR%%/raw/objects/text/book_art.txt
|
||||
%%DATADIR%%/raw/objects/text/book_instruction.txt
|
||||
%%DATADIR%%/raw/objects/text/secret_death.txt
|
||||
%%DATADIR%%/raw/objects/tissue_template_default.txt
|
||||
%%DATADIR%%/raw/readme.txt
|
||||
@dir %%DATADIR%%/data/init/macros
|
||||
@dir %%DATADIR%%/data/movies
|
||||
|
|
@ -9,7 +9,7 @@ MASTER_SITES= http://liquidwar.sunsite.dk/archive/ \
|
|||
SAVANNAH \
|
||||
http://ufoot.hd.free.fr/pub/archive/
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= You control an army of liquid and have to try and eat your opponents
|
||||
|
||||
LIB_DEPENDS= liballeg.so:devel/allegro
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ PORTREVISION= 5
|
|||
CATEGORIES= games
|
||||
MASTER_SITES= http://shh.thathost.com/pub-unix/files/
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Solitaire card game for X Window System
|
||||
|
||||
LIB_DEPENDS= libshhopt.so.1:devel/libshhopt \
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ PORTVERSION= 1.8.4
|
|||
CATEGORIES= games
|
||||
MASTER_SITES= SF/sdl-${PORTNAME}/sdl_${PORTNAME}/${PORTVERSION}
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Classic WW1 biplane game
|
||||
|
||||
LICENSE= GPLv2+
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ CATEGORIES= games
|
|||
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-linux/${PORTVERSION}
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}-linux_source
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Action-puzzle maze escape game (SDL)
|
||||
|
||||
USE_SDL= gfx image mixer sdl
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ CATEGORIES= games
|
|||
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/1.1
|
||||
DISTNAME= ${PORTNAME}-1.1
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= XRally is a Linux clone of the classic Rally X arcade game
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ CATEGORIES= games
|
|||
MASTER_SITES= http://www.mavetju.org/download/adopted/
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}-ss-10.20
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Fight off villainous robots (X version)
|
||||
|
||||
USES= imake
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= graphite2
|
||||
PORTVERSION= 1.3.8
|
||||
PORTVERSION= 1.3.9
|
||||
CATEGORIES= graphics print
|
||||
|
||||
MAINTAINER= office@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (silnrsi-graphite-1.3.8_GH0.tar.gz) = 954f3dc88f4cf02d892697f4fb7e5bb5a515da81eb26e63f7d1a046459ed7842
|
||||
SIZE (silnrsi-graphite-1.3.8_GH0.tar.gz) = 3885855
|
||||
TIMESTAMP = 1479331876
|
||||
SHA256 (silnrsi-graphite-1.3.9_GH0.tar.gz) = f82f92d86a63da79eba10a37c80d943dce883bd72dbc99ebe5bdb7022d3e2391
|
||||
SIZE (silnrsi-graphite-1.3.9_GH0.tar.gz) = 3888994
|
||||
|
|
|
|||
|
|
@ -124,7 +124,7 @@ CONFIGURE_ARGS+= --disable-opencl
|
|||
CONFIGURE_ARGS+= --enable-osmesa
|
||||
|
||||
# gallium
|
||||
BUILD_DEPENDS+= llvm${MESA_LLVM_VER}>=3.7.l_1:devel/llvm${MESA_LLVM_VER}
|
||||
BUILD_DEPENDS+= llvm${MESA_LLVM_VER}>=3.7.1_1:devel/llvm${MESA_LLVM_VER}
|
||||
.if ${COMPONENT:Mdri} != "" || ${COMPONENT:Mclover} != "" || ${COMPONENT:Megl} != ""
|
||||
RUN_DEPENDS+= llvm${MESA_LLVM_VER}>=3.7.1_1:devel/llvm${MESA_LLVM_VER}
|
||||
.endif
|
||||
|
|
|
|||
|
|
@ -17,18 +17,15 @@ RUN_DEPENDS= p5-HTTP-Daemon>0:www/p5-HTTP-Daemon \
|
|||
p5-libwww>0:www/p5-libwww
|
||||
|
||||
USES= perl5 shebangfix
|
||||
SHEBANG_FILES= ${WRKSRC}/${PORTNAME}.pl
|
||||
SHEBANG_FILES= ${PORTNAME}.pl
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= yama-natuki
|
||||
GH_PROJECT= ${PORTNAME}.pl
|
||||
USE_RC_SUBR= twochproxy
|
||||
NO_BUILD= yes
|
||||
RC_SUBR= ${WRKDIR}/twochproxy
|
||||
SUB_FILES= ${FILESDIR_REL}/twochproxy
|
||||
PLIST_FILES= sbin/${PORTNAME}.pl \
|
||||
etc/rc.d/twochproxy
|
||||
PLIST_FILES= sbin/${PORTNAME}.pl
|
||||
|
||||
do-install:
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${STAGEDIR}${PREFIX}/sbin
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/twochproxy ${STAGEDIR}${PREFIX}/etc/rc.d
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= gcc
|
||||
PORTVERSION= 5.4.1.s20161108
|
||||
PORTVERSION= 5.4.1.s20161115
|
||||
CATEGORIES= lang java
|
||||
MASTER_SITES= GCC/snapshots/${DISTVERSION}
|
||||
PKGNAMESUFFIX= ${SUFFIX}-devel
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1478820588
|
||||
SHA256 (gcc-5-20161108.tar.bz2) = 5c3dbf8d63b22d833922ed4ec9c19276bf8a8cfcf1c441f5c6b4fd018e79dba8
|
||||
SIZE (gcc-5-20161108.tar.bz2) = 91780540
|
||||
TIMESTAMP = 1479289178
|
||||
SHA256 (gcc-5-20161115.tar.bz2) = 0a1095c788398d3c5d0693ed06da7c3154920a0a8ac8b95db47ed13ad9bd3f84
|
||||
SIZE (gcc-5-20161115.tar.bz2) = 91785160
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ CATEGORIES?= lang
|
|||
MASTER_SITES= http://www.mavetju.org/download/adopted/
|
||||
DISTNAME= php_manual_${PHP_LANG}-${PORTVERSION}
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT?= PHP documentation in HTML
|
||||
|
||||
NO_BUILD= yes
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ CATEGORIES= lang
|
|||
MASTER_SITES= SF/tcl/Tcl/
|
||||
DISTFILES=
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Documentation for TCL (Tool Command Language)
|
||||
|
||||
NO_WRKSUBDIR= yes
|
||||
|
|
|
|||
|
|
@ -3,13 +3,13 @@
|
|||
PORTNAME= neomutt
|
||||
PORTVERSION= 20161104
|
||||
DISTVERSIONPREFIX= ${PORTNAME}-
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= mail
|
||||
|
||||
MAINTAINER= bapt@FreeBSD.org
|
||||
COMMENT= Bringing together all the Mutt Code
|
||||
|
||||
LICENSE= GPLv1
|
||||
LICENSE= GPLv2
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.md
|
||||
|
||||
RUN_DEPENDS= ${LOCALBASE}/etc/mime.types:misc/mime-support \
|
||||
|
|
@ -26,13 +26,16 @@ SHEBANG_FILES= smime_keys.pl
|
|||
OPTIONS_DEFINE= NLS DOCS SASL ICONV IDN FLOCK GPGME NOTMUCH
|
||||
OPTIONS_DEFAULT=SASL TOKYOCABINET NOTMUCH GPGME
|
||||
OPTIONS_RADIO= HCACHE
|
||||
OPTIONS_RADIO_HCACHE= TOKYOCABINET LMDB
|
||||
OPTIONS_RADIO_HCACHE= BDB GDBM KYOTOCABINET LMDB QDBM TOKYOCABINET
|
||||
|
||||
FLOCK_DESC= Use flock() to lock files
|
||||
GPGME_DESC= Use gpgme to handle pgp
|
||||
NOTMUCH_DESC= Use notmuch for tagging and searching
|
||||
TOKYOCABINET_DESC= Use TokyoCabinet as header-cache backend
|
||||
LMDB_DESC= Use LMDB as header-cache backend
|
||||
HCACHE_DESC= Header-cache backend
|
||||
KYOTOCABINET_DESC= Kyoto Cabinet support
|
||||
LMDB_DESC= Lightning Memory-Mapped Database support
|
||||
QDBM_DESC= Quick DataBase Manager support
|
||||
TOKYOCABINET_DESC= Tokyo Cabinet support
|
||||
|
||||
CONFIGURE_ARGS= --disable-dependency-tracking \
|
||||
--with-docdir="${DOCSDIR}" \
|
||||
|
|
@ -44,16 +47,23 @@ CONFIGURE_ARGS= --disable-dependency-tracking \
|
|||
--enable-compressed \
|
||||
--enable-hcache \
|
||||
--enable-sidebar \
|
||||
--without-qdbm \
|
||||
--disable-fcntl \
|
||||
--enable-external-dotlock
|
||||
|
||||
# Header cache
|
||||
BDB_CONFIGURE_WITH= bdb
|
||||
BDB_USES= bdb
|
||||
GDBM_CONFIGURE_WITH= gdbm
|
||||
GDBM_LIB_DEPENDS= libgdbm.so:databases/gdbm
|
||||
KYOTOCABINET_CONFIGURE_WITH= kyotocabinet
|
||||
KYOTOCABINET_LIB_DEPENDS= libkyotocabinet.so:databases/kyotocabinet
|
||||
LMDB_CONFIGURE_WITH= lmdb
|
||||
LMDB_LIB_DEPENDS= liblmdb.so:databases/lmdb
|
||||
QDBM_CONFIGURE_WITH= qdbm
|
||||
QDBM_LIB_DEPENDS= libqdbm.so:databases/qdbm
|
||||
TOKYOCABINET_CONFIGURE_WITH= tokyocabinet
|
||||
TOKYOCABINET_LIB_DEPENDS= libtokyocabinet.so:databases/tokyocabinet
|
||||
|
||||
LMDB_CONFIGURE_WITH= lmdb
|
||||
LMDB_LIB_DEPENDS= liblmdb.so:databases/lmdb
|
||||
|
||||
NLS_CONFIGURE_ENABLE= nls
|
||||
NLS_USES= gettext
|
||||
NLS_IMPLIES= ICONV
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
PORTNAME= rmilter
|
||||
PORTVERSION= 1.9.2
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= mail
|
||||
|
||||
MAINTAINER= vsevolod@FreeBSD.org
|
||||
|
|
@ -9,9 +10,7 @@ COMMENT= Milter that performs rspamd, clamav, and other checks
|
|||
|
||||
LICENSE= BSD2CLAUSE
|
||||
|
||||
LIB_DEPENDS= libpcre.so:devel/pcre \
|
||||
libopendkim.so:mail/opendkim \
|
||||
libmemcached.so:databases/libmemcached
|
||||
LIB_DEPENDS= libpcre.so:devel/pcre
|
||||
|
||||
BROKEN_armv6= Fails to configure in cmake
|
||||
BROKEN_mips= Fails to compile: error: Unsupported word size
|
||||
|
|
@ -27,16 +26,24 @@ USE_GNOME= glib20
|
|||
USERS= _rmilter
|
||||
GROUPS= _rmilter
|
||||
|
||||
CMAKE_ARGS+= -DENABLE_DKIM=ON
|
||||
|
||||
WITH_SENDMAIL_BASE= yes
|
||||
|
||||
OPTIONS_DEFINE= DKIM
|
||||
OPTIONS_DEFAULT= DKIM
|
||||
|
||||
DKIM_DESC= DKIM signing support
|
||||
DKIM_LIB_DEPENDS= libopendkim.so:mail/opendkim
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
# Workaround to prevent bsd.milter.mk from breaking the build with the recent clang
|
||||
WITHOUT_MILTER_LDFLAGS= yes
|
||||
.include "${PORTSDIR}/mail/sendmail/bsd.milter.mk"
|
||||
|
||||
.if ! ${PORT_OPTIONS:MDKIM}
|
||||
CMAKE_ARGS+= -DENABLE_DKIM=OFF
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
${SED} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \
|
||||
${WRKSRC}/freebsd/rmilter > ${WRKDIR}/rmilter
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= rspamd
|
||||
PORTVERSION= 1.4.0.a1.01092016
|
||||
PORTVERSION= 1.4.0.a2.16112016
|
||||
CATEGORIES= mail
|
||||
PKGNAMESUFFIX= -devel
|
||||
|
||||
|
|
@ -23,7 +23,7 @@ RSPAMD_VERSION= 1.4.0
|
|||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= vstakhov
|
||||
GH_PROJECT= rspamd
|
||||
GH_TAGNAME= 99c2eb2
|
||||
GH_TAGNAME= a5eef8b
|
||||
|
||||
OPTIONS_DEFINE= GPERF REDIRECTOR HYPERSCAN
|
||||
GPERF_DESC= Google perf-tools profiling
|
||||
|
|
@ -67,7 +67,7 @@ WITH_DEBUG= yes
|
|||
|
||||
.if ${PORT_OPTIONS:MHYPERSCAN}
|
||||
CMAKE_ARGS+= -DENABLE_HYPERSCAN=ON
|
||||
BUILD_DEPENDS+= ${LOCALBASE}/lib/libhs.a:devel/hyperscan
|
||||
LIB_DEPENDS+= libhs.so:devel/hyperscan
|
||||
ONLY_FOR_ARCHS= amd64
|
||||
.endif
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1472732727
|
||||
SHA256 (vstakhov-rspamd-1.4.0.a1.01092016-99c2eb2_GH0.tar.gz) = 12b3a57fff521bb15d99f339fb36a55f9ecee39e6f5d18a516a830f2e2e20ed0
|
||||
SIZE (vstakhov-rspamd-1.4.0.a1.01092016-99c2eb2_GH0.tar.gz) = 1929783
|
||||
TIMESTAMP = 1479286296
|
||||
SHA256 (vstakhov-rspamd-1.4.0.a2.16112016-a5eef8b_GH0.tar.gz) = 72f8b39c36c1900f7dd1e1f8208dc20a392fde5540f19955321170bf0d904149
|
||||
SIZE (vstakhov-rspamd-1.4.0.a2.16112016-a5eef8b_GH0.tar.gz) = 2295731
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
--- CMakeLists.txt.orig 2016-07-03 20:55:47 UTC
|
||||
--- CMakeLists.txt.orig 2016-10-19 16:09:11 UTC
|
||||
+++ CMakeLists.txt
|
||||
@@ -1223,6 +1223,21 @@ ELSE(WANT_SYSTEMD_UNITS MATCHES "ON")
|
||||
@@ -1261,6 +1261,23 @@ ELSE(WANT_SYSTEMD_UNITS MATCHES "ON")
|
||||
ENDIF(WANT_SYSTEMD_UNITS MATCHES "ON")
|
||||
IF(BUILD_PORT)
|
||||
INSTALL_IF_NOT_EXISTS(${MAIN_CONF} ${CONFDIR} "rspamd.conf" ".sample")
|
||||
|
|
@ -13,7 +13,9 @@
|
|||
+ INSTALL_IF_NOT_EXISTS("conf/2tld.inc" ${CONFDIR} "2tld.inc" ".sample")
|
||||
+ INSTALL_IF_NOT_EXISTS("conf/mime_types.inc" ${CONFDIR} "mime_types.inc" ".sample")
|
||||
+ INSTALL_IF_NOT_EXISTS("conf/composites.conf" ${CONFDIR} "composites.conf" ".sample")
|
||||
+ INSTALL_IF_NOT_EXISTS("conf/maillist.inc" ${CONFDIR} "maillist.inc" ".sample")
|
||||
+ INSTALL_IF_NOT_EXISTS("conf/metrics.conf" ${CONFDIR} "metrics.conf" ".sample")
|
||||
+ INSTALL_IF_NOT_EXISTS("conf/mid.inc" ${CONFDIR} "mid.inc" ".sample")
|
||||
+ INSTALL_IF_NOT_EXISTS("conf/modules.conf" ${CONFDIR} "modules.conf" ".sample")
|
||||
+ INSTALL_IF_NOT_EXISTS("conf/statistic.conf" ${CONFDIR} "statistic.conf" ".sample")
|
||||
+ INSTALL_IF_NOT_EXISTS("conf/surbl-whitelist.inc" ${CONFDIR} "surbl-whitelist.inc" ".sample")
|
||||
|
|
|
|||
|
|
@ -34,13 +34,15 @@ pidfile=${rspamd_pidfile:-"/var/run/rspamd/rspamd.pid"}
|
|||
command=%%PREFIX%%/bin/rspamd
|
||||
command_adm=%%PREFIX%%/bin/rspamadm
|
||||
restart_precmd="rspamd_checkconfig"
|
||||
reload_precmd="rspamd_checkconfig"
|
||||
configtest_cmd="rspamd_checkconfig"
|
||||
reopenlog_cmd="reopenlog_cmd"
|
||||
|
||||
required_files=%%PREFIX%%/etc/rspamd/rspamd.conf
|
||||
command_args="-u ${rspamd_user} -g ${rspamd_group}"
|
||||
extra_commands="configtest reopenlog"
|
||||
extra_commands="reload configtest reopenlog"
|
||||
stop_postcmd="rm -f $pidfile"
|
||||
sig_reload="HUP"
|
||||
|
||||
rspamd_checkconfig()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -12,7 +12,9 @@ bin/rspamc
|
|||
@sample %%ETCDIR%%/composites.conf.sample
|
||||
@sample %%ETCDIR%%/dmarc_whitelist.inc.sample
|
||||
@sample %%ETCDIR%%/logging.inc.sample
|
||||
@sample %%ETCDIR%%/maillist.inc.sample
|
||||
@sample %%ETCDIR%%/metrics.conf.sample
|
||||
@sample %%ETCDIR%%/mid.inc.sample
|
||||
@sample %%ETCDIR%%/modules.conf.sample
|
||||
%%ETCDIR%%/modules.d/chartable.conf
|
||||
%%ETCDIR%%/modules.d/dkim.conf
|
||||
|
|
@ -24,6 +26,7 @@ bin/rspamc
|
|||
%%ETCDIR%%/modules.d/ip_score.conf
|
||||
%%ETCDIR%%/modules.d/maillist.conf
|
||||
%%ETCDIR%%/modules.d/mime_types.conf
|
||||
%%ETCDIR%%/modules.d/mid.conf
|
||||
%%ETCDIR%%/modules.d/multimap.conf
|
||||
%%ETCDIR%%/modules.d/once_received.conf
|
||||
%%ETCDIR%%/modules.d/phishing.conf
|
||||
|
|
@ -51,7 +54,10 @@ lib/rspamd/librspamd-actrie.so
|
|||
%%DATADIR%%/lua/asn.lua
|
||||
%%DATADIR%%/lua/dcc.lua
|
||||
%%DATADIR%%/lua/dmarc.lua
|
||||
%%DATADIR%%/lua/dynamic_conf.lua
|
||||
%%DATADIR%%/lua/emails.lua
|
||||
%%DATADIR%%/lua/fann_classifier.lua
|
||||
%%DATADIR%%/lua/fann_redis.lua
|
||||
%%DATADIR%%/lua/fann_scores.lua
|
||||
%%DATADIR%%/lua/forged_recipients.lua
|
||||
%%DATADIR%%/lua/fun.lua
|
||||
|
|
@ -59,8 +65,12 @@ lib/rspamd/librspamd-actrie.so
|
|||
%%DATADIR%%/lua/hfilter.lua
|
||||
%%DATADIR%%/lua/ip_score.lua
|
||||
%%DATADIR%%/lua/maillist.lua
|
||||
%%DATADIR%%/lua/metadata_exporter.lua
|
||||
%%DATADIR%%/lua/metric_exporter.lua
|
||||
%%DATADIR%%/lua/mid.lua
|
||||
%%DATADIR%%/lua/mime_types.lua
|
||||
%%DATADIR%%/lua/multimap.lua
|
||||
%%DATADIR%%/lua/mx_check.lua
|
||||
%%DATADIR%%/lua/once_received.lua
|
||||
%%DATADIR%%/lua/phishing.lua
|
||||
%%DATADIR%%/lua/ratelimit.lua
|
||||
|
|
@ -75,6 +85,7 @@ lib/rspamd/librspamd-actrie.so
|
|||
%%DATADIR%%/rules/html.lua
|
||||
%%DATADIR%%/rules/http_headers.lua
|
||||
%%DATADIR%%/rules/misc.lua
|
||||
%%DATADIR%%/rules/regexp/compromised_hosts.lua
|
||||
%%DATADIR%%/rules/regexp/drugs.lua
|
||||
%%DATADIR%%/rules/regexp/fraud.lua
|
||||
%%DATADIR%%/rules/regexp/headers.lua
|
||||
|
|
@ -83,14 +94,19 @@ lib/rspamd/librspamd-actrie.so
|
|||
%%DATADIR%%/rules/rspamd.classifiers.lua
|
||||
%%DATADIR%%/rules/rspamd.lua
|
||||
%%DATADIR%%/www/README.md
|
||||
%%DATADIR%%/www/css/bootstrap.min.css
|
||||
%%DATADIR%%/www/css/d3evolution.css
|
||||
%%DATADIR%%/www/css/datatables.min.css
|
||||
%%DATADIR%%/www/css/glyphicons-halflings-regular.woff
|
||||
%%DATADIR%%/www/css/glyphicons-halflings-regular.woff2
|
||||
%%DATADIR%%/www/css/rspamd.css
|
||||
%%DATADIR%%/www/favicon.ico
|
||||
%%DATADIR%%/www/fonts/glyphicons-halflings-regular.ttf
|
||||
%%DATADIR%%/www/fonts/glyphicons-halflings-regular.woff
|
||||
%%DATADIR%%/www/fonts/glyphicons-halflings-regular.woff2
|
||||
%%DATADIR%%/www/img/asc.png
|
||||
%%DATADIR%%/www/img/desc.png
|
||||
%%DATADIR%%/www/img/rspamd_logo_navbar.png
|
||||
%%DATADIR%%/www/img/spinner.gif
|
||||
%%DATADIR%%/www/img/spinner.png
|
||||
%%DATADIR%%/www/index.html
|
||||
|
|
@ -98,6 +114,10 @@ lib/rspamd/librspamd-actrie.so
|
|||
%%DATADIR%%/www/js/d3pie.min.js
|
||||
%%DATADIR%%/www/js/datatables.min.js
|
||||
%%DATADIR%%/www/js/humanize.min.js
|
||||
%%DATADIR%%/www/js/bootstrap.min.js
|
||||
%%DATADIR%%/www/js/d3.min.js
|
||||
%%DATADIR%%/www/js/jquery-3.1.1.min.js
|
||||
%%DATADIR%%/www/js/jquery.cookie.min.js
|
||||
%%DATADIR%%/www/js/rspamd.js
|
||||
%%DATADIR%%/www/plugins.txt
|
||||
%%DATADIR%%/www/react-index.html
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ RUN_DEPENDS= ${LOCALBASE}/include/boost/tuple/tuple.hpp:devel/boost-libs
|
|||
LIB_DEPENDS= libmpfr.so:math/mpfr \
|
||||
libgmp.so:math/gmp
|
||||
|
||||
BROKEN_sparc64: Does not build: fails to compile all_files.cpp
|
||||
BROKEN_sparc64= Does not build: fails to compile all_files.cpp
|
||||
|
||||
USE_LDCONFIG= yes
|
||||
USES= cmake shebangfix tar:xz
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= keras
|
||||
PORTVERSION= 1.1.0
|
||||
PORTVERSION= 1.1.1
|
||||
CATEGORIES= math
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1474372443
|
||||
SHA256 (fchollet-keras-1.1.0_GH0.tar.gz) = 5dc69abb2b66e8e825d0c48037a334d0cd2f3d9e27bb1dcf20c8ba16c8b21c96
|
||||
SIZE (fchollet-keras-1.1.0_GH0.tar.gz) = 272693
|
||||
TIMESTAMP = 1479279832
|
||||
SHA256 (fchollet-keras-1.1.1_GH0.tar.gz) = 98dc28d73f96a2ed08e779c7c87f02e27dabd6379e6ac60353b2f43b1bc9af6a
|
||||
SIZE (fchollet-keras-1.1.1_GH0.tar.gz) = 288643
|
||||
|
|
|
|||
|
|
@ -2,14 +2,14 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= osinfo-db
|
||||
PORTVERSION= 20160728
|
||||
PORTVERSION= 20161026
|
||||
CATEGORIES= misc
|
||||
MASTER_SITES= https://fedorahosted.org/releases/l/i/libosinfo/
|
||||
|
||||
MAINTAINER= novel@FreeBSD.org
|
||||
COMMENT= Osinfo database files
|
||||
|
||||
BUILD_DEPENDS= osinfo-db-import:sysutils/osinfo-db-tools
|
||||
BUILD_DEPENDS= osinfo-db-tools>=1.1.0:sysutils/osinfo-db-tools
|
||||
|
||||
USES= tar:xz
|
||||
NO_BUILD= yes
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1477378706
|
||||
SHA256 (osinfo-db-20160728.tar.xz) = 4373f1b216c1a4e026576e105ad4cb524d0ee484d0ab8dcfcec21cbf119de6fb
|
||||
SIZE (osinfo-db-20160728.tar.xz) = 53872
|
||||
TIMESTAMP = 1479312641
|
||||
SHA256 (osinfo-db-20161026.tar.xz) = 962a68287dac6308a2e86123f700bdaa0c5bd433763c1000032a4b6b71a443d1
|
||||
SIZE (osinfo-db-20161026.tar.xz) = 61140
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
share/osinfo/LICENSE
|
||||
share/osinfo/VERSION
|
||||
share/osinfo/datamap/microsoft.com/win-7-l10n-language.xml
|
||||
share/osinfo/datamap/microsoft.com/win-8-l10n-language-reverse.xml
|
||||
|
|
@ -6,7 +7,36 @@ share/osinfo/datamap/x.org/x11-keyboard.xml
|
|||
share/osinfo/device/ibasetechnologies.net/isa-ib700.xml
|
||||
share/osinfo/device/ibm.com/ps2-keyboard.xml
|
||||
share/osinfo/device/ibm.com/ps2-mouse.xml
|
||||
share/osinfo/device/pcisig.com/pci-1000-0012.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1013-00b8.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1022-2000.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-10ec-8029.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-10ec-8139.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1234-1111.xml
|
||||
share/osinfo/device/pcisig.com/pci-1274-5000.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-15ad-0710.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1000.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1001.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1002.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1003.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1004.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1005.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1009.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1041.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1042.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1043.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1044.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1045.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1048.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1049.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1050.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1af4-1052.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-1b36-0100.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-8086-100e.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-8086-2415.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-8086-25ab.d/class.xml
|
||||
share/osinfo/device/pcisig.com/pci-8086-2668.d/class.xml
|
||||
share/osinfo/device/usb.org/usb-80ee-0021.d/class.xml
|
||||
share/osinfo/device/xen.org/xen-console.xml
|
||||
share/osinfo/device/xen.org/xen-pci.xml
|
||||
share/osinfo/device/xen.org/xen-vbd.xml
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ MASTER_SITES= ftp://ftp.iana.org/tz/releases/ \
|
|||
ftp://munnari.oz.au/pub/
|
||||
DISTNAME= tzdata${DISTVERSION}
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= skreuzer@FreeBSD.org
|
||||
COMMENT= Updated timezone definitions
|
||||
|
||||
NO_WRKSUBDIR= yes
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= mpc-qt
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.0.0.s20161028
|
||||
DISTVERSION= 0.0.0.s20161114
|
||||
CATEGORIES= multimedia audio
|
||||
MASTER_SITES= https://aur.archlinux.org/cgit/aur.git/plain/${PORTNAME}.desktop?h=${PORTNAME}-git&id=b1a6b91&dummy=/:desktop
|
||||
DISTFILES= ${PORTNAME}.desktop:desktop
|
||||
|
|
@ -17,7 +17,7 @@ LIB_DEPENDS= libmpv.so:multimedia/mpv
|
|||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= cmdrkotori
|
||||
GH_TAGNAME= 24223b8
|
||||
GH_TAGNAME= 5853b77
|
||||
|
||||
USES= compiler:c++11-lib desktop-file-utils pkgconfig qmake
|
||||
USE_QT5= qmake_build buildtools_build core gui network widgets x11extras
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1477916479
|
||||
TIMESTAMP = 1479320830
|
||||
SHA256 (mpc-qt.desktop) = 7694745aac0e52c050a6bc069a0686b025e509136919d985d3c4495eec0f1c9d
|
||||
SIZE (mpc-qt.desktop) = 1270
|
||||
SHA256 (cmdrkotori-mpc-qt-v0.0.0.s20161028-24223b8_GH0.tar.gz) = 1fbc14bd1538ae3fc213fa16b05a79048edac9a213f496f54030632724b7ca33
|
||||
SIZE (cmdrkotori-mpc-qt-v0.0.0.s20161028-24223b8_GH0.tar.gz) = 229239
|
||||
SHA256 (cmdrkotori-mpc-qt-v0.0.0.s20161114-5853b77_GH0.tar.gz) = df26b9e528b4fdb88efc998f36f1d6a79f7ae5ff18b8a63335787b7e90aae752
|
||||
SIZE (cmdrkotori-mpc-qt-v0.0.0.s20161114-5853b77_GH0.tar.gz) = 230836
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ CATEGORIES= multimedia textproc converters
|
|||
MASTER_SITES= http://thomas.enix.org/pub/code/perl/
|
||||
DISTFILES= subtitle-offset-modificator.pl
|
||||
|
||||
MAINTAINER= edwin@mavetju.org
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Subtitle offset modificator
|
||||
|
||||
USES= perl5 shebangfix
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue