mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
c1da7c8cad
Submitted by: olivierd@ With hat: portmgr-secretary
32 lines
675 B
Makefile
32 lines
675 B
Makefile
# Created by: Olivier Duchateau
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libwapcaplet
|
|
PORTVERSION= 0.4.0
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://download.netsurf-browser.org/libs/releases/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= String internment library
|
|
|
|
LICENSE= MIT
|
|
|
|
BUILD_DEPENDS= netsurf-buildsystem>=1.5:devel/netsurf-buildsystem \
|
|
${LOCALBASE}/bin/flex:textproc/flex
|
|
|
|
USES= gmake
|
|
USE_LDCONFIG= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//}
|
|
|
|
MAKE_ENV+= COMPONENT_TYPE="lib-shared" \
|
|
FLEX="${LOCALBASE}/bin/flex"
|
|
|
|
PLIST_SUB+= VERSION=${PORTVERSION}
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libwapcaplet.so*
|
|
|
|
.include <bsd.port.mk>
|