mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
580eeb805a
PR: 214332
35 lines
848 B
Makefile
35 lines
848 B
Makefile
# Created by: Nate Lawson <njl@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xpp
|
|
PORTVERSION= 1.5
|
|
PORTREVISION= 12
|
|
CATEGORIES= print
|
|
MASTER_SITES= SF/cups/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= cy@FreeBSD.org
|
|
COMMENT= X11-based printer manager for CUPS
|
|
|
|
LIB_DEPENDS= libcups.so:print/cups \
|
|
libfltk.so.1:x11-toolkits/fltk
|
|
|
|
USES= gmake tar:bzip2
|
|
GNU_CONFIGURE= yes
|
|
CFLAGS+= -D_IPP_PRIVATE_STRUCTURES
|
|
|
|
PLIST_FILES= bin/xpp share/doc/xpp/README
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
post-configure:
|
|
@${REINPLACE_CMD} -e 's|$$(all_includes)|-I ${PREFIX}/include|' \
|
|
${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e 's|CFLAGS =|CFLAGS +=|' ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e 's|printFiles::get|get|' ${WRKSRC}/xpp.h
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/xpp
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${PREFIX}/share/doc/xpp
|
|
|
|
.include <bsd.port.mk>
|