mirror of
https://git.freebsd.org/ports.git
synced 2025-06-05 04:46:28 -04:00
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
28 lines
683 B
Makefile
28 lines
683 B
Makefile
# Created by: Aaron Dalton <aaron@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Google-Checkout
|
|
PORTVERSION= 1.1.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel www perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Perl implementation of Google Checkout (GCO)
|
|
|
|
LICENSE= ART10 GPLv1+
|
|
LICENSE_COMB= dual
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= p5-Crypt-SSLeay>=0.45:security/p5-Crypt-SSLeay \
|
|
p5-Date-Manip>=5.40:devel/p5-Date-Manip \
|
|
p5-Digest-HMAC>=1.01:security/p5-Digest-HMAC \
|
|
p5-XML-Simple>=2.09:textproc/p5-XML-Simple \
|
|
p5-XML-Writer>=0.6:textproc/p5-XML-Writer \
|
|
p5-libwww>=5.65:www/p5-libwww
|
|
|
|
USES= perl5
|
|
USE_PERL5= configure
|
|
|
|
.include <bsd.port.mk>
|