- zap a bunch of '@rm -fr' cases that were masking files that have long since been removed
- pre-emptively fix a few other cases while here
This commit is contained in:
parent
be8e4a8dfa
commit
1f5850fd2f
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.18 2015/05/05 17:00:16 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.19 2015/05/18 06:56:04 jasper Exp $
|
||||
|
||||
COMMENT = suite of tools for electronic design automation
|
||||
DISTNAME = geda-gaf-1.6.0
|
||||
@ -46,7 +46,7 @@ MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}/build-tools
|
||||
|
||||
# This confuses update-patches.
|
||||
post-extract:
|
||||
@rm -f ${WRKSRC}/gnetlist/examples/vams/gschemrc.orig
|
||||
rm ${WRKSRC}/gnetlist/examples/vams/gschemrc.orig
|
||||
|
||||
# MAKE_ENV hoses the regression test, so we do this manually
|
||||
do-test:
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.16 2013/03/11 02:52:05 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.17 2015/05/18 06:56:04 jasper Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
@ -28,7 +28,7 @@ TEST_DEPENDS=${BASE_PKGPATH}
|
||||
TEST_TARGET= check
|
||||
|
||||
pre-install:
|
||||
@rm -f ${WRKSRC}/examples/path.lua
|
||||
rm ${WRKSRC}/examples/path.lua
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA_DIR} ${MODLUA_DATADIR} ${MODLUA_LIBDIR}/sqlite3
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.17 2015/02/03 15:50:07 abieber Exp $
|
||||
# $OpenBSD: Makefile,v 1.18 2015/05/18 06:56:04 jasper Exp $
|
||||
|
||||
# Currently node itself is only for amd64 and i386, but
|
||||
# the coroutine library this uses only works on amd64
|
||||
@ -30,7 +30,7 @@ TEST_DEPENDS = ${BUILD_PKGPATH}
|
||||
|
||||
pre-configure:
|
||||
${SUBST_CMD} ${WRKDIST}/binding.gyp
|
||||
@rm -rf ${WRKSRC}/bin/{darwin-*,linux-*,win32-*}
|
||||
rm -r ${WRKSRC}/bin/{darwin-*,linux-*,win32-*}
|
||||
|
||||
# Failing tests/stack-overflow2.js is known issue, see
|
||||
# https://github.com/laverdet/node-fibers/issues/108
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.6 2015/01/21 14:27:56 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.7 2015/05/18 06:56:04 jasper Exp $
|
||||
|
||||
COMMENT = timezones module for Data::ICal
|
||||
|
||||
@ -20,7 +20,7 @@ RUN_DEPENDS = devel/p5-Data-ICal \
|
||||
devel/p5-Universal-require
|
||||
|
||||
post-extract:
|
||||
@rm -f ${WRKDIST}/lib/Data/ICal/._* \
|
||||
rm ${WRKDIST}/lib/Data/ICal/._* \
|
||||
${WRKDIST}/lib/Data/ICal/TimeZone/._*
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.11 2014/06/14 23:24:55 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.12 2015/05/18 06:56:04 jasper Exp $
|
||||
|
||||
COMMENT = meatier versions of caller
|
||||
|
||||
@ -16,7 +16,4 @@ WANTLIB += c
|
||||
|
||||
RUN_DEPENDS = devel/p5-PadWalker
|
||||
|
||||
pre-configure:
|
||||
@rm -f ${WRKSRC}/lib/Devel/Caller.pm.orig
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.6 2015/04/02 14:21:15 jasper Exp $
|
||||
# $OpenBSD: Makefile,v 1.7 2015/05/18 06:56:04 jasper Exp $
|
||||
|
||||
COMMENT = symbol type for python
|
||||
|
||||
@ -28,7 +28,7 @@ post-extract:
|
||||
@find ${WRKSRC} -type f -exec chmod 644 {} \;
|
||||
|
||||
post-install:
|
||||
@rm -f ${WRKSRC}/SymbolType.egg-info/dependency_links.txt
|
||||
rm ${WRKSRC}/SymbolType.egg-info/dependency_links.txt
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/py-symboltype
|
||||
${INSTALL_DATA} ${WRKSRC}/README.txt ${PREFIX}/share/doc/py-symboltype/
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.5 2013/03/11 11:07:41 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.6 2015/05/18 06:56:04 jasper Exp $
|
||||
|
||||
COMMENT= tetrinet server
|
||||
|
||||
@ -32,7 +32,7 @@ CFLAGS+= -DUSE_IPV6
|
||||
CFLAGS+= -fno-strength-reduce -DCONFDIR="\"${SYSCONFDIR}/tetrinetx\""
|
||||
|
||||
post-patch:
|
||||
@rm -f ${WRKDIST}/bin/game.*.orig
|
||||
rm ${WRKDIST}/bin/game.*.orig
|
||||
|
||||
do-build:
|
||||
cd ${WRKSRC} && ${CC} ${CFLAGS} -I${LOCALBASE}/include \
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.42 2015/04/28 06:35:06 ajacoutot Exp $
|
||||
# $OpenBSD: Makefile,v 1.43 2015/05/18 06:56:04 jasper Exp $
|
||||
|
||||
COMMENT = Amide a Medical Imaging Data Examiner
|
||||
|
||||
@ -54,6 +54,6 @@ CONFIGURE_ARGS += --disable-xmedcontest \
|
||||
NO_TEST = Yes
|
||||
|
||||
post-extract:
|
||||
@rm -f ${WRKSRC}/src/ui_common.c.orig
|
||||
rm ${WRKSRC}/src/ui_common.c.orig
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.27 2015/03/16 18:07:47 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.28 2015/05/18 06:56:04 jasper Exp $
|
||||
|
||||
COMMENT = color management library
|
||||
|
||||
@ -26,7 +26,7 @@ WRKDIST = ${WRKDIR}/lcms-1.18
|
||||
|
||||
# Unconfuse update-patches
|
||||
post-extract:
|
||||
rm -f ${WRKSRC}/src/cmsxform.c.orig
|
||||
rm ${WRKSRC}/src/cmsxform.c.orig
|
||||
|
||||
post-install:
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/lcms
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.15 2015/04/21 10:51:26 benoit Exp $
|
||||
# $OpenBSD: Makefile,v 1.16 2015/05/18 06:56:04 jasper Exp $
|
||||
|
||||
COMMENT = module to obtain historical financial quotes from exchanges
|
||||
|
||||
@ -17,7 +17,4 @@ RUN_DEPENDS = converters/p5-DateManip \
|
||||
www/p5-HTML-TableExtract \
|
||||
www/p5-libwww
|
||||
|
||||
pre-configure:
|
||||
@rm -f ${WRKSRC}/lib/Finance/QuoteHist/*.orig
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
Loading…
x
Reference in New Issue
Block a user