svn commit: r359924 - in head/net-im: tox toxic toxic/files venom

Thierry Thomas thierry at FreeBSD.org
Mon Jun 30 21:22:28 UTC 2014


Author: thierry
Date: Mon Jun 30 21:22:25 2014
New Revision: 359924
URL: http://svnweb.freebsd.org/changeset/ports/359924
QAT: https://qat.redports.org/buildarchive/r359924/

Log:
  Refresh to a recent snapshot.

Modified:
  head/net-im/tox/Makefile
  head/net-im/tox/distinfo
  head/net-im/tox/pkg-plist
  head/net-im/toxic/Makefile
  head/net-im/toxic/distinfo
  head/net-im/toxic/files/pkg-message.in
  head/net-im/toxic/pkg-plist
  head/net-im/venom/Makefile
  head/net-im/venom/distinfo
  head/net-im/venom/pkg-plist

Modified: head/net-im/tox/Makefile
==============================================================================
--- head/net-im/tox/Makefile	Mon Jun 30 21:21:12 2014	(r359923)
+++ head/net-im/tox/Makefile	Mon Jun 30 21:22:25 2014	(r359924)
@@ -1,8 +1,8 @@
 # Created by: Thierry Thomas <thierry at pompo.net>
 # $FreeBSD$
 
-PORTNAME=	ProjectTox-Core
-PORTVERSION=	0.140611
+PORTNAME=	toxcore
+PORTVERSION=	0.140630
 CATEGORIES=	net-im net-p2p
 
 MAINTAINER=	thierry at FreeBSD.org
@@ -19,9 +19,9 @@ LIB_DEPENDS=	libvpx.so:${PORTSDIR}/multi
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	irungentoo
-GH_PROJECT=	ProjectTox-Core
+GH_PROJECT=	${PORTNAME}
 GH_TAGNAME=	${GH_COMMIT}
-GH_COMMIT=	63f25f8
+GH_COMMIT=	8f7638d
 
 USE_AUTOTOOLS=	libtoolize aclocal autoconf autoheader automake
 AUTOMAKE_ARGS=	-a -c -f

Modified: head/net-im/tox/distinfo
==============================================================================
--- head/net-im/tox/distinfo	Mon Jun 30 21:21:12 2014	(r359923)
+++ head/net-im/tox/distinfo	Mon Jun 30 21:22:25 2014	(r359924)
@@ -1,2 +1,2 @@
-SHA256 (ProjectTox-Core-0.140611.tar.gz) = 86b3576a705742153f18a5ccb77b9506d4fc2ee505620da6271c907d716b8ea4
-SIZE (ProjectTox-Core-0.140611.tar.gz) = 269950
+SHA256 (toxcore-0.140630.tar.gz) = f904883298dade37f15018b4bead9bf164450d62c1694c2a2cefb830abb56c7b
+SIZE (toxcore-0.140630.tar.gz) = 277832

Modified: head/net-im/tox/pkg-plist
==============================================================================
--- head/net-im/tox/pkg-plist	Mon Jun 30 21:21:12 2014	(r359923)
+++ head/net-im/tox/pkg-plist	Mon Jun 30 21:22:25 2014	(r359924)
@@ -1,6 +1,7 @@
 bin/DHT_bootstrap
 include/tox/tox.h
 include/tox/toxav.h
+include/tox/toxdns.h
 lib/libtoxav.a
 %%SODIUM%%lib/libtoxav.so
 %%SODIUM%%lib/libtoxav.so.0
@@ -9,6 +10,10 @@ lib/libtoxcore.a
 %%SODIUM%%lib/libtoxcore.so
 %%SODIUM%%lib/libtoxcore.so.0
 %%SODIUM%%lib/libtoxcore.so.0.0.0
+lib/libtoxdns.a
+%%SODIUM%%lib/libtoxdns.so
+%%SODIUM%%lib/libtoxdns.so.0
+%%SODIUM%%lib/libtoxdns.so.0.0.0
 libdata/pkgconfig/libtoxav.pc
 libdata/pkgconfig/libtoxcore.pc
 @dirrm include/tox

Modified: head/net-im/toxic/Makefile
==============================================================================
--- head/net-im/toxic/Makefile	Mon Jun 30 21:21:12 2014	(r359923)
+++ head/net-im/toxic/Makefile	Mon Jun 30 21:22:25 2014	(r359924)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	toxic
-PORTVERSION=	0.4.0.140611
+PORTVERSION=	0.4.2.140630
 CATEGORIES=	net-im
 
 MAINTAINER=	thierry at FreeBSD.org
@@ -19,13 +19,15 @@ RUN_DEPENDS=	${LOCALBASE}/lib/libtoxcore
 USE_GITHUB=	yes
 GH_ACCOUNT=	tox
 GH_TAGNAME=	${GH_COMMIT}
-GH_COMMIT=	328e7f8
+GH_COMMIT=	a126f9c
 
 WRKSRC=		${WRKDIR}/Tox-${PORTNAME}-${GH_COMMIT}
+BUILD_WRKSRC=	${WRKSRC}/build
+INSTALL_WRKSRC=	${BUILD_WRKSRC}
+MAKE_ENV=	USER_CFLAGS="${CFLAGS}" USER_LDFLAGS="${LDFLAGS}"
 SUB_FILES=	pkg-message
 
-USES=		ncurses:port pkgconfig
-USE_AUTOTOOLS=	autoconf aclocal
+USES=		ncurses:port gmake pkgconfig
 
 .include <bsd.port.pre.mk>
 
@@ -34,13 +36,11 @@ USE_BINUTILS=	yes
 LDFLAGS+=	-B${LOCALBASE}/bin
 .endif
 
-run-autotools:
-	cd ${CONFIGURE_WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${AUTORECONF} -if
+pre-configure:
+	${REINPLACE_CMD} -e 's|PREFIX =|PREFIX?=|;s|$$(shell git rev-list HEAD --count)|${GH_COMMIT}|'	\
+		${BUILD_WRKSRC}/${MAKEFILE}
 
 post-install:
-.if !defined(NOPORTEXAMPLES)
-	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
-	${INSTALL_DATA} ${WRKSRC}/misc/toxic.conf ${STAGEDIR}${EXAMPLESDIR}
-.endif
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/toxic
 
 .include <bsd.port.post.mk>

Modified: head/net-im/toxic/distinfo
==============================================================================
--- head/net-im/toxic/distinfo	Mon Jun 30 21:21:12 2014	(r359923)
+++ head/net-im/toxic/distinfo	Mon Jun 30 21:22:25 2014	(r359924)
@@ -1,2 +1,2 @@
-SHA256 (toxic-0.4.0.140611.tar.gz) = 3124965b56a4ed42b80af08f58a126d8c4f0035084393bcf9297b35290f1994f
-SIZE (toxic-0.4.0.140611.tar.gz) = 78177
+SHA256 (toxic-0.4.2.140630.tar.gz) = 64551ccf2cea7c5c8ebe47ddffbd06b8ace5e1da155895f1370b0dd1be3e1fc4
+SIZE (toxic-0.4.2.140630.tar.gz) = 70949

Modified: head/net-im/toxic/files/pkg-message.in
==============================================================================
--- head/net-im/toxic/files/pkg-message.in	Mon Jun 30 21:21:12 2014	(r359923)
+++ head/net-im/toxic/files/pkg-message.in	Mon Jun 30 21:22:25 2014	(r359924)
@@ -7,7 +7,7 @@
 	colour_theme:1;
   in your ~/.config/tox/toxic.conf
 
-  (more parameters available - see %%EXAMPLESDIR%%/toxic.conf )
+  (more parameters available - see %%DATADIR%%/toxic.conf.example )
 
   or try to define another TERM, e.g.:
 	TERM=vt100 toxic

Modified: head/net-im/toxic/pkg-plist
==============================================================================
--- head/net-im/toxic/pkg-plist	Mon Jun 30 21:21:12 2014	(r359923)
+++ head/net-im/toxic/pkg-plist	Mon Jun 30 21:22:25 2014	(r359924)
@@ -1,5 +1,8 @@
 bin/toxic
-%%PORTEXAMPLES%%%%EXAMPLESDIR%%/toxic.conf
+man/man1/toxic.1-e.gz
+man/man1/toxic.1.gz
+man/man5/toxic.conf.5-e.gz
+man/man5/toxic.conf.5.gz
 %%DATADIR%%/DHTnodes
+%%DATADIR%%/toxic.conf.example
 @dirrm %%DATADIR%%
-%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%

Modified: head/net-im/venom/Makefile
==============================================================================
--- head/net-im/venom/Makefile	Mon Jun 30 21:21:12 2014	(r359923)
+++ head/net-im/venom/Makefile	Mon Jun 30 21:22:25 2014	(r359924)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	Venom
-PORTVERSION=	0.2.0.140611
+PORTVERSION=	0.2.0.140630
 CATEGORIES=	net-im
 
 MAINTAINER=	thierry at FreeBSD.org
@@ -19,9 +19,9 @@ RUN_DEPENDS=	${LOCALBASE}/lib/libtoxcore
 USE_GITHUB=	yes
 GH_ACCOUNT=	naxuroqa
 GH_TAGNAME=	${GH_COMMIT}
-GH_COMMIT=	91b1f35
+GH_COMMIT=	dd91b7c
 
-USES=		cmake desktop-file-utils pkgconfig
+USES=		cmake desktop-file-utils pkgconfig gettext
 USE_GNOME=	glib20 gtk30
 USE_SQLITE=	yes
 INSTALLS_ICONS=	yes

Modified: head/net-im/venom/distinfo
==============================================================================
--- head/net-im/venom/distinfo	Mon Jun 30 21:21:12 2014	(r359923)
+++ head/net-im/venom/distinfo	Mon Jun 30 21:22:25 2014	(r359924)
@@ -1,2 +1,2 @@
-SHA256 (Venom-0.2.0.140611.tar.gz) = 6b6c0422531d207761553950c06e4f84638e32d46cdfc8f14e29402bb1374fbb
-SIZE (Venom-0.2.0.140611.tar.gz) = 148241
+SHA256 (Venom-0.2.0.140630.tar.gz) = b3274853ffec0282472175179292d124984b80e8c495124c22f5bae06b5b8629
+SIZE (Venom-0.2.0.140630.tar.gz) = 163496

Modified: head/net-im/venom/pkg-plist
==============================================================================
--- head/net-im/venom/pkg-plist	Mon Jun 30 21:21:12 2014	(r359923)
+++ head/net-im/venom/pkg-plist	Mon Jun 30 21:22:25 2014	(r359924)
@@ -7,6 +7,8 @@ share/icons/hicolor/32x32/apps/venom.png
 share/icons/hicolor/48x48/apps/venom.png
 share/icons/hicolor/64x64/apps/venom.png
 share/icons/hicolor/scalable/apps/venom.svg
+share/locale/de/LC_MESSAGES/Venom.mo
+share/locale/it/LC_MESSAGES/Venom.mo
 share/pixmaps/venom.png
 share/venom/theme/default.css
 @dirrmtry share/venom/theme


More information about the svn-ports-all mailing list