Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

33
misc/fep/Makefile Normal file
View File

@@ -0,0 +1,33 @@
# $NetBSD: Makefile,v 1.23 2012/12/20 21:46:16 joerg Exp $
DISTNAME= fep
PKGNAME= fep-1.0
PKGREVISION= 3
CATEGORIES= misc
MASTER_SITES= ftp://ftp.sra.co.jp/pub/cmd/fep/
MAINTAINER= nobu@psrc.isac.co.jp
COMMENT= General purpose front end for command line editing
LICENSE= fep-license
RESTRICTED= Do not redistribute for a fee.
NO_SRC_ON_CDROM=${RESTRICTED}
NO_BIN_ON_CDROM=${RESTRICTED}
WRKSRC= ${WRKDIR}
MANCOMPRESSED= yes
INSTALLATION_DIRS+= bin man/man1
.include "../../mk/compiler.mk"
.if !empty(PKGSRC_COMPILER:Mclang)
CFLAGS+= -Wno-error=return-type
.endif
pre-build:
cd ${WRKSRC} && \
for i in *.[ch]; do ${SED} "s,#endif lint,#endif /* lint */,g" $${i} > $${i}.new && \
${MV} -f $${i}.new $${i}; \
done
.include "../../mk/bsd.pkg.mk"