mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
28 lines
615 B
Makefile
28 lines
615 B
Makefile
# Created by: vsevolod
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libev
|
|
PORTVERSION= 4.15
|
|
PORTEPOCH= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://dist.schmorp.de/libev/ \
|
|
http://dist.schmorp.de/libev/Attic/
|
|
|
|
MAINTAINER= vsevolod@FreeBSD.org
|
|
COMMENT= Full-featured and high-performance event loop library
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USES= pkgconfig
|
|
|
|
PKGCONFIGDIR?= ${PREFIX}/libdata/pkgconfig
|
|
|
|
post-patch:
|
|
@${SED} -e 's|%PREFIX%|${PREFIX}|g ; s|%VERSION%|${PORTVERSION}|g' \
|
|
${FILESDIR}/libev.pc.in > ${WRKDIR}/libev.pc
|
|
|
|
post-install:
|
|
@${INSTALL_DATA} ${WRKDIR}/libev.pc ${STAGEDIR}${PKGCONFIGDIR}/
|
|
|
|
.include <bsd.port.mk>
|