update to 0.9.0

This commit is contained in:
couderc 2005-01-02 18:48:43 +00:00
parent 200b1ea2ea
commit b5aa8e9064
5 changed files with 21 additions and 21 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.2 2004/12/24 14:27:19 alek Exp $
# $OpenBSD: Makefile,v 1.3 2005/01/02 18:48:43 couderc Exp $
COMMENT= "dependency configuration tool"
VERSION= 0.8.2
VERSION= 0.9.0
DISTNAME= pmk-${VERSION}
CATEGORIES= devel
@ -25,5 +25,4 @@ CONFIGURE_SCRIPT= /bin/sh pmkcfg.sh -p ${PREFIX}
NO_REGRESS= Yes
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
MD5 (pmk-0.8.2.tar.gz) = f2cc4a9987b5d97bf4f8d0be925a79fb
RMD160 (pmk-0.8.2.tar.gz) = b096c768e95eda35f6b6e73b860f928aa5173787
SHA1 (pmk-0.8.2.tar.gz) = 6f104980962424f0f1d1e61d6dba0a011bf8d269
MD5 (pmk-0.9.0.tar.gz) = cd3d98810ec662ac41789e234bb8374d
RMD160 (pmk-0.9.0.tar.gz) = afeaa1e6de289562c2dba2eab22530a72826f279
SHA1 (pmk-0.9.0.tar.gz) = 70406fe46dc681f8a79e7c5cbc98c842b03df5d3

View File

@ -1,14 +0,0 @@
$OpenBSD: patch-pmkcfg_sh,v 1.1.1.1 2004/12/23 21:42:16 couderc Exp $
--- pmkcfg.sh.orig Thu Dec 23 22:14:37 2004
+++ pmkcfg.sh Thu Dec 23 22:16:21 2004
@@ -47,8 +47,8 @@ if test "$1" != "autodetected"; then
posix_sh="/bin/sh"
fi
fi
- printf "Using $posix_sh $0 $@\n\n"
- $posix_sh $0 "autodetected" "$@"
+ printf "Using %s %s %s\n\n" "$posix_sh" "$0" "$*"
+ $posix_sh $0 "autodetected" "$*"
exit $?
else
# skip "autodetected"

View File

@ -1,10 +1,11 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2004/12/23 21:42:16 couderc Exp $
@comment $OpenBSD: PLIST,v 1.2 2005/01/02 18:48:43 couderc Exp $
bin/pmk
bin/pmkinstall
bin/pmkpc
bin/pmkscan
@man man/man1/pmk.1
@man man/man1/pmkinstall.1
@man man/man1/pmkpc.1
@man man/man1/pmkscan.1
@man man/man5/pmk.conf.5
@man man/man5/pmkfile.5
@ -15,5 +16,6 @@ share/pmk/
share/pmk/pmk.conf.sample
share/pmk/pmkcfgtool.dat
share/pmk/pmkcomp.dat
share/pmk/pmkcpu.dat
share/pmk/pmkfile.sample
share/pmk/pmkscan.dat

13
devel/pmk/pmk.port.mk Normal file
View File

@ -0,0 +1,13 @@
# $OpenBSD: pmk.port.mk,v 1.1 2005/01/02 18:48:43 couderc Exp $
# Pre Make Kit support
# public domain
.if ${CONFIGURE_STYLE:L:Mpmk}
BUILD_DEPENDS+= ::devel/pmk
CONFIGURE_SCRIPT= pmk
MODPMK_configure= cd ${WRKSRC} && \
${_SYSTRACE_CMD} ${SETENV} ${CONFIGURE_SCRIPT}
.endif