mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
43 lines
831 B
Makefile
43 lines
831 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= ebview
|
|
PORTVERSION= 0.2.1
|
|
PORTREVISION= 15
|
|
CATEGORIES= japanese
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Electronic Book Viewer
|
|
|
|
LIB_DEPENDS= eb:${PORTSDIR}/japanese/eb
|
|
|
|
CONFLICTS= ja-ebview-gtk2-*
|
|
|
|
USE_GNOME= imlib
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS= autoconf
|
|
MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
|
|
AUTOHEADER="${TRUE}"
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.pre.mk>
|
|
|
|
pre-build:
|
|
.for file in src/dictheading.c
|
|
cd ${WRKSRC} && ${MV} ${file} ${file}.pre_iconv \
|
|
&& iconv -c -t ascii ${file}.pre_iconv > ${file} || ${TRUE}
|
|
.endfor
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for i in ChangeLog README
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|