xref: /minix3/crypto/external/bsd/openssl/mkpc (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1ebfedea0SLionel Sambuc#!/bin/sh
2*0a6a1f1dSLionel Sambuc#	$NetBSD: mkpc,v 1.4 2014/07/07 09:14:43 joerg Exp $
3ebfedea0SLionel Sambuc
4ebfedea0SLionel Sambucgetversion() {
5ebfedea0SLionel Sambuc	(echo '#include "opensslv.h"'; echo OPENSSL_VERSION_TEXT) |
6*0a6a1f1dSLionel Sambuc	    $CPP $CPPFLAGS -I$1 | grep OpenSSL | cut -d ' ' -f 2
7ebfedea0SLionel Sambuc}
8ebfedea0SLionel SambucVERSION="$(getversion $1)"
9ebfedea0SLionel Sambuc
10ebfedea0SLionel Sambucsed -e "s/@VERSION@/${VERSION}/g" < "$2"
11ebfedea0SLionel Sambuc
12ebfedea0SLionel Sambuccase "$2" in
13ebfedea0SLionel Sambuclibcrypto.pc)
14ebfedea0SLionel Sambuc	NAME="OpenSSL-libcrypto"
15ebfedea0SLionel Sambuc	LIBS="-lcrypto"
16ebfedea0SLionel Sambuc	DESCRIPTION="OpenSSL cryptography library"
17ebfedea0SLionel Sambuc	;;
18ebfedea0SLionel Sambuclibssl.pc)
19ebfedea0SLionel Sambuc	NAME="OpenSSL"
20ebfedea0SLionel Sambuc	LIBS="-lssl -lcrypto"
21ebfedea0SLionel Sambuc	DESCRIPTION="Secure Sockets Layer and cryptography libraries"
22ebfedea0SLionel Sambuc	;;
23ebfedea0SLionel Sambucopenssl.pc)
24ebfedea0SLionel Sambuc	NAME="OpenSSL"
25ebfedea0SLionel Sambuc	LIBS="-lssl -lcrypto"
26ebfedea0SLionel Sambuc	DESCRIPTION="Sockets Layer and cryptography libraries and tools"
27ebfedea0SLionel Sambuc	;;
28ebfedea0SLionel Sambuc*)
29ebfedea0SLionel Sambuc	echo "$0: I don't know about $2" 1>&2
30ebfedea0SLionel Sambuc	exit 1
31ebfedea0SLionel Sambuc	;;
32ebfedea0SLionel Sambucesac
33ebfedea0SLionel Sambuc
34ebfedea0SLionel Sambuccat << EOF > "$2"
35*0a6a1f1dSLionel Sambuc# \$NetBSD: mkpc,v 1.4 2014/07/07 09:14:43 joerg Exp $
36ebfedea0SLionel Sambucprefix=/usr
37ebfedea0SLionel Sambucexec_prefix=/usr
38ebfedea0SLionel Sambuclibdir=/usr/lib
39ebfedea0SLionel Sambucincludedir=/usr/include
40ebfedea0SLionel Sambuc
41ebfedea0SLionel SambucName: ${NAME}
42ebfedea0SLionel SambucDescription: ${DESCRIPTION}
43ebfedea0SLionel SambucVersion: ${VERSION}
44ebfedea0SLionel SambucRequires: 
45ebfedea0SLionel SambucLibs: ${LIBS}
46ebfedea0SLionel SambucLibs.private:
47ebfedea0SLionel SambucCflags:
48ebfedea0SLionel SambucEOF
49