mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
67948817be
- Support CC/CFLAGS properly - Add LICENSE - Add MAKE_JOBS_SAFE PR: ports/169004 Submitted by: KATO Tsuguru <tkato432@yahoo.com>
36 lines
837 B
Makefile
36 lines
837 B
Makefile
# New ports collection makefile for: pspresent
|
|
# Date created: 25 Jul 2007
|
|
# Whom: Timothy Bourke <timbob@bigpond.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pspresent
|
|
PORTVERSION= 1.3
|
|
PORTREVISION= 4
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://www.zmatt.net/pspresent/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Full-screen slide shows of postscript files
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_XORG= x11 xext xinerama
|
|
USE_GHOSTSCRIPT_RUN= yes
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}" LDLIBS="${LDFLAGS}"
|
|
ALL_TARGET= pspresent
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
MAN1= pspresent.1
|
|
PLIST_FILES= bin/pspresent
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include -DHAVE_LIBXINERAMA
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lX11 -lXext -lXinerama
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pspresent ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/pspresent.1 ${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|