Kill all instances of the dangerous RUN_DEPENDS=${BUILD_DEPENDS} idiom.

Bump pkgname where necessary.
This commit is contained in:
naddy 2010-07-03 02:44:13 +00:00
parent 4ebdd5a50c
commit e3ee31b058
19 changed files with 58 additions and 56 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.1.1.1 2008/06/09 18:31:25 okan Exp $
# $OpenBSD: Makefile,v 1.2 2010/07/03 02:44:13 naddy Exp $
COMMENT = DBI driver abstraction for rendering charts and graphs
@ -14,9 +14,9 @@ PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
BUILD_DEPENDS = ::graphics/p5-GD \
BUILD_DEPENDS = ${RUN_DEPENDS}
RUN_DEPENDS = ::graphics/p5-GD \
::graphics/p5-GD-TextUtil \
::databases/p5-DBI
RUN_DEPENDS = ${BUILD_DEPENDS}
.include <bsd.port.mk>

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.3 2008/10/10 13:16:02 sthen Exp $
# $OpenBSD: Makefile,v 1.4 2010/07/03 02:44:13 naddy Exp $
COMMENT= seamless DB up- and downgrades
@ -9,9 +9,9 @@ CATEGORIES= databases
CONFIGURE_STYLE=modbuild
BUILD_DEPENDS= ::devel/p5-Class-Accessor \
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= ::devel/p5-Class-Accessor \
::devel/p5-File-Slurp
RUN_DEPENDS= ${BUILD_DEPENDS}
REGRESS_DEPENDS=::databases/p5-DBD-SQLite
MAKE_ENV+= TEST_POD=1

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.6 2009/12/31 12:31:44 eric Exp $
# $OpenBSD: Makefile,v 1.7 2010/07/03 02:44:13 naddy Exp $
COMMENT= sqlite-based object persistence system for python
@ -21,13 +21,14 @@ MASTER_SITES= http://ekyo.nerim.net/distfiles/
MODULES= lang/python
BUILD_DEPENDS+= :py-epsilon-*:devel/py-epsilon \
COMMON_DEPENDS= :py-epsilon-*:devel/py-epsilon \
:py-sqlite2-*:databases/py-sqlite2
BUILD_DEPENDS= ${COMMON_DEPENDS}
RUN_DEPENDS= ${BUILD_DEPENDS} \
RUN_DEPENDS= ${COMMON_DEPENDS} \
:py-twisted-conch-*:devel/py-twisted/conch
REGRESS_DEPENDS=${BUILD_DEPENDS}
REGRESS_DEPENDS=${COMMON_DEPENDS}
MODPY_DISTUTILS_BUILD= build --build-base=${WRKSRC}/.build
MODPY_EGG_VERSION= ${VERSION}

View File

@ -1,12 +1,12 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/09/09 23:24:25 sthen Exp $
# $OpenBSD: Makefile,v 1.2 2010/07/03 02:44:13 naddy Exp $
COMMENT= base class for virtual base classes
MODULES= cpan
DISTNAME= Class-Virtual-0.06
CATEGORIES= devel
RUN_DEPENDS= ${BUILD_DEPENDS}
BUILD_DEPENDS= ::devel/p5-Class-Data-Inheritable \
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= ::devel/p5-Class-Data-Inheritable \
::devel/p5-Carp-Assert
# perl

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.1.1.1 2009/10/10 08:15:52 sthen Exp $
# $OpenBSD: Makefile,v 1.2 2010/07/03 02:44:14 naddy Exp $
SHARED_ONLY = Yes
@ -8,8 +8,8 @@ MODULES = cpan
DISTNAME = Class-XSAccessor-1.03
CATEGORIES = devel
BUILD_DEPENDS = ::devel/p5-AutoXS-Header
RUN_DEPENDS = ${BUILD_DEPENDS}
BUILD_DEPENDS = ${RUN_DEPENDS}
RUN_DEPENDS = ::devel/p5-AutoXS-Header
# Perl
PERMIT_PACKAGE_CDROM = Yes

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.1.1.1 2008/10/16 00:00:05 sthen Exp $
# $OpenBSD: Makefile,v 1.2 2010/07/03 02:44:14 naddy Exp $
COMMENT = Perl Archive Toolkit
@ -6,9 +6,9 @@ MODULES = cpan
DISTNAME = PAR-0.980
CATEGORIES = devel archivers
RUN_DEPENDS = ${BUILD_DEPENDS}
BUILD_DEPENDS = ${RUN_DEPENDS}
BUILD_DEPENDS = ::archivers/p5-Archive-Zip \
RUN_DEPENDS = ::archivers/p5-Archive-Zip \
::devel/p5-PAR-Dist
# Perl

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.3 2008/10/02 23:10:24 jasper Exp $
# $OpenBSD: Makefile,v 1.4 2010/07/03 02:44:13 naddy Exp $
COMMENT= C implementation of priority queues
@ -14,6 +14,4 @@ PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
RUN_DEPENDS= ${BUILD_DEPENDS}
.include <bsd.port.mk>

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.1.1.1 2008/04/10 17:43:42 okan Exp $
# $OpenBSD: Makefile,v 1.2 2010/07/03 02:44:13 naddy Exp $
COMMENT= text mode progress bar
@ -14,8 +14,8 @@ PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
BUILD_DEPENDS = ::devel/p5-Class-MethodMaker \
BUILD_DEPENDS = ${RUN_DEPENDS}
RUN_DEPENDS = ::devel/p5-Class-MethodMaker \
::devel/p5-Term-ReadKey
RUN_DEPENDS = ${BUILD_DEPENDS}
.include <bsd.port.mk>

View File

@ -1,15 +1,15 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/09/09 23:27:04 sthen Exp $
# $OpenBSD: Makefile,v 1.2 2010/07/03 02:44:13 naddy Exp $
COMMENT= LRU cache in memory with expiry
MODULES= cpan
DISTNAME= Tie-Cache-LRU-Expires-0.54
CATEGORIES= devel
BUILD_DEPENDS= ::devel/p5-Tie-Cache-LRU \
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= ::devel/p5-Tie-Cache-LRU \
::devel/p5-Carp-Assert \
::devel/p5-Class-Virtual \
::devel/p5-Class-Data-Inheritable
RUN_DEPENDS= ${BUILD_DEPENDS}
# perl
PERMIT_PACKAGE_CDROM= Yes

View File

@ -1,15 +1,15 @@
# $OpenBSD: Makefile,v 1.1.1.1 2007/09/09 23:26:17 sthen Exp $
# $OpenBSD: Makefile,v 1.2 2010/07/03 02:44:13 naddy Exp $
COMMENT= LRU cache in memory
MODULES= cpan
DISTNAME= Tie-Cache-LRU-0.21
CATEGORIES= devel
BUILD_DEPENDS= ::devel/p5-enum \
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= ::devel/p5-enum \
::devel/p5-Carp-Assert \
::devel/p5-Class-Data-Inheritable \
::devel/p5-Class-Virtual
RUN_DEPENDS= ${BUILD_DEPENDS}
# perl
PERMIT_PACKAGE_CDROM= Yes

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.6 2009/12/28 09:30:09 eric Exp $
# $OpenBSD: Makefile,v 1.7 2010/07/03 02:44:14 naddy Exp $
COMMENT= small utility package for Divmod projects
@ -21,8 +21,8 @@ MASTER_SITES= http://ekyo.nerim.net/distfiles/
MODULES= lang/python
BUILD_DEPENDS= :py-twisted-core-*:devel/py-twisted/core
RUN_DEPENDS= ${BUILD_DEPENDS}
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= :py-twisted-core-*:devel/py-twisted/core
REGRESS_DEPENDS=${RUN_DEPENDS} \
:py-tz-*:devel/py-tz

View File

@ -1,9 +1,10 @@
# $OpenBSD: Makefile,v 1.1.1.1 2010/06/28 18:42:21 robert Exp $
# $OpenBSD: Makefile,v 1.2 2010/07/03 02:44:14 naddy Exp $
COMMENT= Zero Configuration Networking library for Mono
V= 0.9.0
DISTNAME= mono-zeroconf-${V}
PKGNAME= ${DISTNAME}p0
CATEGORIES= net
@ -20,8 +21,8 @@ MODULES= lang/mono
USE_GMAKE= Yes
RUN_DEPENDS= ${BUILD_DEPENDS}
BUILD_DEPENDS= :mono-avahi-*:net/avahi,-mono,no_gtk,no_qt3,no_qt4
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= :mono-avahi-*:net/avahi,-mono,no_gtk,no_qt3,no_qt4
CONFIGURE_STYLE=gnu
CONFIGURE_ARGS= --disable-mdnsresponder

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.2 2010/05/03 09:49:17 sthen Exp $
# $OpenBSD: Makefile,v 1.3 2010/07/03 02:44:14 naddy Exp $
MULTI_PACKAGES= -main -web
COMMENT-main= web-based front end for the nfdump netflow tools
@ -22,11 +22,12 @@ PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nfsen/}
MODULES= perl
BUILD_DEPENDS= :p5-RRD-*:net/rrdtool,-perl \
COMMON_DEPENDS= :p5-RRD-*:net/rrdtool,-perl \
::mail/p5-Mail-Tools \
:nfprofile-*:net/nfdump,-nfprofile \
:nfdump->=1.5.8p0:net/nfdump
RUN_DEPENDS-main= ${BUILD_DEPENDS} \
BUILD_DEPENDS= ${COMMON_DEPENDS}
RUN_DEPENDS-main= ${COMMON_DEPENDS} \
:nfsen-web-$V:net/nfsen,-web
RUN_DEPENDS-web= ::www/php5/core

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.4 2010/04/03 21:13:05 schwarze Exp $
# $OpenBSD: Makefile,v 1.5 2010/07/03 02:44:14 naddy Exp $
COMMENT = BSD Auth helper program for OpenVPN
@ -19,8 +19,8 @@ WANTLIB = c
MASTER_SITES = ${HOMEPAGE}
BUILD_DEPENDS = ::net/openvpn
RUN_DEPENDS = ${BUILD_DEPENDS}
BUILD_DEPENDS = ${RUN_DEPENDS}
RUN_DEPENDS = ::net/openvpn
FAKE_FLAGS = PREFIX=${TRUEPREFIX}

View File

@ -1,10 +1,11 @@
# $OpenBSD: Makefile,v 1.2 2009/12/13 12:52:32 sthen Exp $
# $OpenBSD: Makefile,v 1.3 2010/07/03 02:44:14 naddy Exp $
SHARED_ONLY= Yes
COMMENT= conferencing application for asterisk
V= 1.2
DISTNAME= appkonference-$V
PKGNAME= ${DISTNAME}p0
CATEGORIES= telephony
@ -21,8 +22,8 @@ PERMIT_PACKAGE_FTP= Yes
NO_REGRESS= Yes
USE_GMAKE= Yes
BUILD_DEPENDS= :asterisk->=1.6:telephony/asterisk
RUN_DEPENDS= ${BUILD_DEPENDS}
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= :asterisk->=1.6:telephony/asterisk
MAKE_ENV+= LOCALBASE=${LOCALBASE} \
ASTERISK_INCLUDE_DIR=${LOCALBASE}/include

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.4 2009/09/08 11:51:13 landry Exp $
# $OpenBSD: Makefile,v 1.5 2010/07/03 02:44:14 naddy Exp $
COMMENT= grep like tool, aimed at programmers
@ -15,8 +15,8 @@ PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
BUILD_DEPENDS= ::devel/p5-File-Next
RUN_DEPENDS= ${BUILD_DEPENDS}
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= ::devel/p5-File-Next
REGRESS_DEPENDS= :${PKGNAME}:${BUILD_PKGPATH}
post-build:

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.1.1.1 2008/07/23 18:39:19 sthen Exp $
# $OpenBSD: Makefile,v 1.2 2010/07/03 02:44:14 naddy Exp $
COMMENT = Reload changed modules for mod_perl
@ -7,8 +7,8 @@ CATEGORIES = www perl5
MODULES = cpan
BUILD_DEPENDS = ::www/mod_perl
RUN_DEPENDS = ${BUILD_DEPENDS}
BUILD_DEPENDS = ${RUN_DEPENDS}
RUN_DEPENDS = ::www/mod_perl
# Apache License 2.0
PERMIT_PACKAGE_CDROM = Yes

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.1.1.1 2008/06/08 17:10:04 landry Exp $
# $OpenBSD: Makefile,v 1.2 2010/07/03 02:44:14 naddy Exp $
COMMENT= console RSS aggregator
@ -18,7 +18,7 @@ PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${HOMEPAGE}/files/
BUILD_DEPENDS= ::lang/ruby
RUN_DEPENDS= ${BUILD_DEPENDS} \
RUN_DEPENDS= ::lang/ruby \
::devel/ruby-ncurses
NO_REGRESS= Yes

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.20 2009/09/06 10:46:26 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.21 2010/07/03 02:44:14 naddy Exp $
COMMENT = table/matrix widget extension to Tcl/Tk
@ -23,7 +23,7 @@ WANTLIB += X11
MASTER_SITES = ${MASTER_SITE_SOURCEFORGE:=tktable/}
MODULES = x11/tk
BUILD_DEPENDS = ${MODTK_BUILD_DEPENDS}
RUN_DEPENDS = ${BUILD_DEPENDS}
RUN_DEPENDS = ${MODTK_BUILD_DEPENDS}
FAKE_FLAGS = INSTALL_PROGRAM="${INSTALL_DATA}"
SEPARATE_BUILD = concurrent
CONFIGURE_STYLE = gnu