diff options
author | Foxfair Hu <foxfair@FreeBSD.org> | 2003-08-04 07:48:53 +0000 |
---|---|---|
committer | Foxfair Hu <foxfair@FreeBSD.org> | 2003-08-04 07:48:53 +0000 |
commit | 8eb6a2ba7cba334daee8d97630ea821095884085 (patch) | |
tree | 16cd7dec9568f0bf36c39dd2fd985dc96f26c3d3 | |
parent | - Fix support for python2.3 (diff) |
PR: 54872
Submitted by: klm@uidzero.org <mavrik@ruby.ir.exodus.net>
Update to 1.3.0, also change maintainer's email address.
Notes
Notes:
svn path=/head/; revision=86261
-rw-r--r-- | sysutils/webjob/Makefile | 40 | ||||
-rw-r--r-- | sysutils/webjob/distinfo | 2 | ||||
-rw-r--r-- | sysutils/webjob/pkg-message | 12 | ||||
-rw-r--r-- | sysutils/webjob/pkg-plist | 7 |
4 files changed, 23 insertions, 38 deletions
diff --git a/sysutils/webjob/Makefile b/sysutils/webjob/Makefile index d756d6230265..ef90d6ae57ac 100644 --- a/sysutils/webjob/Makefile +++ b/sysutils/webjob/Makefile @@ -1,34 +1,38 @@ # New ports collection makefile for: webjob # Date created: 20 August 2002 -# Whom: Klayton Monroe <klm@ir.exodus.net> +# Whom: Klayton Monroe <klm@uidzero.org> # # $FreeBSD$ # -PORTNAME= webjob -PORTVERSION= 1.2.3 -CATEGORIES= sysutils security -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +PORTNAME= webjob +PORTVERSION= 1.3.0 +CATEGORIES= security sysutils +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= webjob -EXTRACT_SUFX= .tgz +EXTRACT_SUFX= .tgz -MAINTAINER= klm@ir.exodus.net -COMMENT= Download and execute a program over HTTP/HTTPS +MAINTAINER= klm@uidzero.org +COMMENT= Download and execute a program over HTTP/HTTPS -MAN1= webjob.1 - -GNU_CONFIGURE= YES +GNU_CONFIGURE= YES .if defined(WITHOUT_SSL) -CONFIGURE_ARGS= --without-ssl +CONFIGURE_ARGS+= --without-ssl .else -USE_OPENSSL= YES -CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} +USE_OPENSSL= YES +CONFIGURE_ARGS+= --with-ssl=${OPENSSLBASE} .endif -pre-build: - @${MV} ${WRKSRC}/etc/webjob.cfg ${WRKSRC}/etc/webjob.cfg.sample - @${MV} ${WRKSRC}/etc/Makefile ${WRKSRC}/etc/Makefile.orig - @${SED} 's/webjob.cfg/webjob.cfg.sample/g' ${WRKSRC}/etc/Makefile.orig > ${WRKSRC}/etc/Makefile +.if defined(NO_STATIC) +CFLAGS+= +.else +CFLAGS+= -static +.endif + +MAN1= webjob.1 + +post-install: + @${STRIP_CMD} ${PREFIX}/bin/webjob .include <bsd.port.mk> diff --git a/sysutils/webjob/distinfo b/sysutils/webjob/distinfo index 6a7898420089..b3ee3a5d126b 100644 --- a/sysutils/webjob/distinfo +++ b/sysutils/webjob/distinfo @@ -1 +1 @@ -MD5 (webjob-1.2.3.tgz) = a9cbbd931d8280b08698e99c40aa1a5a +MD5 (webjob-1.3.0.tgz) = 60225d5e50319c016005e2255a5d4564 diff --git a/sysutils/webjob/pkg-message b/sysutils/webjob/pkg-message deleted file mode 100644 index a59f3a71ae04..000000000000 --- a/sysutils/webjob/pkg-message +++ /dev/null @@ -1,12 +0,0 @@ - ----------------------------------------------------------------------- - If necessary, check the value of ${PREFIX} and update your PATH - and MANPATH environment variables accordingly. By default, WebJob - is rooted in the following location: /usr/local/integrity. - - For information on how to configure an Apache Web server to handle - WebJob requests and verify client-server connectivity, refer to - the INSTALL document located in the project's source tree. - - A sample configuration file can be found in ${PREFIX}/etc. ----------------------------------------------------------------------- diff --git a/sysutils/webjob/pkg-plist b/sysutils/webjob/pkg-plist index 967b9f851aed..b9d9e50cac3d 100644 --- a/sysutils/webjob/pkg-plist +++ b/sysutils/webjob/pkg-plist @@ -1,9 +1,2 @@ -bin/pad-join -bin/pad-make-binary -bin/pad-make-script bin/webjob -cgi/cgi-client/nph-webjob.cgi -doc/webjob.html etc/webjob.cfg.sample -@unexec rmdir %D/cgi/cgi-client 2> /dev/null || true -@unexec rmdir %D/cgi 2> /dev/null || true |