Bug 176075 - net/radsecproxy does not use openssl port
Summary: net/radsecproxy does not use openssl port
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: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-02-12 17:00 UTC by Stephen Wall
Modified: 2013-02-19 23:10 UTC (History)
0 users

See Also:


Attachments
file.diff (462 bytes, patch)
2013-02-12 17:00 UTC, Stephen Wall
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Stephen Wall 2013-02-12 17:00:00 UTC
The radsecproxy port uses the base system libssl and libcrypto, even if /usr/ports/security/openssl is installed.  Having WITH_OPENSSL_PORT=yes in /etc/make.conf does not help.  The included patch does.

Fix: Apply this patch to /usr/ports/net/radsecproxy/Makefile:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-02-12 19:00:06 UTC
Maintainer of net/radsecproxy,

Please note that PR ports/176075 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/176075

-- 
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org
Comment 2 Edwin Groothuis freebsd_committer freebsd_triage 2013-02-12 19:00:07 UTC
State Changed
From-To: open->feedback

Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Comment 3 m.tsatsenko 2013-02-18 20:50:49 UTC
Approved.
Thank you!
Comment 4 Mark Linimon freebsd_committer freebsd_triage 2013-02-19 01:04:59 UTC
State Changed
From-To: feedback->open

Maintainer approved.
Comment 5 dfilter service freebsd_committer freebsd_triage 2013-02-19 23:07:56 UTC
Author: pawel
Date: Tue Feb 19 23:07:43 2013
New Revision: 312607
URL: http://svnweb.freebsd.org/changeset/ports/312607

Log:
  - Support using OpenSSL from ports
  - Trim Makefile header while here
  
  PR:		ports/176075
  Submitted by:	Steve Wall <swall@redcom.com>
  Approved by:	Mikhail Tsatsenko <m.tsatsenko@gmail.com> (maintainer)

Modified:
  head/net/radsecproxy/Makefile

Modified: head/net/radsecproxy/Makefile
==============================================================================
--- head/net/radsecproxy/Makefile	Tue Feb 19 22:40:55 2013	(r312606)
+++ head/net/radsecproxy/Makefile	Tue Feb 19 23:07:43 2013	(r312607)
@@ -1,7 +1,4 @@
-# New ports collection makefile for: radsecproxy
-# Date created: 2011-10-25
-# Whom: Honza Betik
-#
+# Created by: Honza Betik
 # $FreeBSD$
 
 PORTNAME=	radsecproxy
@@ -20,6 +17,8 @@ MAN5=		radsecproxy.conf.5
 
 GNU_CONFIGURE=	yes
 USE_RC_SUBR=	${PORTNAME}
+USE_OPENSSL=	yes
+CONFIGURE_ARGS=	--with-ssl=${OPENSSLBASE}
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/radsecproxy ${PREFIX}/bin/catgconf
_______________________________________________
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 6 Pawel Pekala freebsd_committer freebsd_triage 2013-02-19 23:08:06 UTC
State Changed
From-To: open->closed

Committed. Thanks!