While there, cleanup, and sort depends.
When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are:
1) use RUN_DEPENDS to set BUILD_DEPENDS:
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= foo:bar/baz
2) create another variable and use it:
MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS= ${MY_DEPENDS}
RUN_DEPENDS= ${MY_DEPENDS}
3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:
BUILD_DEPENDS= foo:bar/baz
RUN_DEPENDS:= ${BUILD_DEPENDS}
Sponsored by: Absolight
25 lines
503 B
Makefile
25 lines
503 B
Makefile
# Created by: ccowart@timesinks.net
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= confman
|
|
PORTVERSION= 1.9.4b
|
|
PORTREVISION= 2
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.timesinks.net/distfiles/
|
|
|
|
MAINTAINER= ccowart@timesinks.net
|
|
COMMENT= Revision controlled configuration manager
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= bash:shells/bash \
|
|
svn:devel/subversion \
|
|
sudo:security/sudo \
|
|
greadlink:sysutils/coreutils \
|
|
wget:ftp/wget
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS+= --localstatedir=/var
|
|
|
|
.include <bsd.port.mk>
|