blob: 9375e013816f8b8202a52fa4dd893dbd1e189147 (
plain) (
blame)
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
30
31
|
# Created by: ijliao
# $FreeBSD$
PORTNAME= fribidi
PORTVERSION= 0.19.2
PORTREVISION= 1
CATEGORIES= converters
MASTER_SITES= http://fribidi.org/download/
MAINTAINER= gnome@FreeBSD.org
COMMENT= Free Implementation of the Unicode Bidirectional Algorithm
USES= pathfix gmake
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --without-glib
.include <bsd.port.pre.mk>
.if !defined(WITH_DEBUG)
CONFIGURE_ARGS+=--disable-debug
.endif
post-patch:
@${SED} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' < \
${FILESDIR}/fribidi-config > ${WRKDIR}/fribidi-config
post-install:
${INSTALL_SCRIPT} ${WRKDIR}/fribidi-config ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.post.mk>
|