forked from Lainports/freebsd-ports
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.
While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.
Also, replace some EXTRACT_SUFX occurences with USES=tar:*.
Checked by: make fetch-urlall-list
With hat: portmgr
Sponsored by: Absolight
35 lines
881 B
Makefile
35 lines
881 B
Makefile
# Created by: Satoshi Asami <asami@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xli
|
|
PORTVERSION= 1.17.0
|
|
PORTREVISION= 16
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= DEBIAN
|
|
DISTNAME= xli_${PORTVERSION}+${XLI_SNAPVER:C/-//g}.orig
|
|
|
|
MAINTAINER= lichray@gmail.com
|
|
COMMENT= Utilities to display images in X11
|
|
|
|
LIB_DEPENDS= libpng.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>
|