blob: 43298e30e72e3d6c2101ae012bb1cb7c640e894c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $NetBSD: Makefile,v 1.2 2002/08/25 18:39:55 jlam Exp $
DISTNAME= libmcrypt-2.2.7
PKGNAME= libmcrypt22-2.2.7
CATEGORIES= security devel
MASTER_SITES= ftp://mcrypt.hellug.gr/pub/mcrypt/libmcrypt/old/ \
http://mcrypt.hellug.gr/lib/
MAINTAINER= jlam@netbsd.org
HOMEPAGE= http://mcrypt.hellug.gr/
COMMENT= crypto algorithms library (version 2.2.x)
USE_BUILDLINK2= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --includedir=${PREFIX}/include/libmcrypt22
USE_LIBTOOL= yes
LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
pre-configure:
cd ${WRKSRC}; \
for file in lib/Makefile.in src/Makefile.in; do \
${SED} -e "s|libmcrypt\.la|libmcrypt22.la|g" \
-e "s|libmcrypt_la|libmcrypt22_la|g" \
$${file} > $${file}.fixed; \
${MV} -f $${file}.fixed $${file}; \
done
.include "../../mk/bsd.pkg.mk"
|