Bug 168855 - [PATCH] net-p2p/uhub: update to 0.4.0 + lots more
Summary: [PATCH] net-p2p/uhub: update to 0.4.0 + lots more
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Michael Scheidell
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-06-08 16:00 UTC by koobs
Modified: 2012-08-06 11:30 UTC (History)
1 user (show)

See Also:


Attachments
uhub-0.4.0.patch (4.07 KB, patch)
2012-06-08 16:00 UTC, koobs
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description koobs 2012-06-08 16:00:23 UTC
- Update to 0.4.0
- Honour CC and CFLAGS
- Convert to OPTIONSNG
- Add SQLite dependency
- Add DEBUG OPTION
- Use DISTFILES over DISTNAME/WRKSRC override
- Add LICENSE 
- Use USE_OPENSSL
- Fix PORTLINT warnings

Port maintainer (yashin.dm@gmail.com) is cc'd.

Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports)
Comment 1 Martin Wilke freebsd_committer freebsd_triage 2012-06-08 18:15:06 UTC
Responsible Changed
From-To: freebsd-ports-bugs->miwi

I'll take it.
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2012-06-09 07:39:08 UTC
Maintainer of net-p2p/uhub,

Please note that PR ports/168855 has just been submitted.

If it contains a patch for an upgrade, an enhancement or a bug fix
you agree on, reply to this email stating that you approve the patch
and a committer will take care of it.

The full text of the PR can be found at:
    http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/168855

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 3 Edwin Groothuis freebsd_committer freebsd_triage 2012-06-09 07:39:10 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 4 Dmitry Yashin 2012-06-12 18:22:02 UTC
thx, commit.
Comment 5 Martin Wilke freebsd_committer freebsd_triage 2012-08-05 07:28:26 UTC
Responsible Changed
From-To: miwi->freebsd-ports-bugs

Over to maintainer.
Comment 6 Michael Scheidell freebsd_committer freebsd_triage 2012-08-05 22:39:38 UTC
Responsible Changed
From-To: freebsd-ports-bugs->scheidell

I'll take it.
Comment 7 dfilter service freebsd_committer freebsd_triage 2012-08-06 11:28:41 UTC
Author: scheidell
Date: Mon Aug  6 10:28:27 2012
New Revision: 302156
URL: http://svn.freebsd.org/changeset/ports/302156

Log:
  - Update to 0.4.0
  - Honour CC and CFLAGS
  - Convert to OPTIONSNG
  - Add SQLite dependency
  - Add DEBUG OPTION
  - Use DISTFILES over DISTNAME/WRKSRC override
  - Add LICENSE
  - Use USE_OPENSSL
  - Fix PORTLINT warnings
  
  PR:		ports/168855
  Submitted by:	koobs <koobs.freebsd@gmail.com>
  Approved by:	maintainer (timeout, 58 days)

Modified:
  head/net-p2p/uhub/Makefile
  head/net-p2p/uhub/distinfo
  head/net-p2p/uhub/files/patch-GNUmakefile

Modified: head/net-p2p/uhub/Makefile
==============================================================================
--- head/net-p2p/uhub/Makefile	Mon Aug  6 09:40:09 2012	(r302155)
+++ head/net-p2p/uhub/Makefile	Mon Aug  6 10:28:27 2012	(r302156)
@@ -6,17 +6,19 @@
 #
 
 PORTNAME=	uhub
-PORTVERSION=	0.3.2
-PORTREVISION=	4
+PORTVERSION=	0.4.0
 CATEGORIES=	net-p2p
 MASTER_SITES=	http://www.extatic.org/downloads/uhub/
-DISTNAME=	${PORTNAME}-${PORTVERSION}-src
+DISTFILES=	${PORTNAME}-${PORTVERSION}-src${EXTRACT_SUFX}
 
 MAINTAINER=	yashin.dm@gmail.com
 COMMENT=	High performance peer-to-peer hub for the ADC network
 
+LICENSE=	GPLv3
+
 USE_PERL5_BUILD=yes
 USE_GMAKE=	yes
+USE_SQLITE=	yes
 
 USE_RC_SUBR=	uhub
 USERS=		uhub
@@ -24,20 +26,32 @@ GROUPS=		uhub
 SHAREGRP=	uhub
 SHAREMODE=	640
 
-WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 MAKEFILE=	${WRKSRC}/GNUmakefile
 
-OPTIONS=	OPENSSL		"Enable SSL support (experimental)" off
+OPTIONS_DEFINE=	DEBUG OPENSSL
+OPENSSL_DESC=	Enable OpenSSL Support (experimental)
 
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MOPENSSL}
+USE_OPENSSL=	yes
+MAKE_ARGS+=	USE_SSL=YES
+.else
+MAKE_ARGS+=	USE_SSL=NO
+.endif
 
-.if defined(WITH_OPENSSL)
-.include "${PORTSDIR}/Mk/bsd.openssl.mk"
-MAKE_ARGS=	USE_SSL=YES
-CFLAGS+=	-I${OPENSSLINC}
-LDFLAGS+=	-L${OPENSSLLIB}
+.if ${PORT_OPTIONS:MDEBUG}
+CFLAGS+=	-ggdb -DDEBUG
+.else
+CFLAGS+=	-DNDEBUG
 .endif
 
+.include <bsd.port.pre.mk>
+
+CFLAGS+=	-I./src/ -I${LOCALBASE}/include
+MAKE_ARGS+=	UHUB_PREFIX="${PREFIX}" UHUB_CONF_DIR="${PREFIX}/etc/uhub" \
+		SILENT=NO CC="${CC}" CFLAGS="${CFLAGS}"
+
 post-patch:
 	@${REINPLACE_CMD} -e 's|/etc/uhub/|${PREFIX}&|' ${WRKSRC}/doc/uhub.conf
 	@${REINPLACE_CMD} -e 's|/etc/uhub/|${PREFIX}&|' ${WRKSRC}/src/uhub.h

Modified: head/net-p2p/uhub/distinfo
==============================================================================
--- head/net-p2p/uhub/distinfo	Mon Aug  6 09:40:09 2012	(r302155)
+++ head/net-p2p/uhub/distinfo	Mon Aug  6 10:28:27 2012	(r302156)
@@ -1,2 +1,2 @@
-SHA256 (uhub-0.3.2-src.tar.gz) = 8503f9775e2469e271a461452cedf1ef6c0d32b38e0bec6b77170b216a5a374e
-SIZE (uhub-0.3.2-src.tar.gz) = 156108
+SHA256 (uhub-0.4.0-src.tar.gz) = e6f4c35bb5d5ff973ca2428a0432d6545b6f38f08387697cf05b608b5c4525ac
+SIZE (uhub-0.4.0-src.tar.gz) = 194568

Modified: head/net-p2p/uhub/files/patch-GNUmakefile
==============================================================================
--- head/net-p2p/uhub/files/patch-GNUmakefile	Mon Aug  6 09:40:09 2012	(r302155)
+++ head/net-p2p/uhub/files/patch-GNUmakefile	Mon Aug  6 10:28:27 2012	(r302156)
@@ -1,36 +1,12 @@
---- GNUmakefile.orig	2010-06-02 09:48:21.000000000 +0400
-+++ GNUmakefile	2010-06-02 09:55:21.000000000 +0400
-@@ -5,7 +5,7 @@
- 
- -include Makefile.private
- 
--CC            = gcc
-+CC            ?= gcc
- LD            := $(CC)
- MV            := mv
- RANLIB        := ranlib
-@@ -44,10 +44,10 @@
- BIN_EXT       ?= .exe
- else
- DESTDIR       ?= /
--UHUB_CONF_DIR ?= $(DESTDIR)/etc/uhub
--UHUB_PREFIX   ?= $(DESTDIR)/usr/local
--CFLAGS        += -I/usr/local/include
--LDFLAGS       += -L/usr/local/lib
-+UHUB_PREFIX   ?= $(PREFIX)
-+UHUB_CONF_DIR ?= $(UHUB_PREFIX)/etc/uhub
-+CFLAGS        += -I$(LOCALBASE)/include
-+LDFLAGS       += -L$(LOCALBASE)/lib
- BIN_EXT       ?=
- endif
- 
-@@ -249,7 +249,8 @@
- 	@if [ ! -d $(UHUB_CONF_DIR) ]; then echo Creating $(UHUB_CONF_DIR); mkdir -p $(UHUB_CONF_DIR); fi
- 	@if [ ! -f $(UHUB_CONF_DIR)/uhub.conf ]; then cp doc/uhub.conf $(UHUB_CONF_DIR); fi
- 	@if [ ! -f $(UHUB_CONF_DIR)/users.conf ]; then cp doc/users.conf  $(UHUB_CONF_DIR); fi
--	@touch $(UHUB_CONF_DIR)/motd.txt
+--- ./GNUmakefile.orig	2012-06-09 00:35:21.000000000 +1000
++++ ./GNUmakefile	2012-06-09 00:37:17.000000000 +1000
+@@ -365,8 +365,8 @@
+ 	@if [ ! -f $(UHUB_CONF_DIR)/rules.txt ]; then cp doc/rules.txt $(UHUB_CONF_DIR); fi
+ 	@if [ ! -f $(UHUB_CONF_DIR)/plugins.conf ]; then cp doc/plugins.conf $(UHUB_CONF_DIR); fi
+ 	@if [ ! -d $(UHUB_MOD_DIR) ]; then echo Creating $(UHUB_MOD_DIR); mkdir -p $(UHUB_MOD_DIR); fi
 +	@if [ ! -f $(UHUB_CONF_DIR)/motd.txt ]; then touch $(UHUB_CONF_DIR)/motd.txt; fi
-+	@if [ ! -f $(UHUB_CONF_DIR)/rules.txt ]; then touch $(UHUB_CONF_DIR)/rules.txt; fi
+ 	@cp -f mod_*.so $(UHUB_MOD_DIR)
+-	@touch $(UHUB_CONF_DIR)/motd.txt
  	@echo done.
  endif
  
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 8 Michael Scheidell freebsd_committer freebsd_triage 2012-08-06 11:29:02 UTC
State Changed
From-To: feedback->closed

Committed. Thanks!