svn commit: r325787 - head/net/ldapbrowser

Alexey Dokuchaev danfe at FreeBSD.org
Sat Aug 31 10:27:31 UTC 2013


Author: danfe
Date: Sat Aug 31 10:27:30 2013
New Revision: 325787
URL: http://svnweb.freebsd.org/changeset/ports/325787

Log:
  - Make it fetchable again by providing two backup sites for the time being
  - While here: touch COMMENT, wrap overly long lines, do not hardcode tar(1)
    program name and use -C switch, utilize REINPLACE_ARGS, remove old-school
    attribution from the port description and now-defunct WWW address line

Modified:
  head/net/ldapbrowser/Makefile
  head/net/ldapbrowser/pkg-descr

Modified: head/net/ldapbrowser/Makefile
==============================================================================
--- head/net/ldapbrowser/Makefile	Sat Aug 31 10:03:01 2013	(r325786)
+++ head/net/ldapbrowser/Makefile	Sat Aug 31 10:27:30 2013	(r325787)
@@ -1,18 +1,16 @@
-# Created by: Bruce M. Simpson
+# Created by: Bruce M. Simpson <bms at FreeBSD.org>
 # $FreeBSD$
 
 PORTNAME=	ldapbrowser
 PORTVERSION=	2.8.2
 PORTREVISION=	3
 CATEGORIES=	net java
-MASTER_SITES=	http://T32.TecNik93.com/FreeBSD/others_ports/${PORTNAME}/sources/ \
-		http://www.klop.ws/~ronald/software-mirrors/
+MASTER_SITES=	http://web.talf.org/software/ \
+		http://freebsd.nsu.ru/distfiles/
 DISTNAME=	Browser282b2
 
 MAINTAINER=	ronald at echteman.nl
-COMMENT=	Java/Swing-based LDAP browser/editor
-
-BROKEN=		fails to fetch
+COMMENT=	Java/Swing-based LDAP browser and editor
 
 RESTRICTED=	No reply from author regarding redistribution licensing
 
@@ -21,13 +19,15 @@ JAVA_VERSION=	1.6+
 NO_BUILD=	yes
 NOMAN=		defined
 WRKSRC=		${WRKDIR}/${PORTNAME}
+REINPLACE_ARGS=	-i ''
 
 post-extract:
-	@${REINPLACE_CMD} -i '' -e 's|lbe.jar|${PREFIX}/lib/ldapbrowser/lbe.jar|' ${WRKSRC}/lbe.sh
+	@${REINPLACE_CMD} -e 's|lbe\.jar|${PREFIX}/lib/ldapbrowser/lbe.jar|' \
+		${WRKSRC}/lbe.sh
 
 do-install:
-	${MKDIR} ${PREFIX}/lib/ldapbrowser
-	cd ${WRKSRC} ; tar cf - . | ( cd ${PREFIX}/lib/ldapbrowser ; tar xf - )
+	@${MKDIR} ${PREFIX}/lib/ldapbrowser
+	${TAR} -C ${WRKSRC} -cf - . | ${TAR} xf - -C ${PREFIX}/lib/ldapbrowser
 	${ECHO_CMD} "#!/bin/sh" > ${PREFIX}/bin/ldapbrowser
 	${ECHO_CMD} "${PREFIX}/lib/ldapbrowser/lbe.sh -base ${PREFIX}/lib/ldapbrowser" >> ${PREFIX}/bin/ldapbrowser
 	${CHMOD} +x ${PREFIX}/bin/ldapbrowser

Modified: head/net/ldapbrowser/pkg-descr
==============================================================================
--- head/net/ldapbrowser/pkg-descr	Sat Aug 31 10:03:01 2013	(r325786)
+++ head/net/ldapbrowser/pkg-descr	Sat Aug 31 10:27:30 2013	(r325787)
@@ -1,12 +1,5 @@
-From the website:
-
 The LDAP Browser/Editor provides a user-friendly Windows Explorer-like
 interface to LDAP directories with tightly integrated browsing and
 editing capabilities. It is entirely written in Java with the help
 of the JFC (SwingSet) and JNDI class libraries. It connects to LDAP
 v2 and v3 servers.
-
-WWW: http://www-unix.mcs.anl.gov/~gawor/ldap/index.html
-
-Bruce
-bms at spc.org


More information about the svn-ports-head mailing list