mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
37 lines
840 B
Makefile
37 lines
840 B
Makefile
# ports collection makefile for: lfview
|
|
# Date created: 24 February 1999
|
|
# Whom: Yuu Yashiki
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= lfview
|
|
PORTVERSION= 1.1a
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://hoshina.denpa.org/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Graphic viewer for Leaf products
|
|
|
|
USE_IMAKE= yes
|
|
INSTALLS_SHLIB= yes
|
|
NO_INSTALL_MANPAGES= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64"
|
|
BROKEN= "Does not compile on amd64 (-fPIC missing)"
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/lfview ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/plugins/liblfv_leaf.so.1 ${PREFIX}/lib
|
|
${LN} -s ${PREFIX}/lib/liblfv_leaf.so.1 ${PREFIX}/lib/liblfv_leaf.so
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/ja/lfview
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/ja/lfview
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|