svn commit: r323448 - in head/security/openssh-askpass: . files
Hiroki Sato
hrs at FreeBSD.org
Mon Jul 22 13:45:30 UTC 2013
Author: hrs
Date: Mon Jul 22 13:45:29 2013
New Revision: 323448
URL: http://svnweb.freebsd.org/changeset/ports/323448
Log:
- Fix build breakage.
- Add LICENSE.
Reported by: miwi
Modified:
head/security/openssh-askpass/Makefile
head/security/openssh-askpass/files/Makefile.in
Modified: head/security/openssh-askpass/Makefile
==============================================================================
--- head/security/openssh-askpass/Makefile Mon Jul 22 13:42:10 2013 (r323447)
+++ head/security/openssh-askpass/Makefile Mon Jul 22 13:45:29 2013 (r323448)
@@ -3,7 +3,7 @@
PORTNAME= OpenSSH-askpass
PORTVERSION= 1.2.4.1
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= security
MASTER_SITES= http://www.jmknoble.net/software/x11-ssh-askpass/
DISTNAME= x11-ssh-askpass-${PORTVERSION}
@@ -11,12 +11,16 @@ DISTNAME= x11-ssh-askpass-${PORTVERSION}
MAINTAINER= hrs at FreeBSD.org
COMMENT= Graphical password applet for entering SSH passphrase
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/README
+
USE_XORG= x11 xt sm ice
DOCSDIR= ${PREFIX}/share/doc/ssh-askpass
PLIST_FILES= bin/x11-ssh-askpass \
bin/ssh-askpass \
lib/X11/app-defaults/SshAskpass
PORTDOCS= README TODO ChangeLog
+MAKE_JOBS_SAFE= yes
MAN1= x11-ssh-askpass.1
MLINKS= x11-ssh-askpass.1 ssh-askpass.1
Modified: head/security/openssh-askpass/files/Makefile.in
==============================================================================
--- head/security/openssh-askpass/files/Makefile.in Mon Jul 22 13:42:10 2013 (r323447)
+++ head/security/openssh-askpass/files/Makefile.in Mon Jul 22 13:45:29 2013 (r323448)
@@ -17,6 +17,8 @@ LDADD= -lXt -lX11 -lSM -lICE -L${LOCALBA
CFLAGS+=-I${LOCALBASE}/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO
MAN= ${PROG}.1
+x11-ssh-askpass.o: ${CLASS}_ad.h
+
${PROG}.1: x11-ssh-askpass.man.in
sed -e 's|@NAME@|${PROG}|' \
-e 's|@DATE@|September 17, 2001|'\
@@ -30,8 +32,7 @@ ${CLASS}.ad: ${CLASS}-default.ad
cp $? $@
${CLASS}_ad.h: ${CLASS}.ad
- sed -n '/^[^!]/s/.*/"&",/p' < $? >$@.tmp
- mv $@.tmp $@
+ sed -n '/^[^!]/s/.*/"&",/p' < $? > $@ || (rm -f $@; false)
${PROG}: ${CLASS}_ad.h
CLEANFILES+= ${CLASS}_ad.h
More information about the svn-ports-head
mailing list