- Remove empty files [1]

- While here, portlint

PR:		ports/68068 [1]
Submitted by:	Sergey Matveychuk <sem@ciam.ru>
This commit is contained in:
Pav Lucistnik 2004-06-20 20:59:26 +00:00
parent fe7fe72ddd
commit b71acf0516
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=111880
15 changed files with 10 additions and 14 deletions

View File

@ -7,9 +7,8 @@
PORTNAME= manpages-de
PORTVERSION= 0.4
CATEGORIES= german
MASTER_SITES= http://www.infodrom.org/projects/manpages-de/download/ \
MASTER_SITES= http://www.infodrom.org/projects/manpages-de/download/ \
http://wolfram.schneider.org/src/
MAINTAINER= wosch@FreeBSD.org

View File

@ -165,7 +165,7 @@ MAN3= glDisable.3 glDisableClientState.3 glEdgeFlag.3 \
do-install:
@for file in ${MAN3} ; do \
$(INSTALL_MAN) $(WRKSRC)/man3/$$file $(PREFIX)/man/man3/. ; \
${INSTALL_MAN} ${WRKSRC}/man3/$$file ${PREFIX}/man/man3/. ; \
done
.include <bsd.port.post.mk>

View File

View File

@ -54,8 +54,5 @@ do-install:
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
post-install:
@${SED} 's!%%PREFIX%%!${PREFIX}!g; s!%%EZMLM_DIR%%!${PREFIX}${EZMLM_DIR:S/^\///}!g' ${PKGMESSAGE}
@${ECHO}
.include <bsd.port.mk>

View File

@ -62,7 +62,7 @@ post-clean:
@${RM} -f ${MODFILE}
do-install:
@${MKDIR} -p ${PREFIX}/share/sword
@${MKDIR} ${PREFIX}/share/sword
@for i in ${MODULE_FILES}; do \
${EXTRACT_CMD} -qo ${DISTDIR}/${DIST_SUBDIR}/$${i} -d ${PREFIX}/share/sword; \
done

View File

View File

@ -28,24 +28,24 @@ BROKEN= "Install fails"
USE_AUTOCONF_VER= 213
GNU_CONFIGURE= YES
USE_PERL5= YES
CONFIGURE_ENV+= PERL=${PERL5}
CONFIGURE_ENV+= PERL=${PERL5}
CONFIGURE_ARGS+= --with-etcdir=${PREFIX}/etc
CONFIGURE_ARGS+= --with-etcdir=${PREFIX}/etc
# Uncomment if all your users are in their own group and their homedir
# is writeable by that group. Beware the security implications!
#
#CONFIGURE_ARGS+= --enable-group-writeability
#CONFIGURE_ARGS+= --enable-group-writeability
# Uncomment if you want to allow ssh to emulate an unencrypted rsh connection
# over a secure medium (i.e. allow SSH connections without encryption).
# This is normally dangerous since it can lead to the disclosure of keys
# and passwords.
#
#CONFIGURE_ARGS+= --with-none
#CONFIGURE_ARGS+= --with-none
.if defined(KRB5_HOME) && exists(${KRB5_HOME})
CONFIGURE_ARGS+=--with-kerberos5=${KRB5_HOME} --enable-kerberos-tgt-passing \
CONFIGURE_ARGS+= --with-kerberos5=${KRB5_HOME} --enable-kerberos-tgt-passing \
--disable-suid-ssh
.endif
@ -53,7 +53,7 @@ CONFIGURE_ARGS+=--with-kerberos5=${KRB5_HOME} --enable-kerberos-tgt-passing \
# Warning: untested !
#
.if defined(WITH_SECUREID)
CONFIGURE_ARGS+= --with-secureid
CONFIGURE_ARGS+= --with-secureid
.endif
# Don't use IDEA. IDEA can be freely used for non-commercial use. However,
@ -69,6 +69,6 @@ pre-patch:
.include <bsd.port.pre.mk>
# no IDEA, tcpwrap, IPV6, SOCKS, x11 for picobsd
CONFIGURE_ARGS+= --disable-ipv6 --without-x --without-idea
CONFIGURE_ARGS+= --disable-ipv6 --without-x --without-idea
.include <bsd.port.post.mk>

View File