mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
a6ce6282de
- actually fix staging/packaging issue by removing desthack (it doesn't work for imake) and utilize DESTDIR in Imakefile instead - add some more missing entries into PLIST_FILES - bump PORTREVISION once again since I still there: - use DEBIAN shortcut in MASTER_SITES - rename files/patch-aa to files/patch-Imakefile to conform PH Reported by: QAT (but not my poudriere) Submitted by: Zhihao Yuan <lichray@gmail.com> (maintainer, by email)
37 lines
927 B
Makefile
37 lines
927 B
Makefile
# Created by: Satoshi Asami <asami@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xli
|
|
PORTVERSION= 1.17.0
|
|
PORTREVISION= 15
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= DEBIAN
|
|
MASTER_SITE_SUBDIR= pool/main/x/${PORTNAME}
|
|
DISTNAME= xli_${PORTVERSION}+${XLI_SNAPVER:C/-//g}.orig
|
|
|
|
MAINTAINER= lichray@gmail.com
|
|
COMMENT= Utilities to display images in X11
|
|
|
|
LIB_DEPENDS= libpng15.so:${PORTSDIR}/graphics/png \
|
|
libjpeg.so:${PORTSDIR}/graphics/jpeg
|
|
|
|
CONFLICTS_INSTALL= xloadimage-*
|
|
|
|
USES= imake
|
|
USE_XORG= xi
|
|
WRKSRC= ${WRKDIR}/xli-${XLI_SNAPVER}
|
|
|
|
PLIST_FILES= bin/xli bin/xlito bin/xview bin/xsetbg \
|
|
lib/X11/app-defaults/Xli man/man1/xli.1.gz \
|
|
man/man1/xlito.1.gz man/man1/xview.1.gz man/man1/xsetbg.1.gz
|
|
|
|
XLI_SNAPVER= 2006-11-10
|
|
|
|
post-install:
|
|
${LN} -s ${MANPREFIX}/man/man1/xli.1.gz \
|
|
${STAGEDIR}${MANPREFIX}/man/man1/xview.1.gz
|
|
${LN} -s ${MANPREFIX}/man/man1/xli.1.gz \
|
|
${STAGEDIR}${MANPREFIX}/man/man1/xsetbg.1.gz
|
|
|
|
.include <bsd.port.mk>
|