*/*: sync with upstream
Taken from: FreeBSD
This commit is contained in:
parent
a3039369b8
commit
10de6e72fd
223 changed files with 3991 additions and 1626 deletions
13
archivers/gtar/files/patch-po_Makefile.in.in
Normal file
13
archivers/gtar/files/patch-po_Makefile.in.in
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
Work around a bug in FreeBSD 9 make(1).
|
||||
http://docs.freebsd.org/cgi/mid.cgi?slrnmvro62.94q.naddy
|
||||
|
||||
--- po/Makefile.in.in.orig 2016-04-06 04:59:54 UTC
|
||||
+++ po/Makefile.in.in
|
||||
@@ -78,6 +78,7 @@ CATALOGS = @CATALOGS@
|
||||
POFILESDEPS_ = $(srcdir)/$(DOMAIN).pot
|
||||
POFILESDEPS_yes = $(POFILESDEPS_)
|
||||
POFILESDEPS_no =
|
||||
+PO_DEPENDS_ON_POT =
|
||||
POFILESDEPS = $(POFILESDEPS_$(PO_DEPENDS_ON_POT))
|
||||
|
||||
DISTFILESDEPS_ = update-po
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= rarfile
|
||||
PORTVERSION= 2.7
|
||||
PORTVERSION= 2.8
|
||||
CATEGORIES= archivers python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (rarfile-2.7.tar.gz) = 47148088ddb6c020774f4c38927fec9625ca33651bdc551bdaeafc78690b1635
|
||||
SIZE (rarfile-2.7.tar.gz) = 37515
|
||||
TIMESTAMP = 1465292789
|
||||
SHA256 (rarfile-2.8.tar.gz) = 2a27e401daa6d8ff0df1112a274a3661ca3e4afaac626217506fb1391069ca61
|
||||
SIZE (rarfile-2.8.tar.gz) = 38204
|
||||
|
|
|
|||
|
|
@ -13,20 +13,29 @@ LICENSE= AGPLv3
|
|||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
USES= gmake perl5 tar:tgz
|
||||
#USE_GCC= any
|
||||
USE_LDCONFIG= yes
|
||||
#MAKE_JOBS_UNSAFE= yes
|
||||
|
||||
post-patch:
|
||||
${REINPLACE_CMD} 's|doc/routino|share/doc/routino|' \
|
||||
${WRKSRC}/Makefile.conf
|
||||
${REINPLACE_CMD} 's|gcc|${CC}|' \
|
||||
${WRKSRC}/Makefile.conf
|
||||
|
||||
post-install:
|
||||
${MKDIR} ${STAGEDIR}${WWWDIR}
|
||||
(cd ${WRKSRC}/web && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} \
|
||||
"! -name Makefile")
|
||||
${CHMOD} 0644 ${STAGEDIR}${PREFIX}/lib/lib*
|
||||
${CHMOD} 0755 ${STAGEDIR}${PREFIX}/bin/*
|
||||
${CHMOD} 0755 ${STAGEDIR}${WWWDIR}/bin/*
|
||||
${RM} ${STAGEDIR}${PREFIX}/lib/libroutino*.so
|
||||
${RM} ${STAGEDIR}${PREFIX}/lib/libroutino*.so.0
|
||||
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib*
|
||||
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
|
||||
${STRIP_CMD} ${STAGEDIR}${WWWDIR}/bin/*
|
||||
.for f in routino.so.0.0.0 routino-slim.so.0.0.0
|
||||
${LN} -sf lib${f} ${STAGEDIR}${PREFIX}/lib/lib${f:R:R}
|
||||
${LN} -sf lib${f:R:R} ${STAGEDIR}${PREFIX}/lib/lib${f:R:R:R}
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
28
astro/routino/files/patch-doc_Makefile
Normal file
28
astro/routino/files/patch-doc_Makefile
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
--- doc/Makefile.orig 2016-06-04 17:01:05 UTC
|
||||
+++ doc/Makefile
|
||||
@@ -43,19 +43,19 @@ install: install-txt install-html
|
||||
install-txt:
|
||||
@[ -d $(DESTDIR)$(docdir) ] || mkdir -p $(DESTDIR)$(docdir)
|
||||
@for file in $(TOP_FILES); do \
|
||||
- echo cp $$file $(DESTDIR)$(docdir) ;\
|
||||
- cp -f $$file $(DESTDIR)$(docdir) ;\
|
||||
+ echo install $$file $(DESTDIR)$(docdir) ;\
|
||||
+ install $$file $(DESTDIR)$(docdir) ;\
|
||||
done
|
||||
@for file in $(TXT_FILES); do \
|
||||
- echo cp $$file $(DESTDIR)$(docdir) ;\
|
||||
- cp -f $$file $(DESTDIR)$(docdir) ;\
|
||||
+ echo install $$file $(DESTDIR)$(docdir) ;\
|
||||
+ install $$file $(DESTDIR)$(docdir) ;\
|
||||
done
|
||||
|
||||
install-html:
|
||||
@[ -d $(DESTDIR)$(docdir)/html ] || mkdir -p $(DESTDIR)$(docdir)/html
|
||||
@for file in $(HTML_FILES); do \
|
||||
- echo cp html/$$file $(DESTDIR)$(docdir)/html ;\
|
||||
- cp -f html/$$file $(DESTDIR)$(docdir)/html ;\
|
||||
+ echo install html/$$file $(DESTDIR)$(docdir)/html ;\
|
||||
+ install html/$$file $(DESTDIR)$(docdir)/html ;\
|
||||
done
|
||||
|
||||
########
|
||||
42
astro/routino/files/patch-extras_find-fixme_Makefile
Normal file
42
astro/routino/files/patch-extras_find-fixme_Makefile
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
--- extras/find-fixme/Makefile.orig 2016-06-04 17:12:29 UTC
|
||||
+++ extras/find-fixme/Makefile
|
||||
@@ -52,8 +52,8 @@ all-bin: $(EXE)
|
||||
@[ -d $(WEBBINDIR) ] || mkdir -p $(WEBBINDIR)
|
||||
@for file in $(EXE); do \
|
||||
if [ ! -f $(WEBBINDIR)/$$file ] || [ $$file -nt $(WEBBINDIR)/$$file ]; then \
|
||||
- echo cp $$file $(WEBBINDIR) ;\
|
||||
- cp -f $$file $(WEBBINDIR) ;\
|
||||
+ echo install $$file $(WEBBINDIR) ;\
|
||||
+ install $$file $(WEBBINDIR) ;\
|
||||
fi ;\
|
||||
done
|
||||
|
||||
@@ -61,22 +61,22 @@ all-data:
|
||||
@[ -d $(WEBDATADIR) ] || mkdir -p $(WEBDATADIR)
|
||||
@for file in $(DATA); do \
|
||||
if [ ! -f $(WEBDATADIR)/$$file ] || [ $$file -nt $(WEBDATADIR)/$$file ]; then \
|
||||
- echo cp $$file $(WEBDATADIR) ;\
|
||||
- cp -f $$file $(WEBDATADIR) ;\
|
||||
+ echo install $$file $(WEBDATADIR) ;\
|
||||
+ install $$file $(WEBDATADIR) ;\
|
||||
fi ;\
|
||||
done
|
||||
|
||||
all-www:
|
||||
@for file in $(WWW_COPY); do \
|
||||
if [ ! -f $(WEBWWWDIR)/$$file ] || [ $(ROUTINO_WEBWWWDIR)/$$file -nt $(WEBWWWDIR)/$$file ]; then \
|
||||
- echo cp $(ROUTINO_WEBWWWDIR)/$$file $(WEBWWWDIR) ;\
|
||||
- cp -f $(ROUTINO_WEBWWWDIR)/$$file $(WEBWWWDIR) ;\
|
||||
+ echo install $(ROUTINO_WEBWWWDIR)/$$file $(WEBWWWDIR) ;\
|
||||
+ install $(ROUTINO_WEBWWWDIR)/$$file $(WEBWWWDIR) ;\
|
||||
fi ;\
|
||||
done
|
||||
@for file in $(DOC_COPY); do \
|
||||
if [ ! -f $(WEBWWWDIR)/$$file ] || [ $(ROUTINO_DOCDIR)/$$file -nt $(WEBWWWDIR)/$$file ]; then \
|
||||
- echo cp $(ROUTINO_DOCDIR)/$$file $(WEBWWWDIR) ;\
|
||||
- cp -f $(ROUTINO_DOCDIR)/$$file $(WEBWWWDIR) ;\
|
||||
+ echo install $(ROUTINO_DOCDIR)/$$file $(WEBWWWDIR) ;\
|
||||
+ install $(ROUTINO_DOCDIR)/$$file $(WEBWWWDIR) ;\
|
||||
fi ;\
|
||||
done
|
||||
|
||||
43
astro/routino/files/patch-src_Makefile
Normal file
43
astro/routino/files/patch-src_Makefile
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
--- src/Makefile.orig 2015-09-29 18:09:59 UTC
|
||||
+++ src/Makefile
|
||||
@@ -38,9 +38,7 @@ EXE=planetsplitter$(.EXE) planetsplitter
|
||||
router+lib$(.EXE) router+lib-slim$(.EXE)
|
||||
|
||||
ifneq ($(HOST),MINGW)
|
||||
-LIB =libroutino.so libroutino-slim.so
|
||||
-LIB+=libroutino.so.$(SOVERSION) libroutino-slim.so.$(SOVERSION)
|
||||
-LIB+=libroutino.so.$(LIBVERSION) libroutino-slim.so.$(LIBVERSION)
|
||||
+LIB=libroutino.so.$(LIBVERSION) libroutino-slim.so.$(LIBVERSION)
|
||||
else
|
||||
LIB =routino.dll routino-slim.dll
|
||||
LIB+=routino.def routino-slim.def
|
||||
@@ -284,22 +282,23 @@ install-local: all-local
|
||||
@[ -d $(DESTDIR)$(bindir) ] || mkdir -p $(DESTDIR)$(bindir)
|
||||
@for file in $(EXE); do \
|
||||
if [ -f $$file ]; then \
|
||||
- echo cp $$file $(DESTDIR)$(bindir) ;\
|
||||
- cp -f $$file $(DESTDIR)$(bindir) ;\
|
||||
+ echo install -s $$file $(DESTDIR)$(bindir) ;\
|
||||
+ install -s $$file $(DESTDIR)$(bindir) ;\
|
||||
fi ;\
|
||||
done
|
||||
@[ -d $(DESTDIR)$(incdir) ] || mkdir -p $(DESTDIR)$(incdir)
|
||||
@for file in $(INC); do \
|
||||
if [ -f $$file ]; then \
|
||||
- echo cp $$file $(DESTDIR)$(incdir) ;\
|
||||
- cp -f $$file $(DESTDIR)$(incdir) ;\
|
||||
+ echo install $$file $(DESTDIR)$(incdir) ;\
|
||||
+ install $$file $(DESTDIR)$(incdir) ;\
|
||||
fi ;\
|
||||
done
|
||||
@[ -d $(DESTDIR)$(libdir) ] || mkdir -p $(DESTDIR)$(libdir)
|
||||
+ echo $(LIB)
|
||||
@for file in $(LIB); do \
|
||||
if [ -f $$file ]; then \
|
||||
- echo cp $$file $(DESTDIR)$(libdir) ;\
|
||||
- cp -df $$file $(DESTDIR)$(libdir) ;\
|
||||
+ echo install -s $$file $(DESTDIR)$(libdir) ;\
|
||||
+ install -s $$file $(DESTDIR)$(libdir) ;\
|
||||
fi ;\
|
||||
done
|
||||
|
||||
60
astro/routino/files/patch-web_Makefile
Normal file
60
astro/routino/files/patch-web_Makefile
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
--- web/Makefile.orig 2016-06-04 17:03:11 UTC
|
||||
+++ web/Makefile
|
||||
@@ -64,8 +64,8 @@ all-bin: all-exe
|
||||
@[ -d $(WEBBINDIR) ] || mkdir -p $(WEBBINDIR)
|
||||
@for file in $(EXE_FILES); do \
|
||||
if [ -f $(SRCDIR)/$$file -a ! -f $(WEBBINDIR)/$$file ] || [ $(SRCDIR)/$$file -nt $(WEBBINDIR)/$$file ]; then \
|
||||
- echo cp $(SRCDIR)/$$file $(WEBBINDIR) ;\
|
||||
- cp -f $(SRCDIR)/$$file $(WEBBINDIR) ;\
|
||||
+ echo install $(SRCDIR)/$$file $(WEBBINDIR) ;\
|
||||
+ install $(SRCDIR)/$$file $(WEBBINDIR) ;\
|
||||
fi ;\
|
||||
done
|
||||
|
||||
@@ -75,14 +75,14 @@ all-data: all-xml
|
||||
@[ -d $(WEBDATADIR) ] || mkdir -p $(WEBDATADIR)
|
||||
@for file in $(STANDARD_XML_FILES); do \
|
||||
if [ ! -f $(WEBDATADIR)/$$file ] || [ $(XMLDIR)/routino-$$file -nt $(WEBDATADIR)/$$file ]; then \
|
||||
- echo cp $(XMLDIR)/routino-$$file $(WEBDATADIR)/$$file ;\
|
||||
- cp -f $(XMLDIR)/routino-$$file $(WEBDATADIR)/$$file ;\
|
||||
+ echo install $(XMLDIR)/routino-$$file $(WEBDATADIR)/$$file ;\
|
||||
+ install $(XMLDIR)/routino-$$file $(WEBDATADIR)/$$file ;\
|
||||
fi ;\
|
||||
done
|
||||
@for file in $(SPECIAL_XML_FILES); do \
|
||||
if [ ! -f $(WEBDATADIR)/$$file ] || [ $(XMLDIR)/$$file -nt $(WEBDATADIR)/$$file ]; then \
|
||||
- echo cp $(XMLDIR)/$$file $(WEBDATADIR)/$$file ;\
|
||||
- cp -f $(XMLDIR)/$$file $(WEBDATADIR)/$$file ;\
|
||||
+ echo install $(XMLDIR)/$$file $(WEBDATADIR)/$$file ;\
|
||||
+ install $(XMLDIR)/$$file $(WEBDATADIR)/$$file ;\
|
||||
fi ;\
|
||||
done
|
||||
|
||||
@@ -92,8 +92,8 @@ all-doc:
|
||||
@[ -d $(WEBDOCDIR) ] || mkdir -p $(WEBDOCDIR)
|
||||
@for file in $(DOC_FILES); do \
|
||||
if [ ! -f $(WEBDOCDIR)/$$file ] || [ $(DOCDIR)/html/$$file -nt $(WEBDOCDIR)/$$file ]; then \
|
||||
- echo cp $(DOCDIR)/html/$$file $(WEBDOCDIR) ;\
|
||||
- cp -f $(DOCDIR)/html/$$file $(WEBDOCDIR) ;\
|
||||
+ echo install $(DOCDIR)/html/$$file $(WEBDOCDIR) ;\
|
||||
+ install $(DOCDIR)/html/$$file $(WEBDOCDIR) ;\
|
||||
fi ;\
|
||||
done
|
||||
|
||||
@@ -116,12 +116,12 @@ all-translations: $(WEBWWWDIR)/router.ht
|
||||
ifeq ($(HOST),MINGW)
|
||||
|
||||
$(WEBWWWDIR)/router.html: $(WEBWWWDIR)/router.html.en
|
||||
- @echo cp $< $@
|
||||
- @cp -f $< $@
|
||||
+ @echo install $< $@
|
||||
+ @install $< $@
|
||||
|
||||
$(WEBWWWDIR)/visualiser.html: $(WEBWWWDIR)/visualiser.html.en
|
||||
- @echo cp $< $@
|
||||
- @cp -f $< $@
|
||||
+ @echo install $< $@
|
||||
+ @install $< $@
|
||||
|
||||
else
|
||||
|
||||
19
astro/routino/files/patch-xml_Makefile
Normal file
19
astro/routino/files/patch-xml_Makefile
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
--- xml/Makefile.orig 2016-06-04 17:08:07 UTC
|
||||
+++ xml/Makefile
|
||||
@@ -56,12 +56,12 @@ test:
|
||||
install: all
|
||||
@[ -d $(DESTDIR)$(datadir) ] || mkdir -p $(DESTDIR)$(datadir)
|
||||
@for file in $(STANDARD_FILES) ; do \
|
||||
- echo cp routino-$$file $(DESTDIR)$(datadir)/$$file ;\
|
||||
- cp -f routino-$$file $(DESTDIR)$(datadir)/$$file ;\
|
||||
+ echo install routino-$$file $(DESTDIR)$(datadir)/$$file ;\
|
||||
+ install routino-$$file $(DESTDIR)$(datadir)/$$file ;\
|
||||
done
|
||||
@for file in $(SPECIAL_FILES); do \
|
||||
- echo cp $$file $(DESTDIR)$(datadir)/$$file ;\
|
||||
- cp -f $$file $(DESTDIR)$(datadir)/$$file ;\
|
||||
+ echo install $$file $(DESTDIR)$(datadir)/$$file ;\
|
||||
+ install $$file $(DESTDIR)$(datadir)/$$file ;\
|
||||
done
|
||||
|
||||
########
|
||||
|
|
@ -35,6 +35,12 @@ bin/router-slim
|
|||
%%PORTDOCS%%%%DOCSDIR%%/html/tagging.html
|
||||
%%PORTDOCS%%%%DOCSDIR%%/html/usage.html
|
||||
include/routino.h
|
||||
lib/libroutino-slim.so
|
||||
lib/libroutino-slim.so.0
|
||||
lib/libroutino-slim.so.0.0.0
|
||||
lib/libroutino.so
|
||||
lib/libroutino.so.0
|
||||
lib/libroutino.so.0.0.0
|
||||
%%DATADIR%%/profiles.xml
|
||||
%%DATADIR%%/tagging-drive.xml
|
||||
%%DATADIR%%/tagging-ride.xml
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= swe
|
||||
PORTVERSION= 2.04
|
||||
PORTVERSION= 2.05.01
|
||||
CATEGORIES= astro devel
|
||||
MASTER_SITES= ftp://ftp.astro.com/pub/swisseph/
|
||||
DISTNAME= ${PORTNAME}_unix_src_${PORTVERSION}
|
||||
|
|
@ -24,6 +24,8 @@ do-install:
|
|||
${INSTALL_DATA} ${WRKSRC}/libswe.a ${STAGEDIR}${PREFIX}/lib
|
||||
${MKDIR} ${STAGEDIR}${PREFIX}/include/swe
|
||||
${INSTALL_DATA} ${WRKSRC}/*.h ${STAGEDIR}${PREFIX}/include/swe
|
||||
|
||||
do-install-DOCS-on:
|
||||
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKDIR}/doc/* ${STAGEDIR}${DOCSDIR}/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (swe_unix_src_2.04.tar.gz) = 3c1702e0e25ca3567b7e65991f50927ba182af47086dfd72fdd2e92bace6810a
|
||||
SIZE (swe_unix_src_2.04.tar.gz) = 2573319
|
||||
TIMESTAMP = 1465511524
|
||||
SHA256 (swe_unix_src_2.05.01.tar.gz) = fb7aeb708cb728ab0564528f43b8983775df7c508abfa50533b3207fc6edb53b
|
||||
SIZE (swe_unix_src_2.05.01.tar.gz) = 4642977
|
||||
|
|
|
|||
14
audio/quimup/files/patch-src__qm-config.cpp
Normal file
14
audio/quimup/files/patch-src__qm-config.cpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
--- src/qm_config.cpp.orig 2016-02-28 04:52:29.000000000 -0500
|
||||
+++ src/qm_config.cpp 2016-06-02 13:28:13.722103000 -0400
|
||||
@@ -168,9 +168,9 @@
|
||||
version = sts.value("version", "0.0" ).toString();
|
||||
// server related values
|
||||
quitMPD_onquit = sts.value("quitMPD_onquit", false ).toBool();
|
||||
- onquit_mpd_command = sts.value("onquit_mpd_command", "mpd --kill").toString();
|
||||
+ onquit_mpd_command = sts.value("onquit_mpd_command", "musicpd --kill").toString();
|
||||
startMPD_onstart = sts.value("startMPD_onstart", false ).toBool();
|
||||
- onstart_mpd_command = sts.value("onstart_mpd_command", "mpd" ).toString();
|
||||
+ onstart_mpd_command = sts.value("onstart_mpd_command", "musicpd" ).toString();
|
||||
auto_connect = sts.value("auto_connect", true ).toBool();
|
||||
|
||||
profile = sts.value("profile", 0 ).toInt();
|
||||
22
audio/quimup/files/patch-src__qm-mpdcom.cpp
Normal file
22
audio/quimup/files/patch-src__qm-mpdcom.cpp
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
--- src/qm_mpdcom.cpp.orig 2016-02-28 04:52:46.000000000 -0500
|
||||
+++ src/qm_mpdcom.cpp 2016-06-02 13:24:56.493027000 -0400
|
||||
@@ -2500,17 +2500,10 @@
|
||||
struct stat sts;
|
||||
bool b_isrunning = false;
|
||||
|
||||
- // try pidof
|
||||
- if (stat("/bin/pidof", &sts) == 0)
|
||||
- {
|
||||
- if( system("pidof mpd > /dev/null") == 0)
|
||||
- b_isrunning = true;
|
||||
- }
|
||||
- else
|
||||
// try pgrep
|
||||
- if (stat("/usr/bin/pgrep", &sts) == 0)
|
||||
+ if (stat("/bin/pgrep", &sts) == 0)
|
||||
{
|
||||
- if( system("pgrep mpd > /dev/null") == 0)
|
||||
+ if( system("pgrep musicpd > /dev/null") == 0)
|
||||
b_isrunning = true;
|
||||
}
|
||||
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
Fix the build with Qt >= 5.5:
|
||||
|
||||
src/qtlocalpeer.cpp:157:17: error: variable has incomplete type 'QDataStream'
|
||||
QDataStream ds(&socket);
|
||||
^
|
||||
/usr/local/include/qt5/QtCore/qglobal.h:570:7: note: forward declaration of 'QDataStream'
|
||||
class QDataStream;
|
||||
^
|
||||
src/qtlocalpeer.cpp:177:17: error: variable has incomplete type 'QDataStream'
|
||||
QDataStream ds(socket);
|
||||
^
|
||||
/usr/local/include/qt5/QtCore/qglobal.h:570:7: note: forward declaration of 'QDataStream'
|
||||
class QDataStream;
|
||||
^
|
||||
2 errors generated.
|
||||
--- src/qtlocalpeer.cpp.orig 2016-01-21 08:48:24 UTC
|
||||
+++ src/qtlocalpeer.cpp
|
||||
@@ -40,6 +40,7 @@
|
||||
|
||||
#include "qtlocalpeer.h"
|
||||
#include <QCoreApplication>
|
||||
+#include <QDataStream>
|
||||
#include <QTime>
|
||||
|
||||
#if defined(Q_OS_WIN)
|
||||
|
|
@ -4,14 +4,15 @@
|
|||
PORTNAME= nuttcp
|
||||
PORTVERSION= 7.3.2
|
||||
CATEGORIES= benchmarks net
|
||||
MASTER_SITES= http://nuttcp.net/nuttcp/
|
||||
DISTFILES= beta/${PORTNAME}-${PORTVERSION}.c beta/${NUTTSCPDISTFILE} latest/${PORTNAME}.8 latest/examples.txt latest/LICENSE latest/README
|
||||
MASTER_SITES= http://nuttcp.net/nuttcp/beta/ http://nuttcp.net/nuttcp/latest/:latest
|
||||
DISTFILES= ${PORTNAME}-${PORTVERSION}.c ${NUTTSCPDISTFILE} ${PORTNAME}.8:latest examples.txt:latest LICENSE:latest README:latest
|
||||
DIST_SUBDIR= ${PORTNAME}-${PORTVERSION}
|
||||
EXTRACT_ONLY= # none
|
||||
WRKSRC= ${WRKDIR}
|
||||
|
||||
MAINTAINER= pi@FreeBSD.org
|
||||
COMMENT= TCP/UDP network testing tool
|
||||
|
||||
NO_WRKSUBDIR= yes
|
||||
USES= shebangfix
|
||||
SHEBANG_FILES= nuttscp
|
||||
|
||||
|
|
@ -26,23 +27,23 @@ OPTIONS_SUB= yes
|
|||
NUTTSCP_USES= perl5
|
||||
|
||||
post-extract:
|
||||
${CP} ${DISTDIR}/beta/${NUTTSCPDISTFILE} ${WRKDIR}/nuttscp
|
||||
${CP} ${DISTDIR}/beta/${PORTNAME}-${PORTVERSION}.c ${WRKDIR}/
|
||||
${CP} ${DISTDIR}/latest/${PORTNAME}.8 ${WRKDIR}/
|
||||
${CP} ${DISTDIR}/latest/LICENSE ${WRKDIR}/
|
||||
${CP} ${DISTDIR}/latest/README ${WRKDIR}/
|
||||
${CP} ${DISTDIR}/latest/examples.txt ${WRKDIR}/
|
||||
${CP} ${_DISTDIR}/${NUTTSCPDISTFILE} ${WRKSRC}/nuttscp
|
||||
${CP} ${_DISTDIR}/${PORTNAME}-${PORTVERSION}.c ${WRKSRC}
|
||||
${CP} ${_DISTDIR}/${PORTNAME}.8 ${WRKSRC}
|
||||
${CP} ${_DISTDIR}/LICENSE ${WRKSRC}
|
||||
${CP} ${_DISTDIR}/README ${WRKSRC}
|
||||
${CP} ${_DISTDIR}/examples.txt ${WRKSRC}
|
||||
|
||||
do-build:
|
||||
cd ${WRKDIR} && ${CC} -o ${PORTNAME} nuttcp-${PORTVERSION}.c
|
||||
cd ${WRKSRC} && ${CC} ${CFLAGS} -o ${PORTNAME} nuttcp-${PORTVERSION}.c
|
||||
|
||||
do-install-NUTTSCP-on:
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/nuttscp ${STAGEDIR}${PREFIX}/bin/
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/nuttscp ${STAGEDIR}${PREFIX}/bin/
|
||||
( cd ${STAGEDIR}${PREFIX}/bin; ${LN} -sf nuttscp nuttrcp )
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
|
||||
${INSTALL_MAN} ${WRKDIR}/${PORTNAME}.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
|
||||
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/
|
||||
|
||||
${MKDIR} ${STAGEDIR}${DATADIR}/
|
||||
. for file in LICENSE README examples.txt
|
||||
|
|
|
|||
|
|
@ -1,12 +1,13 @@
|
|||
SHA256 (beta/nuttcp-7.3.2.c) = 4deb98a21bb8d2f75dff95436f85d616cdf321b50f29b2bf5f0ff9a0d42b0d62
|
||||
SIZE (beta/nuttcp-7.3.2.c) = 265085
|
||||
SHA256 (beta/nuttscp-2.2) = 0874f2f87b8def21bd3d1b18dab449e3d97648100d0c824af109eba897e2160d
|
||||
SIZE (beta/nuttscp-2.2) = 28729
|
||||
SHA256 (latest/nuttcp.8) = 83f10cb19e11e37a00fa78ad1f87afc02e5250777e91e78bdf2f2485d372e2c5
|
||||
SIZE (latest/nuttcp.8) = 16157
|
||||
SHA256 (latest/examples.txt) = eb94d5424880164cae4b4b5d8f4ab25299cb3396a32c4dcb136e9718c0844938
|
||||
SIZE (latest/examples.txt) = 5933
|
||||
SHA256 (latest/LICENSE) = ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6
|
||||
SIZE (latest/LICENSE) = 17987
|
||||
SHA256 (latest/README) = 7ad8dcb72bd72afed8f32a13d3f81614b659afacdfa91ca57b41ff20cd4806a1
|
||||
SIZE (latest/README) = 5666
|
||||
TIMESTAMP = 1465482030
|
||||
SHA256 (nuttcp-7.3.2/nuttcp-7.3.2.c) = 4deb98a21bb8d2f75dff95436f85d616cdf321b50f29b2bf5f0ff9a0d42b0d62
|
||||
SIZE (nuttcp-7.3.2/nuttcp-7.3.2.c) = 265085
|
||||
SHA256 (nuttcp-7.3.2/nuttscp-2.2) = 0874f2f87b8def21bd3d1b18dab449e3d97648100d0c824af109eba897e2160d
|
||||
SIZE (nuttcp-7.3.2/nuttscp-2.2) = 28729
|
||||
SHA256 (nuttcp-7.3.2/nuttcp.8) = 83f10cb19e11e37a00fa78ad1f87afc02e5250777e91e78bdf2f2485d372e2c5
|
||||
SIZE (nuttcp-7.3.2/nuttcp.8) = 16157
|
||||
SHA256 (nuttcp-7.3.2/examples.txt) = eb94d5424880164cae4b4b5d8f4ab25299cb3396a32c4dcb136e9718c0844938
|
||||
SIZE (nuttcp-7.3.2/examples.txt) = 5933
|
||||
SHA256 (nuttcp-7.3.2/LICENSE) = ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6
|
||||
SIZE (nuttcp-7.3.2/LICENSE) = 17987
|
||||
SHA256 (nuttcp-7.3.2/README) = 7ad8dcb72bd72afed8f32a13d3f81614b659afacdfa91ca57b41ff20cd4806a1
|
||||
SIZE (nuttcp-7.3.2/README) = 5666
|
||||
|
|
|
|||
|
|
@ -3,13 +3,13 @@
|
|||
|
||||
PORTNAME= geda
|
||||
PORTVERSION= 1.8.2
|
||||
DISTVERSIONPREFIX=gaf-
|
||||
PORTREVISION= 3
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= cad
|
||||
MASTER_SITES= http://ftp.geda-project.org/geda-gaf/stable/v${PORTVERSION:R}/${PORTVERSION}/
|
||||
DISTNAME= ${PORTNAME}-gaf-${PORTVERSION}
|
||||
MASTER_SITES= http://ftp.geda-project.org/${PORTNAME}-gaf/stable/v${PORTVERSION:R}/${PORTVERSION}/
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
MAINTAINER= hrs@FreeBSD.org
|
||||
COMMENT= GPL Electronic Design Automation tools
|
||||
|
||||
LICENSE= GPLv2+
|
||||
|
|
@ -34,13 +34,10 @@ CONFIGURE_ARGS= --with-libstroke=${LOCALBASE}
|
|||
INSTALL_TARGET= install-strip
|
||||
USE_LDCONFIG= yes
|
||||
INSTALLS_ICONS= yes
|
||||
|
||||
CPPFLAGS+= -I${LOCALBASE}/include
|
||||
LDFLAGS+= -L${LOCALBASE}/lib
|
||||
|
||||
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-gaf
|
||||
DATADIR= ${PREFIX}/share/gEDA
|
||||
|
||||
INFO= geda-scheme
|
||||
|
||||
CONFLICTS= geda-docs-[0-9]* geda-examples-[0-9]* geda-gattrib-[0-9]* \
|
||||
|
|
@ -51,12 +48,4 @@ PORTSCOUT= limitw:1,even
|
|||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
post-patch:
|
||||
.for dir in gattrib gschem libgeda
|
||||
@${REINPLACE_CMD} -e \
|
||||
'/-x/s|INSTALL_DATA|INSTALL|' ${WRKSRC}/${dir}/data/Makefile.in
|
||||
.endfor
|
||||
@${REINPLACE_CMD} -e \
|
||||
'/OS_LINUX=/s|no|yes|' ${WRKSRC}/configure
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
17
cad/geda/files/patch-build-tools-icon-theme-installer
Normal file
17
cad/geda/files/patch-build-tools-icon-theme-installer
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
--- build-tools/icon-theme-installer.orig 2012-12-17 11:04:20 UTC
|
||||
+++ build-tools/icon-theme-installer
|
||||
@@ -108,10 +108,10 @@ if test ! -x `echo "$MKINSTALLDIRS_EXEC"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
-if test ! -x `echo "$INSTALL_DATA_EXEC" | cut -f1 -d' '`; then
|
||||
- echo "Cannot find '$INSTALL_DATA_EXEC'; You probably want to pass -x \$(INSTALL_DATA)"
|
||||
- exit 1
|
||||
-fi
|
||||
+#if test ! -x `echo "$INSTALL_DATA_EXEC" | cut -f1 -d' '`; then
|
||||
+# echo "Cannot find '$INSTALL_DATA_EXEC'; You probably want to pass -x \$(INSTALL_DATA)"
|
||||
+# exit 1
|
||||
+#fi
|
||||
|
||||
if test -z "$SRC_DIR"; then
|
||||
SRC_DIR=.
|
||||
11
cad/geda/files/patch-configure
Normal file
11
cad/geda/files/patch-configure
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- configure.orig 2013-09-25 21:55:35 UTC
|
||||
+++ configure
|
||||
@@ -4876,7 +4876,7 @@ case $host_os in *\ *) host_os=`echo "$h
|
||||
# compat. layer on Windows (Cygwin).
|
||||
OS_WIN32_NATIVE=no
|
||||
OS_CYGWIN=no
|
||||
- OS_LINUX=no
|
||||
+ OS_LINUX=yes
|
||||
case "$host" in
|
||||
*-*-linux*)
|
||||
OS_LINUX=yes
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
--- libgeda/src/scheme_object.c.orig
|
||||
--- libgeda/src/scheme_object.c.orig 2013-09-25 20:59:27 UTC
|
||||
+++ libgeda/src/scheme_object.c
|
||||
@@ -1986,8 +1986,8 @@
|
||||
@@ -1986,8 +1986,8 @@ SCM_DEFINE (set_picture_x, "%set-picture
|
||||
* \param filename_s New filename for \a obj_s.
|
||||
* \return \a obj_s.
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
--- utils/src/gsch2pcb.c.orig 2013-08-18 08:44:47.000000000 +0200
|
||||
+++ utils/src/gsch2pcb.c 2014-11-18 18:53:20.303642614 +0100
|
||||
@@ -1397,13 +1397,13 @@
|
||||
--- utils/src/gsch2pcb.c.orig 2013-08-18 06:44:47 UTC
|
||||
+++ utils/src/gsch2pcb.c
|
||||
@@ -1397,13 +1397,13 @@ main (gint argc, gchar ** argv)
|
||||
pcbdata_path = g_getenv ("PCBDATA"); /* do not free return value */
|
||||
if (pcbdata_path != NULL) {
|
||||
/* If PCBDATA is set, use the value */
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= kicad
|
||||
DISTVERSION= r${BZR_SRC_REV}
|
||||
PORTREVISION= 1
|
||||
#PORTREVISION= 1
|
||||
CATEGORIES= cad
|
||||
MASTER_SITES= LOCAL/mr
|
||||
PKGNAMESUFFIX= -devel
|
||||
|
|
@ -23,7 +23,7 @@ CONFLICTS= kicad-2014*
|
|||
DOCVERSION= 1.1
|
||||
LIBVERSION= 1.0
|
||||
|
||||
CXXFLAGS+= -std=c++11
|
||||
#CXXFLAGS+= -std=c++11
|
||||
USE_GL= glew glu
|
||||
USE_WX= 3.0
|
||||
WX_COMPS= wx
|
||||
|
|
@ -45,6 +45,7 @@ CMAKE_ARGS= -DLOCALBASE="${LOCALBASE}" \
|
|||
-DCMAKE_VERBOSE_MAKEFILE=ON \
|
||||
-DCMAKE_BUILD_TYPE="Debug" \
|
||||
-DKICAD_TESTING_VERSION=ON \
|
||||
-DKICAD_BUILD_VERSION=${DISTVERSION} \
|
||||
-DCMAKE_INCLUDE_PATH="${LOCALBASE}/include" \
|
||||
-DwxWidgets_CONFIG_EXECUTABLE="${WX_CONFIG}" \
|
||||
-DKICAD_SKIP_BOOST=YES
|
||||
|
|
@ -159,4 +160,10 @@ PLIST_DIR_LIST= lib/kicad
|
|||
PLIST_SHAREDDIR_LIST= share/mimelnk/application \
|
||||
share/mimelnk
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${OSVERSION} < 1000000 || ${COMPILER_TYPE} == "gcc"
|
||||
IGNORE= builds only on greater than 10 and with clang
|
||||
.endif
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
BOOST_RELEASE= 1.54.0
|
||||
BOOST_VERS= 1_54_0
|
||||
BZR_SRC_REV= 6680
|
||||
BZR_SRC_REV= 6904
|
||||
BZR_LIB_REV=
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (kicad/kicad-r6680.tar.bz2) = 91e63f3c0c4470987e674157add071dff2664b23b408ad5ebe1ac1ae7f8aecdc
|
||||
SIZE (kicad/kicad-r6680.tar.bz2) = 91394239
|
||||
TIMESTAMP = 1465418419
|
||||
SHA256 (kicad/kicad-r6904.tar.bz2) = 4afc25cb2e290bf0632e546ed42d1a60fd987dad81ab8000da5aaff7ca773a25
|
||||
SIZE (kicad/kicad-r6904.tar.bz2) = 94165593
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ bin/pl_editor
|
|||
lib/kicad/plugins/3d/libs3d_plugin_idf.so
|
||||
lib/kicad/plugins/3d/libs3d_plugin_vrml.so
|
||||
lib/kicad/plugins/bom2csv.xsl
|
||||
lib/kicad/plugins/bom_cvs.xsl
|
||||
lib/kicad/plugins/bom2grouped_csv.xsl
|
||||
lib/kicad/plugins/bom_with_title_block_2_csv.xsl
|
||||
lib/kicad/plugins/netlist_form_OrcadPcb2.xsl
|
||||
lib/kicad/plugins/netlist_form_cadstar-RINF.xsl
|
||||
|
|
@ -44,62 +44,86 @@ lib/libkicad_3dsg.so.2.0.0
|
|||
%%PORTDOCS%%%%DOCSDIR%%/scripts/bom-in-python/kicad_netlist_reader.py
|
||||
%%PORTDOCS%%%%DOCSDIR%%/scripts/bom-in-python/round_robin.py
|
||||
%%PORTDOCS%%%%DOCSDIR%%/scripts/bom-in-python/round_value_robin.py
|
||||
%%PORTDOCS%%%%DOCSDIR%%/scripts/kicad-install.sh
|
||||
%%PORTDOCS%%%%DOCSDIR%%/scripts/lib_convert.py
|
||||
%%PORTDOCS%%%%DOCSDIR%%/scripts/library-repos-install.bat
|
||||
%%PORTDOCS%%%%DOCSDIR%%/scripts/library-repos-install.sh
|
||||
%%PORTDOCS%%%%DOCSDIR%%/scripts/mk_mime_icons.py
|
||||
%%PORTDOCS%%%%DOCSDIR%%/scripts/osx_build_wx.sh
|
||||
%%PORTDOCS%%%%DOCSDIR%%/scripts/osx_fixbundle.sh
|
||||
%%PORTDOCS%%%%DOCSDIR%%/scripts/test_kicad_plugin.py
|
||||
%%PORTDOCS%%%%DOCSDIR%%/scripts/test_plugin.py
|
||||
share/icons/hicolor/128x128/apps/3d.png
|
||||
share/icons/hicolor/128x128/apps/bitmap2component.png
|
||||
share/icons/hicolor/128x128/apps/eeschema.png
|
||||
share/icons/hicolor/128x128/apps/gerbview.png
|
||||
share/icons/hicolor/128x128/apps/kicad.png
|
||||
share/icons/hicolor/128x128/apps/pcbcalculator.png
|
||||
share/icons/hicolor/128x128/apps/pcbnew.png
|
||||
share/icons/hicolor/128x128/mimetypes/application-x-3d-project.png
|
||||
share/icons/hicolor/128x128/mimetypes/application-x-bitmap2component-project.png
|
||||
share/icons/hicolor/128x128/mimetypes/application-x-eeschema-project.png
|
||||
share/icons/hicolor/128x128/mimetypes/application-x-gerbview-project.png
|
||||
share/icons/hicolor/128x128/mimetypes/application-x-kicad-pcb.png
|
||||
share/icons/hicolor/128x128/mimetypes/application-x-kicad-project.png
|
||||
share/icons/hicolor/128x128/mimetypes/application-x-pcbcalculator-project.png
|
||||
share/icons/hicolor/128x128/mimetypes/application-x-pcbnew-project.png
|
||||
share/icons/hicolor/128x128/mimetypes/application-x-kicad-schematic.png
|
||||
share/icons/hicolor/16x16/apps/bitmap2component.png
|
||||
share/icons/hicolor/16x16/apps/eeschema.png
|
||||
share/icons/hicolor/16x16/apps/gerbview.png
|
||||
share/icons/hicolor/16x16/apps/kicad.png
|
||||
share/icons/hicolor/16x16/apps/pcbcalculator.png
|
||||
share/icons/hicolor/16x16/apps/pcbnew.png
|
||||
share/icons/hicolor/16x16/mimetypes/application-x-kicad-pcb.png
|
||||
share/icons/hicolor/16x16/mimetypes/application-x-kicad-project.png
|
||||
share/icons/hicolor/16x16/mimetypes/application-x-kicad-schematic.png
|
||||
share/icons/hicolor/22x22/apps/bitmap2component.png
|
||||
share/icons/hicolor/22x22/apps/eeschema.png
|
||||
share/icons/hicolor/22x22/apps/gerbview.png
|
||||
share/icons/hicolor/22x22/apps/kicad.png
|
||||
share/icons/hicolor/22x22/apps/pcbcalculator.png
|
||||
share/icons/hicolor/22x22/apps/pcbnew.png
|
||||
share/icons/hicolor/22x22/mimetypes/application-x-kicad-pcb.png
|
||||
share/icons/hicolor/22x22/mimetypes/application-x-kicad-project.png
|
||||
share/icons/hicolor/22x22/mimetypes/application-x-kicad-schematic.png
|
||||
share/icons/hicolor/24x24/apps/bitmap2component.png
|
||||
share/icons/hicolor/24x24/apps/eeschema.png
|
||||
share/icons/hicolor/24x24/apps/gerbview.png
|
||||
share/icons/hicolor/24x24/apps/kicad.png
|
||||
share/icons/hicolor/24x24/apps/pcbcalculator.png
|
||||
share/icons/hicolor/24x24/apps/pcbnew.png
|
||||
share/icons/hicolor/24x24/mimetypes/application-x-kicad-pcb.png
|
||||
share/icons/hicolor/24x24/mimetypes/application-x-kicad-project.png
|
||||
share/icons/hicolor/24x24/mimetypes/application-x-kicad-schematic.png
|
||||
share/icons/hicolor/32x32/apps/bitmap2component.png
|
||||
share/icons/hicolor/32x32/apps/eeschema.png
|
||||
share/icons/hicolor/32x32/apps/gerbview.png
|
||||
share/icons/hicolor/32x32/apps/kicad.png
|
||||
share/icons/hicolor/32x32/apps/pcbcalculator.png
|
||||
share/icons/hicolor/32x32/apps/pcbnew.png
|
||||
share/icons/hicolor/32x32/mimetypes/application-x-kicad-pcb.png
|
||||
share/icons/hicolor/32x32/mimetypes/application-x-kicad-project.png
|
||||
share/icons/hicolor/32x32/mimetypes/application-x-kicad-schematic.png
|
||||
share/icons/hicolor/48x48/apps/bitmap2component.png
|
||||
share/icons/hicolor/48x48/apps/cvpcb.png
|
||||
share/icons/hicolor/48x48/apps/eeschema.png
|
||||
share/icons/hicolor/48x48/apps/gerbview.png
|
||||
share/icons/hicolor/48x48/apps/kicad.png
|
||||
share/icons/hicolor/48x48/apps/pcbcalculator.png
|
||||
share/icons/hicolor/48x48/apps/pcbnew.png
|
||||
share/icons/hicolor/48x48/mimetypes/application-x-bitmap2component-project.png
|
||||
share/icons/hicolor/48x48/mimetypes/application-x-eeschema-project.png
|
||||
share/icons/hicolor/48x48/mimetypes/application-x-gerbview-project.png
|
||||
share/icons/hicolor/48x48/mimetypes/application-x-kicad-pcb.png
|
||||
share/icons/hicolor/48x48/mimetypes/application-x-kicad-project.png
|
||||
share/icons/hicolor/48x48/mimetypes/application-x-pcbcalculator-project.png
|
||||
share/icons/hicolor/48x48/mimetypes/application-x-pcbnew-project.png
|
||||
share/icons/hicolor/scalable/apps/3d.svg
|
||||
share/icons/hicolor/48x48/mimetypes/application-x-kicad-schematic.png
|
||||
share/icons/hicolor/64x64/apps/bitmap2component.png
|
||||
share/icons/hicolor/64x64/apps/eeschema.png
|
||||
share/icons/hicolor/64x64/apps/gerbview.png
|
||||
share/icons/hicolor/64x64/apps/kicad.png
|
||||
share/icons/hicolor/64x64/apps/pcbcalculator.png
|
||||
share/icons/hicolor/64x64/apps/pcbnew.png
|
||||
share/icons/hicolor/64x64/mimetypes/application-x-kicad-pcb.png
|
||||
share/icons/hicolor/64x64/mimetypes/application-x-kicad-project.png
|
||||
share/icons/hicolor/64x64/mimetypes/application-x-kicad-schematic.png
|
||||
share/icons/hicolor/scalable/apps/bitmap2component.svg
|
||||
share/icons/hicolor/scalable/apps/eeschema.svg
|
||||
share/icons/hicolor/scalable/apps/gerbview.svg
|
||||
share/icons/hicolor/scalable/apps/kicad.svg
|
||||
share/icons/hicolor/scalable/apps/pcbcalculator.svg
|
||||
share/icons/hicolor/scalable/apps/pcbnew.svg
|
||||
share/icons/hicolor/scalable/mimetypes/application-x-3d-project.svg
|
||||
share/icons/hicolor/scalable/mimetypes/application-x-bitmap2component-project.svg
|
||||
share/icons/hicolor/scalable/mimetypes/application-x-eeschema-project.svg
|
||||
share/icons/hicolor/scalable/mimetypes/application-x-gerbview-project.svg
|
||||
share/icons/hicolor/scalable/mimetypes/application-x-kicad-pcb.svg
|
||||
share/icons/hicolor/scalable/mimetypes/application-x-kicad-project.svg
|
||||
share/icons/hicolor/scalable/mimetypes/application-x-pcbcalculator-project.svg
|
||||
share/icons/hicolor/scalable/mimetypes/application-x-pcbnew-project.svg
|
||||
share/icons/hicolor/scalable/mimetypes/application-x-kicad-schematic.svg
|
||||
%%DATADIR%%/demos/complex_hierarchy/ampli_ht.sch
|
||||
%%DATADIR%%/demos/complex_hierarchy/complex_hierarchy-cache.lib
|
||||
%%DATADIR%%/demos/complex_hierarchy/complex_hierarchy.kicad_pcb
|
||||
|
|
@ -320,6 +344,8 @@ share/icons/hicolor/scalable/mimetypes/application-x-pcbnew-project.svg
|
|||
%%DATADIR%%/library/atmel.lib
|
||||
%%DATADIR%%/library/audio.dcm
|
||||
%%DATADIR%%/library/audio.lib
|
||||
%%DATADIR%%/library/battery_management.dcm
|
||||
%%DATADIR%%/library/battery_management.lib
|
||||
%%DATADIR%%/library/bbd.dcm
|
||||
%%DATADIR%%/library/bbd.lib
|
||||
%%DATADIR%%/library/brooktre.dcm
|
||||
|
|
@ -1127,6 +1153,17 @@ share/icons/hicolor/scalable/mimetypes/application-x-pcbnew-project.svg
|
|||
%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_PicoBlade_53047-0810.wrl
|
||||
%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_PicoBlade_53047-0910.wings
|
||||
%%DATADIR%%/modules/packages3d/Connectors_Molex.3dshapes/Molex_PicoBlade_53047-0910.wrl
|
||||
%%DATADIR%%/modules/packages3d/Connectors_Samtec.3dshapes/LSHM-120-xxx-x-DV-A-N.wrl
|
||||
%%DATADIR%%/modules/packages3d/Connectors_Samtec.3dshapes/LSHM-120-xxx-x-DV-A-S.wrl
|
||||
%%DATADIR%%/modules/packages3d/Connectors_Samtec.3dshapes/LSHM-130-xxx-x-DV-A-N.wrl
|
||||
%%DATADIR%%/modules/packages3d/Connectors_Samtec.3dshapes/LSHM-130-xxx-x-DV-A-S.wrl
|
||||
%%DATADIR%%/modules/packages3d/Connectors_Samtec.3dshapes/LSHM-140-xxx-x-DV-A-N.wrl
|
||||
%%DATADIR%%/modules/packages3d/Connectors_Samtec.3dshapes/LSHM-140-xxx-x-DV-A-S.wrl
|
||||
%%DATADIR%%/modules/packages3d/Crystals.3dshapes/Crystal_MC-146.wrl
|
||||
%%DATADIR%%/modules/packages3d/Crystals.3dshapes/Crystal_MC-156.wrl
|
||||
%%DATADIR%%/modules/packages3d/Crystals.3dshapes/Crystal_MC-306.wrl
|
||||
%%DATADIR%%/modules/packages3d/Crystals.3dshapes/Crystal_MC-405.wrl
|
||||
%%DATADIR%%/modules/packages3d/Crystals.3dshapes/Crystal_MC-406.wrl
|
||||
%%DATADIR%%/modules/packages3d/Crystals.3dshapes/Crystal_SMD_2520_4Pads.wings
|
||||
%%DATADIR%%/modules/packages3d/Crystals.3dshapes/Crystal_SMD_2520_4Pads.wrl
|
||||
%%DATADIR%%/modules/packages3d/Crystals.3dshapes/Crystal_SMD_5032_2Pads.step
|
||||
|
|
@ -4278,7 +4315,5 @@ share/icons/hicolor/scalable/mimetypes/application-x-pcbnew-project.svg
|
|||
%%DATADIR%%/template/ti-stellaris-boosterpack40_min/meta/icon.png
|
||||
%%DATADIR%%/template/ti-stellaris-boosterpack40_min/meta/info.html
|
||||
%%DATADIR%%/template/ti-stellaris-boosterpack40_min/meta/launchpad_standard40.png
|
||||
share/mime/packages/kicad.xml
|
||||
share/mimelnk/application/x-kicad-pcb.desktop
|
||||
share/mimelnk/application/x-kicad-project.desktop
|
||||
share/mimelnk/application/x-kicad-schematic.desktop
|
||||
share/mime/packages/kicad-gerbers.xml
|
||||
share/mime/packages/kicad-kicad.xml
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= qcad
|
||||
PORTVERSION= 3.12.5.0
|
||||
PORTVERSION= 3.15.2.0
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTREVISION= 0
|
||||
CATEGORIES= cad
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (qcad/qcad-qcad-v3.12.5.0_GH0.tar.gz) = 6f5c3378cc165d981849a4dd21470a7525795e821e60fc83cf48f3ec8bf98b4e
|
||||
SIZE (qcad/qcad-qcad-v3.12.5.0_GH0.tar.gz) = 20856210
|
||||
TIMESTAMP = 1465413968
|
||||
SHA256 (qcad/qcad-qcad-v3.15.2.0_GH0.tar.gz) = 4b8909e49a34a542b1b6aae37880707eca4eaa03da9ebfdcb4998391d79ce947
|
||||
SIZE (qcad/qcad-qcad-v3.15.2.0_GH0.tar.gz) = 21944465
|
||||
|
|
|
|||
|
|
@ -1,11 +1,9 @@
|
|||
--- src/entity/entity.pro.orig 2013-08-06 17:32:09.000000000 +0200
|
||||
+++ src/entity/entity.pro 2013-08-08 11:29:12.000000000 +0200
|
||||
@@ -91,7 +91,7 @@
|
||||
TARGET = $${NAME}
|
||||
--- src/entity/entity.pro.orig 2016-06-08 19:38:26.408322000 +0000
|
||||
+++ src/entity/entity.pro 2016-06-08 19:39:06.335114000 +0000
|
||||
@@ -116,5 +116,5 @@
|
||||
OTHER_FILES += entity.dox
|
||||
DEFINES += QCADENTITY_LIBRARY
|
||||
-LIBS += -lqcadcore -lopennurbs
|
||||
+LIBS += -lqcadcore -lopenNURBS
|
||||
-LIBS += -l$${RLIBNAME}core -lopennurbs
|
||||
+LIBS += -l$${RLIBNAME}core -lopenNURBS
|
||||
!win32 {
|
||||
include( ../../shared_ts.pri )
|
||||
}
|
||||
|
|
|
|||
2115
cad/qcad/pkg-plist
2115
cad/qcad/pkg-plist
File diff suppressed because it is too large
Load diff
|
|
@ -653,6 +653,7 @@
|
|||
SUBDIR += postgresql-plv8js
|
||||
SUBDIR += postgresql-relay
|
||||
SUBDIR += postgresql-repmgr
|
||||
SUBDIR += postgresql-repmgr2
|
||||
SUBDIR += postgresql90-client
|
||||
SUBDIR += postgresql90-pgtcl
|
||||
SUBDIR += postgresql90-plperl
|
||||
|
|
@ -707,7 +708,9 @@
|
|||
SUBDIR += proftpd-mod_sql_tds
|
||||
SUBDIR += puppetdb
|
||||
SUBDIR += puppetdb-terminus
|
||||
SUBDIR += puppetdb-terminus3
|
||||
SUBDIR += puppetdb-terminus4
|
||||
SUBDIR += puppetdb3
|
||||
SUBDIR += puppetdb4
|
||||
SUBDIR += pure-sql3
|
||||
SUBDIR += puredb
|
||||
|
|
|
|||
|
|
@ -20,8 +20,10 @@ USE_LDCONFIG= yes
|
|||
CPPFLAGS+= -I${LOCALBASE}/include
|
||||
LDFLAGS+= -L${LOCALBASE}/lib -pthread
|
||||
|
||||
OPTIONS_DEFINE= MYSQL PGSQL SQLITE SSL
|
||||
OPTIONS_DEFINE= SSL
|
||||
OPTIONS_DEFAULT= MYSQL PGSQL SQLITE SSL
|
||||
OPTIONS_MULTI= DB
|
||||
OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE
|
||||
|
||||
MYSQL_USE= mysql=yes
|
||||
MYSQL_CONFIGURE_ON= --with-mysql=${LOCALBASE}/bin/mysql_config
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= postgresql-repmgr
|
||||
PORTVERSION= 2.0.2
|
||||
PORTVERSION= 3.1.3
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://www.repmgr.org/download/
|
||||
DISTNAME= repmgr-${PORTVERSION}
|
||||
|
|
@ -14,19 +14,19 @@ LICENSE= GPLv3
|
|||
|
||||
RUN_DEPENDS= rsync:net/rsync
|
||||
|
||||
USES+= gmake pgsql:9.0+
|
||||
USES+= gettext gmake pgsql:9.3+
|
||||
USE_RC_SUBR= repmgrd
|
||||
WANT_PGSQL= server
|
||||
MAKE_ENV= USE_PGXS=1
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
PORTDOCS= CONTRIBUTING.md COPYRIGHT CREDITS FAILOVER.rst FAQ.md HISTORY LICENSE \
|
||||
PACKAGES.md QUICKSTART.md README.md SSH-RSYNC.md TODO
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/repmgr ${STAGEDIR}${PREFIX}/bin
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/repmgrd ${STAGEDIR}${PREFIX}/sbin
|
||||
${INSTALL_DATA} ${WRKSRC}/repmgr.conf.sample ${STAGEDIR}${PREFIX}/etc
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/README.rst ${STAGEDIR}${DOCSDIR}
|
||||
@${MKDIR} ${STAGEDIR}${DATADIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/repmgr.sql ${STAGEDIR}${DATADIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/sql/repmgr_funcs.sql ${STAGEDIR}${DATADIR}
|
||||
|
|
@ -34,4 +34,10 @@ do-install:
|
|||
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/postgresql
|
||||
${INSTALL_LIB} ${WRKSRC}/sql/repmgr_funcs.so ${STAGEDIR}${PREFIX}/lib/postgresql
|
||||
|
||||
do-install-DOCS-on:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
.for f in ${PORTDOCS}
|
||||
${INSTALL_DATA} ${WRKSRC}/$f ${STAGEDIR}${DOCSDIR}
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (repmgr-2.0.2.tar.gz) = f563249e15b4c56b881bc25408ab934b74219d933fd493b65e1c485cfc2fe925
|
||||
SIZE (repmgr-2.0.2.tar.gz) = 75996
|
||||
TIMESTAMP = 1465477883
|
||||
SHA256 (repmgr-3.1.3.tar.gz) = 18341611c7a9998f54928d4792c6d19b2e265f5fdea5b7060ac84765ebe54891
|
||||
SIZE (repmgr-3.1.3.tar.gz) = 122521
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@ bin/repmgr
|
|||
@sample etc/repmgr.conf.sample
|
||||
sbin/repmgrd
|
||||
lib/postgresql/repmgr_funcs.so
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README.rst
|
||||
%%DATADIR%%/repmgr.sql
|
||||
%%DATADIR%%/repmgr_funcs.sql
|
||||
%%DATADIR%%/uninstall_repmgr_funcs.sql
|
||||
|
|
|
|||
38
databases/postgresql-repmgr2/Makefile
Normal file
38
databases/postgresql-repmgr2/Makefile
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
# Created by: alp@sfedu.ru
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= postgresql-repmgr
|
||||
PORTVERSION= 2.0.3
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://www.repmgr.org/download/
|
||||
DISTNAME= repmgr-${PORTVERSION}
|
||||
PKGNAMESUFFIX= 2
|
||||
|
||||
MAINTAINER= bofh@FreeBSD.org
|
||||
COMMENT= PostgreSQL replication manager
|
||||
|
||||
LICENSE= GPLv3
|
||||
|
||||
RUN_DEPENDS= rsync:net/rsync
|
||||
|
||||
USES+= gettext gmake pgsql:9.2-
|
||||
USE_RC_SUBR= repmgrd
|
||||
WANT_PGSQL= server
|
||||
MAKE_ENV= USE_PGXS=1
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/repmgr ${STAGEDIR}${PREFIX}/bin
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/repmgrd ${STAGEDIR}${PREFIX}/sbin
|
||||
${INSTALL_DATA} ${WRKSRC}/repmgr.conf.sample ${STAGEDIR}${PREFIX}/etc
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/README.rst ${STAGEDIR}${DOCSDIR}
|
||||
@${MKDIR} ${STAGEDIR}${DATADIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/repmgr.sql ${STAGEDIR}${DATADIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/sql/repmgr_funcs.sql ${STAGEDIR}${DATADIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/sql/uninstall_repmgr_funcs.sql ${STAGEDIR}${DATADIR}
|
||||
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/postgresql
|
||||
${INSTALL_LIB} ${WRKSRC}/sql/repmgr_funcs.so ${STAGEDIR}${PREFIX}/lib/postgresql
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
databases/postgresql-repmgr2/distinfo
Normal file
3
databases/postgresql-repmgr2/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1465474704
|
||||
SHA256 (repmgr-2.0.3.tar.gz) = b257921c74602c733f0ab39012160cbd36c1713f86b8d9ee957042d7ce006f19
|
||||
SIZE (repmgr-2.0.3.tar.gz) = 77172
|
||||
33
databases/postgresql-repmgr2/files/repmgrd.in
Normal file
33
databases/postgresql-repmgr2/files/repmgrd.in
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
#!/bin/sh
|
||||
|
||||
# $FreeBSD$
|
||||
#
|
||||
# PROVIDE: repmgrd
|
||||
# REQUIRE: postgresql
|
||||
# KEYWORD: shutdown
|
||||
#
|
||||
# Add these lines to /etc/rc.conf.local or /etc/rc.conf to enable this
|
||||
# service:
|
||||
#
|
||||
# repmgrd_enable (bool): Set to YES to enable repmgrd. Default: NO
|
||||
#
|
||||
# repmgrd_config (path): Default: %%PREFIX%%/etc/repmgr.conf
|
||||
#
|
||||
|
||||
. /etc/rc.subr
|
||||
|
||||
name=repmgrd
|
||||
rcvar=repmgrd_enable
|
||||
|
||||
load_rc_config $name
|
||||
|
||||
: ${repmgrd_enable:="NO"}
|
||||
: ${repmgrd_config="%%PREFIX%%/etc/repmgr.conf"}
|
||||
|
||||
command=%%PREFIX%%/sbin/${name}
|
||||
pidfile=/var/run/${name}.pid
|
||||
|
||||
command_args="-p $pidfile -f $repmgrd_config"
|
||||
|
||||
run_rc_command "$1"
|
||||
|
||||
4
databases/postgresql-repmgr2/pkg-descr
Normal file
4
databases/postgresql-repmgr2/pkg-descr
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
repmgr allows you to monitor and manage your replicated PostgreSQL
|
||||
databases as a single cluster.
|
||||
|
||||
WWW: http://projects.2ndquadrant.com/repmgr
|
||||
8
databases/postgresql-repmgr2/pkg-plist
Normal file
8
databases/postgresql-repmgr2/pkg-plist
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
bin/repmgr
|
||||
@sample etc/repmgr.conf.sample
|
||||
sbin/repmgrd
|
||||
lib/postgresql/repmgr_funcs.so
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README.rst
|
||||
%%DATADIR%%/repmgr.sql
|
||||
%%DATADIR%%/repmgr_funcs.sql
|
||||
%%DATADIR%%/uninstall_repmgr_funcs.sql
|
||||
|
|
@ -14,7 +14,7 @@ LICENSE= APACHE20
|
|||
|
||||
BUILD_DEPENDS= puppet38>=0:sysutils/puppet38
|
||||
|
||||
CONFLICTS_INSTALL= puppetdb-terminus4-*
|
||||
CONFLICTS_INSTALL= puppetdb-terminus3-* puppetdb-terminus4-*
|
||||
USE_RUBY= yes
|
||||
NO_BUILD= yes
|
||||
|
||||
|
|
|
|||
25
databases/puppetdb-terminus3/Makefile
Normal file
25
databases/puppetdb-terminus3/Makefile
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= puppetdb-terminus3
|
||||
PORTVERSION= 3.2.4
|
||||
CATEGORIES= databases ruby
|
||||
MASTER_SITES= http://downloads.puppetlabs.com/puppetdb/
|
||||
DISTNAME= puppetdb-${PORTVERSION}
|
||||
|
||||
MAINTAINER= freebsd@zleslie.info
|
||||
COMMENT= PuppetDB storeconfigs backend terminus module
|
||||
|
||||
LICENSE= APACHE20
|
||||
|
||||
BUILD_DEPENDS= puppet:sysutils/puppet4
|
||||
|
||||
CONFLICTS_INSTALL= puppetdb-terminus-* puppetdb-terminus4-*
|
||||
USE_RUBY= yes
|
||||
NO_BUILD= yes
|
||||
|
||||
do-install:
|
||||
${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR}/puppet
|
||||
(cd ${WRKSRC}/puppet && ${COPYTREE_SHARE} . \
|
||||
${STAGEDIR}${RUBY_SITELIBDIR}/puppet)
|
||||
|
||||
.include <bsd.port.mk>
|
||||
2
databases/puppetdb-terminus3/distinfo
Normal file
2
databases/puppetdb-terminus3/distinfo
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
SHA256 (puppetdb-3.2.4.tar.gz) = 580d25ace29b61d7504dfc2650fd7e1c6a14e77421cbfafed14703d857996d84
|
||||
SIZE (puppetdb-3.2.4.tar.gz) = 25695565
|
||||
3
databases/puppetdb-terminus3/pkg-descr
Normal file
3
databases/puppetdb-terminus3/pkg-descr
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
The PuppetDB storeconfigs backend terminus module.
|
||||
|
||||
WWW: https://docs.puppetlabs.com/puppetdb/latest/
|
||||
16
databases/puppetdb-terminus3/pkg-plist
Normal file
16
databases/puppetdb-terminus3/pkg-plist
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
%%RUBY_SITELIBDIR%%/puppet/application/storeconfigs.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/face/node/deactivate.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/face/node/status.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/face/storeconfigs.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/indirector/catalog/puppetdb.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/indirector/facts/puppetdb.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/indirector/facts/puppetdb_apply.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/indirector/node/puppetdb.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/indirector/resource/puppetdb.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/reports/puppetdb.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/util/puppetdb.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/util/puppetdb/char_encoding.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/util/puppetdb/command.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/util/puppetdb/command_names.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/util/puppetdb/config.rb
|
||||
%%RUBY_SITELIBDIR%%/puppet/util/puppetdb/http.rb
|
||||
|
|
@ -14,7 +14,7 @@ LICENSE= APACHE20
|
|||
|
||||
BUILD_DEPENDS= puppet4>=0:sysutils/puppet4
|
||||
|
||||
CONFLICTS_INSTALL= puppetdb-terminus-*
|
||||
CONFLICTS_INSTALL= puppetdb-terminus-* puppetdb-terminus3-*
|
||||
USE_RUBY= yes
|
||||
NO_BUILD= yes
|
||||
USES= gmake
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ BUILD_DEPENDS= rubygem-facter>=0:sysutils/rubygem-facter \
|
|||
|
||||
USE_RC_SUBR= puppetdb
|
||||
|
||||
CONFLICTS_INSTALL= puppetdb4-*
|
||||
CONFLICTS_INSTALL= puppetdb3-* puppetdb4-*
|
||||
USES= shebangfix
|
||||
SHEBANG_FILES= ext/files/puppetdb \
|
||||
ext/files/puppetdb-anonymize \
|
||||
|
|
|
|||
78
databases/puppetdb3/Makefile
Normal file
78
databases/puppetdb3/Makefile
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= puppetdb
|
||||
PORTVERSION= 3.2.4
|
||||
CATEGORIES= databases java
|
||||
MASTER_SITES= http://downloads.puppetlabs.com/puppetdb/
|
||||
PKGNAMESUFFIX= 3
|
||||
|
||||
MAINTAINER= freebsd@zleslie.info
|
||||
COMMENT= PuppetDB storeconfigs backend
|
||||
|
||||
LICENSE= APACHE20
|
||||
|
||||
RUN_DEPENDS= bash:shells/bash \
|
||||
puppet:sysutils/puppet4
|
||||
BUILD_DEPENDS= rubygem-facter>=0:sysutils/rubygem-facter \
|
||||
rubygem-rake>=0:devel/rubygem-rake
|
||||
|
||||
USE_RC_SUBR= puppetdb
|
||||
|
||||
CONFLICTS_INSTALL= puppetdb-* puppetdb4-*
|
||||
USE_JAVA= yes
|
||||
NO_BUILD= yes
|
||||
JAVA_VERSION= 1.7+
|
||||
|
||||
USERS= puppetdb
|
||||
GROUPS= puppetdb
|
||||
|
||||
SUB_LIST= JAVA_HOME=${JAVA_HOME}
|
||||
SUB_FILES= pkg-message
|
||||
|
||||
PKGMESSAGE= ${WRKDIR}/pkg-message
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
post-patch:
|
||||
.for file in ext/config/bootstrap.cfg ext/config/logback.xml \
|
||||
ext/config/request-logging.xml ext/config/conf.d/config.ini \
|
||||
ext/config/conf.d/database.ini ext/config/conf.d/jetty.ini \
|
||||
ext/config/conf.d/repl.ini ext/bin/puppetdb
|
||||
@${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/${file}
|
||||
@${REINPLACE_CMD} -e "s|%%JAVA%%|${JAVA}|" ${WRKSRC}/${file}
|
||||
@${REINPLACE_CMD} -e "s|%%DATADIR%%|${DATADIR}|" ${WRKSRC}/${file}
|
||||
@${REINPLACE_CMD} -e "s|%%ETCDIR%%|${ETCDIR}|" ${WRKSRC}/${file}
|
||||
.endfor
|
||||
|
||||
.for file in ext/cli/anonymize ext/cli/config-migration \
|
||||
ext/cli/export ext/cli/foreground ext/cli/import \
|
||||
ext/cli/ssl-setup
|
||||
@${REINPLACE_CMD} -e 's|/etc/puppetlabs/puppetdb|${ETCDIR}|g' ${WRKSRC}/${file}
|
||||
@${REINPLACE_CMD} -e 's|/bin/bash|${PREFIX}/bin/bash|g' ${WRKSRC}/${file}
|
||||
.endfor
|
||||
|
||||
do-install:
|
||||
${MKDIR} ${STAGEDIR}${DATADIR}
|
||||
${MKDIR} ${STAGEDIR}${DATADIR}/cli
|
||||
${MKDIR} ${STAGEDIR}${DATADIR}/cli/apps
|
||||
${MKDIR} ${STAGEDIR}${ETCDIR}
|
||||
${MKDIR} ${STAGEDIR}${ETCDIR}/conf.d
|
||||
${MKDIR} ${STAGEDIR}/var/log/puppetdb
|
||||
${MKDIR} ${STAGEDIR}/var/db/puppetdb
|
||||
${INSTALL_DATA} ${WRKSRC}/puppetdb.jar ${STAGEDIR}${DATADIR}/puppetdb.jar
|
||||
${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/config.ini ${STAGEDIR}${ETCDIR}/conf.d/config.ini.sample
|
||||
${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/database.ini ${STAGEDIR}${ETCDIR}/conf.d/database.ini.sample
|
||||
${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/jetty.ini ${STAGEDIR}${ETCDIR}/conf.d/jetty.ini.sample
|
||||
${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/repl.ini ${STAGEDIR}${ETCDIR}/conf.d/repl.ini.sample
|
||||
${INSTALL_DATA} ${WRKSRC}/ext/config/bootstrap.cfg ${STAGEDIR}${ETCDIR}/bootstrap.cfg.sample
|
||||
${INSTALL_DATA} ${WRKSRC}/ext/config/logback.xml ${STAGEDIR}${ETCDIR}/logback.xml.sample
|
||||
${INSTALL_DATA} ${WRKSRC}/ext/config/request-logging.xml ${STAGEDIR}${ETCDIR}/request-logging.xml.sample
|
||||
${INSTALL_DATA} ${WRKSRC}/ext/cli/anonymize ${STAGEDIR}${DATADIR}/cli/apps/anonymize
|
||||
${INSTALL_DATA} ${WRKSRC}/ext/cli/config-migration ${STAGEDIR}${DATADIR}/cli/apps/config-migration
|
||||
${INSTALL_DATA} ${WRKSRC}/ext/cli/export ${STAGEDIR}${DATADIR}/cli/apps/export
|
||||
${INSTALL_DATA} ${WRKSRC}/ext/cli/foreground ${STAGEDIR}${DATADIR}/cli/apps/foreground
|
||||
${INSTALL_DATA} ${WRKSRC}/ext/cli/import ${STAGEDIR}${DATADIR}/cli/apps/import
|
||||
${INSTALL_DATA} ${WRKSRC}/ext/cli/ssl-setup ${STAGEDIR}${DATADIR}/cli/apps/ssl-setup
|
||||
${INSTALL_DATA} ${WRKSRC}/ext/bin/puppetdb ${STAGEDIR}${PREFIX}/sbin/puppetdb
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
2
databases/puppetdb3/distinfo
Normal file
2
databases/puppetdb3/distinfo
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
SHA256 (puppetdb-3.2.4.tar.gz) = 580d25ace29b61d7504dfc2650fd7e1c6a14e77421cbfafed14703d857996d84
|
||||
SIZE (puppetdb-3.2.4.tar.gz) = 25695565
|
||||
21
databases/puppetdb3/files/patch-ext__bin__puppetdb
Normal file
21
databases/puppetdb3/files/patch-ext__bin__puppetdb
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
--- ext/bin/puppetdb.orig 2016-01-25 03:46:10.797703384 +0000
|
||||
+++ ext/bin/puppetdb 2016-01-25 04:12:10.048976423 +0000
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/bin/bash
|
||||
+#!%%PREFIX%%/bin/bash
|
||||
|
||||
set -a
|
||||
if [ -r "/etc/default/puppetdb" ] ; then
|
||||
@@ -11,6 +11,12 @@
|
||||
USER="_puppetdb"
|
||||
INSTALL_DIR="/opt/puppetlabs/server/apps/puppetdb"
|
||||
CONFIG="/etc/puppetlabs/puppetdb/conf.d"
|
||||
+elif [ `uname` == "FreeBSD" ] ; then
|
||||
+ JAVA_BIN="%%JAVA%%"
|
||||
+ JAVA_ARGS="-Xmx192m"
|
||||
+ USER="puppetdb"
|
||||
+ INSTALL_DIR="%%DATADIR%%"
|
||||
+ CONFIG="%%PREFIX%%/%%ETCDIR%%/conf.d"
|
||||
else
|
||||
echo "You seem to be missing some important configuration files; could not find /etc/default/puppetdb or /etc/sysconfig/puppetdb" >&2
|
||||
exit 1
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
--- ext/config/conf.d/config.ini.orig 2016-02-25 00:02:56 UTC
|
||||
+++ ext/config/conf.d/config.ini
|
||||
@@ -3,10 +3,10 @@
|
||||
|
||||
[global]
|
||||
# Store mq/db data in a custom directory
|
||||
-vardir = /opt/puppetlabs/server/data/puppetdb
|
||||
+vardir = /var/db/puppetdb
|
||||
|
||||
# Use an external logback config file
|
||||
-logging-config = /etc/puppetlabs/puppetdb/logback.xml
|
||||
+logging-config = /usr/local/etc/puppetdb/logback.xml
|
||||
|
||||
[command-processing]
|
||||
# How many command-processing threads to use, defaults to (CPUs / 2)
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
--- ext/config/conf.d/database.ini.orig 2016-02-25 00:02:56 UTC
|
||||
+++ ext/config/conf.d/database.ini
|
||||
@@ -12,7 +12,7 @@ subprotocol = hsqldb
|
||||
# For the embedded DB: file:/path/to/database;hsqldb.tx=mvcc;sql.syntax_pgs=true
|
||||
# For PostgreSQL: //host:port/databaseName
|
||||
# Defaults to embedded DB located in <vardir>/db
|
||||
-subname = file:/opt/puppetlabs/server/data/puppetdb/db/db;hsqldb.tx=mvcc;sql.syntax_pgs=true
|
||||
+subname = file:/var/db/puppetdb/db/db;hsqldb.tx=mvcc;sql.syntax_pgs=true
|
||||
|
||||
# Connect as a specific user
|
||||
# username = foobar
|
||||
15
databases/puppetdb3/files/patch-ext__config__logback.xml
Normal file
15
databases/puppetdb3/files/patch-ext__config__logback.xml
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
--- ext/config/logback.xml.orig 2016-02-25 00:02:56 UTC
|
||||
+++ ext/config/logback.xml
|
||||
@@ -6,10 +6,10 @@
|
||||
</appender>
|
||||
|
||||
<appender name="F1" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||
- <file>/var/log/puppetlabs/puppetdb/puppetdb.log</file>
|
||||
+ <file>/var/log/puppetdb/puppetdb.log</file>
|
||||
|
||||
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
|
||||
- <fileNamePattern>/var/log/puppetlabs/puppetdb/puppetdb-%d{yyyy-MM-dd}.log.gz</fileNamePattern>
|
||||
+ <fileNamePattern>/var/log/puppetdb/puppetdb-%d{yyyy-MM-dd}.log.gz</fileNamePattern>
|
||||
<maxHistory>90</maxHistory>
|
||||
</rollingPolicy>
|
||||
<encoder>
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
--- ext/config/request-logging.xml.orig 2016-02-25 00:02:56 UTC
|
||||
+++ ext/config/request-logging.xml
|
||||
@@ -1,6 +1,6 @@
|
||||
<configuration debug="false">
|
||||
<appender name="FILE" class="ch.qos.logback.core.FileAppender">
|
||||
- <file>/var/log/puppetlabs/puppetdb/puppetdb-access.log</file>
|
||||
+ <file>/var/log/puppetdb/puppetdb-access.log</file>
|
||||
<encoder>
|
||||
<pattern>combined</pattern>
|
||||
<!-- To have the same "combined" pattern with elapsedTime ('%D')
|
||||
9
databases/puppetdb3/files/pkg-message.in
Normal file
9
databases/puppetdb3/files/pkg-message.in
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
If this is a new installation, please run the follow to setup your SSL/puppetdb
|
||||
server:
|
||||
|
||||
%%PREFIX%%/sbin/puppetdb ssl-setup
|
||||
|
||||
Add puppetdb_enable="YES" into your rc.conf to enable.
|
||||
|
||||
To enable communication from a FreeBSD Puppet master, install the
|
||||
puppetdb-terminus package on the master.
|
||||
85
databases/puppetdb3/files/puppetdb.in
Normal file
85
databases/puppetdb3/files/puppetdb.in
Normal file
|
|
@ -0,0 +1,85 @@
|
|||
#!/bin/sh
|
||||
|
||||
# $FreeBSD$
|
||||
#
|
||||
# PROVIDE: puppetdb
|
||||
# REQUIRE: LOGIN
|
||||
# KEYWORD: shutdown
|
||||
|
||||
#
|
||||
# Configuration settings for puppetdb in /etc/rc.conf:
|
||||
#
|
||||
# puppetdb_enable (bool):
|
||||
# Set to "NO" by default.
|
||||
# Set it to "YES" to enable puppetdb
|
||||
#
|
||||
# puppetdb_args (str):
|
||||
# Extra arguments passed to start command
|
||||
#
|
||||
# puppetdb_java_home (str):
|
||||
# Set to "%%JAVA_HOME%%" by default.
|
||||
# Set the Java virtual machine to run puppetdb
|
||||
#
|
||||
# puppetdb_java_opts (str):
|
||||
# Set to "" by default.
|
||||
# Java VM args to use.
|
||||
#
|
||||
# puppetdb_user (str):
|
||||
# Set to "puppetdb" by default.
|
||||
# User to run puppetdb as.
|
||||
#
|
||||
# puppetdb_group (str):
|
||||
# Set to "puppetdb" by default.
|
||||
# Group for data file ownership.
|
||||
#
|
||||
# puppetdb_log_file (str):
|
||||
# Set to "/var/log/puppetdb/puppetdb.log" by default.
|
||||
# Log file location.
|
||||
#
|
||||
|
||||
. /etc/rc.subr
|
||||
|
||||
name="puppetdb"
|
||||
rcvar=puppetdb_enable
|
||||
|
||||
load_rc_config "${name}"
|
||||
|
||||
: ${puppetdb_enable="NO"}
|
||||
: ${puppetdb_args="--config %%PREFIX%%/etc/puppetdb/conf.d -b %%PREFIX%%/etc/puppetdb/bootstrap.cfg"}
|
||||
: ${puppetdb_java_home="%%JAVA_HOME%%"}
|
||||
: ${puppetdb_user="puppetdb"}
|
||||
: ${puppetdb_group="puppetdb"}
|
||||
: ${puppetdb_log_file="/var/log/puppetdb/puppetdb.log"}
|
||||
|
||||
pidfile="/var/run/puppetdb/puppetdb.pid"
|
||||
command="/usr/sbin/daemon"
|
||||
java_cmd="${puppetdb_java_home}/bin/java"
|
||||
procname="${java_cmd}"
|
||||
command_args="-p ${pidfile} ${java_cmd} -cp %%DATADIR%%/puppetdb.jar clojure.main -m puppetlabs.puppetdb.main ${puppetdb_args} > ${puppetdb_log_file} 2>&1"
|
||||
|
||||
|
||||
required_files="${java_cmd}"
|
||||
|
||||
start_precmd="puppetdb_prestart"
|
||||
|
||||
puppetdb_prestart() {
|
||||
if [ ! -f "${puppetdb_log_file}" ]; then
|
||||
touch "${puppetdb_log_file}"
|
||||
chown "${puppetdb_user}:${puppetdb_group}" "${puppetdb_log_file}"
|
||||
chmod 640 "${puppetdb_log_file}"
|
||||
fi
|
||||
if [ ! -d "/var/run/puppetdb" ]; then
|
||||
install -d -o "${puppetdb_user}" -g "${puppetdb_group}" -m 750 "/var/run/puppetdb"
|
||||
fi
|
||||
|
||||
chown -R "root:${puppetdb_group}" "%%PREFIX%%/etc/puppetdb/conf.d"
|
||||
chmod 0750 "%%PREFIX%%/etc/puppetdb/conf.d"
|
||||
|
||||
chown "root:${puppetdb_group}" "%%PREFIX%%/etc/puppetdb/logback.xml"
|
||||
chmod 0640 "%%PREFIX%%/etc/puppetdb/logback.xml"
|
||||
|
||||
chown -R "${puppetdb_user}:${puppetdb_group}" "/var/db/puppetdb"
|
||||
chmod 0750 "/var/db/puppetdb"
|
||||
}
|
||||
|
||||
run_rc_command "$1"
|
||||
3
databases/puppetdb3/pkg-descr
Normal file
3
databases/puppetdb3/pkg-descr
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
The PuppetDB storeconfigs backend
|
||||
|
||||
WWW: https://docs.puppetlabs.com/puppetdb/latest/
|
||||
21
databases/puppetdb3/pkg-plist
Normal file
21
databases/puppetdb3/pkg-plist
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
@sample %%ETCDIR%%/logback.xml.sample
|
||||
@sample %%ETCDIR%%/bootstrap.cfg.sample
|
||||
@sample %%ETCDIR%%/request-logging.xml.sample
|
||||
@sample %%ETCDIR%%/conf.d/config.ini.sample
|
||||
@sample %%ETCDIR%%/conf.d/database.ini.sample
|
||||
@sample %%ETCDIR%%/conf.d/jetty.ini.sample
|
||||
@sample %%ETCDIR%%/conf.d/repl.ini.sample
|
||||
%%DATADIR%%/puppetdb.jar
|
||||
@group puppetdb
|
||||
@group
|
||||
@mode 0750
|
||||
%%DATADIR%%/cli/apps/anonymize
|
||||
%%DATADIR%%/cli/apps/config-migration
|
||||
%%DATADIR%%/cli/apps/export
|
||||
%%DATADIR%%/cli/apps/foreground
|
||||
%%DATADIR%%/cli/apps/import
|
||||
%%DATADIR%%/cli/apps/ssl-setup
|
||||
sbin/puppetdb
|
||||
@mode
|
||||
@dir(puppetdb,puppetdb,) /var/log/puppetdb
|
||||
@dir(puppetdb,puppetdb,) /var/db/puppetdb
|
||||
|
|
@ -17,7 +17,7 @@ RUN_DEPENDS= bash:shells/bash \
|
|||
|
||||
USE_RC_SUBR= puppetdb
|
||||
|
||||
CONFLICTS_INSTALL= puppetdb-*
|
||||
CONFLICTS_INSTALL= puppetdb-* puppetdb3-*
|
||||
USES= shebangfix
|
||||
SHEBANG_FILES= ext/bin/puppetdb \
|
||||
ext/cli/anonymize \
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= plyr
|
||||
PORTVERSION= 1.8.3
|
||||
PORTVERSION= 1.8.4
|
||||
CATEGORIES= devel
|
||||
DISTNAME= ${PORTNAME}_${DISTVERSION}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (plyr_1.8.3.tar.gz) = f31afae9b1998dcf806d9ec82474fac49837082e310a2c6e3ee3cbcb55ff641b
|
||||
SIZE (plyr_1.8.3.tar.gz) = 392337
|
||||
TIMESTAMP = 1465469357
|
||||
SHA256 (plyr_1.8.4.tar.gz) = 60b522d75961007658c9806f8394db27989f1154727cb0bb970062c96ec9eac5
|
||||
SIZE (plyr_1.8.4.tar.gz) = 392451
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= artifactory
|
||||
PORTVERSION= 4.7.4
|
||||
PORTVERSION= 4.8.0
|
||||
CATEGORIES= devel java
|
||||
MASTER_SITES= https://bintray.com/artifact/download/jfrog/artifactory/
|
||||
DISTNAME= jfrog-${PORTNAME}-oss-${PORTVERSION}
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (jfrog-artifactory-oss-4.7.4.zip) = 05ccc6371a6adce0edb7d484a066e3556a660d9359b9bef594aad2128c1784f2
|
||||
SIZE (jfrog-artifactory-oss-4.7.4.zip) = 40429258
|
||||
TIMESTAMP = 1465114901
|
||||
SHA256 (jfrog-artifactory-oss-4.8.0.zip) = 2de13962ad1e6f4f1537e1fd86b6e70da6afae67a2449bf0cb369d3a84267647
|
||||
SIZE (jfrog-artifactory-oss-4.8.0.zip) = 41084705
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
PORTNAME= binutils
|
||||
PORTVERSION= 2.25.1
|
||||
PORTEPOCH= 1
|
||||
PORTREVISION?= 2
|
||||
PORTREVISION?= 3
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= SOURCEWARE/binutils/releases
|
||||
|
||||
|
|
@ -47,6 +47,7 @@ INFO= as \
|
|||
.endif
|
||||
|
||||
CONFIGURE_ARGS+= --disable-werror \
|
||||
--enable-deterministic-archives \
|
||||
--with-sysroot=/
|
||||
|
||||
MAKE_ENV+= ac_cv_func_sbrk=0
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ PORTDOCS= *
|
|||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
do-configure:
|
||||
${REINPLACE_CMD} -e "s:%%PERL%%:${PERL}:" \
|
||||
@${REINPLACE_CMD} -e "s:%%PERL%%:${PERL}:" \
|
||||
-e "s:%%CXX%%:${CXX}:" \
|
||||
-e "s:%%CXXFLAGS%%:${CXXFLAGS}:" \
|
||||
-e "s:-pedantic::" \
|
||||
|
|
@ -34,7 +34,10 @@ do-configure:
|
|||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/../bin_opt_gcc_/ccdoc.exe \
|
||||
${STAGEDIR}${PREFIX}/bin/ccdoc
|
||||
${INSTALL_MAN} ${WRKSRC}/../doc/htdocs/ccdoc.man ${STAGEDIR}${MAN1PREFIX}/man/man1/${PORTNAME}.1
|
||||
${INSTALL_MAN} ${WRKSRC}/../doc/htdocs/ccdoc.man \
|
||||
${STAGEDIR}${MAN1PREFIX}/man/man1/${PORTNAME}.1
|
||||
|
||||
do-install-DOCS-on:
|
||||
cd ${WRKSRC}/../doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
--- mkopt_gcc.mk.orig Tue Feb 17 10:33:54 2004
|
||||
+++ mkopt_gcc.mk Tue Feb 17 10:36:57 2004
|
||||
--- mkopt_gcc.mk.orig 2004-10-06 16:35:47 UTC
|
||||
+++ mkopt_gcc.mk
|
||||
@@ -1,17 +1,17 @@
|
||||
# ================================================
|
||||
# GCC compiler, optimized mode, any platform.
|
||||
|
|
|
|||
|
|
@ -2,8 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= florist-gpl
|
||||
PORTVERSION= 2015
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 2016
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://downloads.dragonlace.net/src/
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (florist-gpl-2015-src.tar.gz) = 5db1704450c379eb4c247f66a4605630bc2677f36fe385eeea115d5e283563e8
|
||||
SIZE (florist-gpl-2015-src.tar.gz) = 291558
|
||||
TIMESTAMP = 1465514913
|
||||
SHA256 (florist-gpl-2016-src.tar.gz) = 658e32bfc3bd661bc7edc5b616dcd2427699e7b14065c5093b8a2d8c05ed1af8
|
||||
SIZE (florist-gpl-2016-src.tar.gz) = 291635
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
--- Makefile.in.orig 2015-04-30 10:20:42 UTC
|
||||
--- Makefile.in.orig 2016-05-16 09:26:01 UTC
|
||||
+++ Makefile.in
|
||||
@@ -171,7 +171,14 @@ distclean: clean
|
||||
# install floristlib
|
||||
# make all files read-only to prevent recompilation
|
||||
install:
|
||||
- gprinstall -Pflorist $(PROJECT_FLAGS) -a -p --prefix=$(PREFIX) --sources-subdir=floristlib --lib-subdir=floristlib --link-lib-subdir=floristlib
|
||||
- gprinstall -Pflorist $(PROJECT_FLAGS) -a -p -f --prefix=$(PREFIX) --sources-subdir=floristlib --lib-subdir=floristlib --link-lib-subdir=floristlib
|
||||
- chmod a-w $(PREFIX)/floristlib/*
|
||||
+ mkdir -p $(DESTDIR)$(PREFIX)/lib/gnat \
|
||||
+ $(DESTDIR)$(PREFIX)/lib/florist \
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-addons
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-autoclose
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-automark
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-codenav
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-commander
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-ctags
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
RUN_DEPENDS= exctags:devel/ctags
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-debugger
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
USE_GNOME= vte
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-defineformat
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-devhelp
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
LIB_DEPENDS= libwnck-1.so:x11-toolkits/libwnck \
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-doc
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-extrasel
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-geanypy
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
USE_GNOME= pygtk2
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-gendoc
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
LIB_DEPENDS= libctpl.so:textproc/ctpl
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-geniuspaste
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
LIB_DEPENDS= libsoup-2.4.so:devel/libsoup
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-git-changebar
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
LIB_DEPENDS= libgit2.so:devel/libgit2
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-insertnum
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-latex
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-lineoperations
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-lipsum
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-lua
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
USES= lua:51
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-macro
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-markdown
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
LIB_DEPENDS= libwebkitgtk-1.0.so:www/webkit-gtk2
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-miniscript
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-multiterm
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
BUILD_DEPENDS= valac:lang/vala
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-numberedbookmarks
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-overview
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-pairtaghighlighter
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-pg
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
LIB_DEPENDS= libgpgme.so:security/gpgme
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-pohelper
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-pretty-printer
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ PORTNAME= geany-plugin-prj
|
|||
PORTVERSION= ${GEANY_VER}
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= makc@FreeBSD.org
|
||||
MAINTAINER= madpilot@FreeBSD.org
|
||||
COMMENT= Geany plugin: ${${GEANY_PLUGIN}_DESC}
|
||||
|
||||
.include "${.CURDIR}/../geany-plugins/files/Makefile.common"
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue