forked from Lainports/freebsd-ports
1. Add myself as a backup master site (Sourceforge and CPAN ports already have good enough coverage, so skip them). 2. For all ports that have them, download the PGP signature files. 3. For ports in 2, add a verify target to the Makefile 4. For ports where I was already providing a master site, update the URL. 5. Pet portlint in a couple of places.
37 lines
829 B
Makefile
37 lines
829 B
Makefile
# New ports collection makefile for: shlock
|
|
# Date created: 8 July 2002
|
|
# Whom: dougb
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= shlock
|
|
PORTVERSION= 2.3.5
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_ISC} \
|
|
http://dougbarton.us/Downloads/%SUBDIR%/
|
|
MASTER_SITE_SUBDIR=inn
|
|
DISTFILES= inn-${PORTVERSION}${EXTRACT_SUFX} \
|
|
inn-${PORTVERSION}${EXTRACT_SUFX}.asc
|
|
|
|
MAINTAINER= DougB@FreeBSD.org
|
|
COMMENT= Create lock files for use in shell scripts
|
|
|
|
HAS_CONFIGURE= yes
|
|
|
|
MAN1= shlock.1
|
|
PLIST_FILES= bin/shlock
|
|
|
|
WRKSRC= ${WRKDIR}/inn-${PORTVERSION}
|
|
|
|
verify: checksum
|
|
gpg --verify ${DISTDIR}/inn-${PORTVERSION}${EXTRACT_SUFX}.asc
|
|
|
|
do-build:
|
|
cd ${WRKSRC}/backends && ${MAKE} shlock
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/backends/shlock ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/doc/man/shlock.1 ${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|