mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
242481663d
- While here, add some NO_ARCHes Approved by: portmgr blanket
37 lines
807 B
Makefile
37 lines
807 B
Makefile
# Created by: Yuu Yashiki
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lfview
|
|
PORTVERSION= 1.1a
|
|
PORTREVISION= 2
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://hoshina.denpa.org/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Graphic viewer for Leaf products
|
|
|
|
USES= imake tar:tgz
|
|
USE_XORG= x11 xext
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
DOCSDIR= ${PREFIX}/share/doc/ja/lfview
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${ARCH} != i386
|
|
CFLAGS+= -fPIC
|
|
MAKE_ENV+= SHLIBGLOBALSFLAGS=-fPIC
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/lfview ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_LIB} ${WRKSRC}/plugins/liblfv_leaf.so.1 ${STAGEDIR}${PREFIX}/lib
|
|
${LN} -sf liblfv_leaf.so.1 ${STAGEDIR}${PREFIX}/lib/liblfv_leaf.so
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|