mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-08 12:01:56 +00:00
![Jimmy Olgeni](/assets/img/avatar_default.png)
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Categories P-S. CR: D422 Approved by: portmgr (bapt)
29 lines
650 B
Makefile
29 lines
650 B
Makefile
# Created by: Yin-Jieh Chen <yinjieh@csie.nctu.edu.tw>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pdq
|
|
PORTVERSION= 2.2.1
|
|
PORTREVISION= 4
|
|
CATEGORIES= print
|
|
MASTER_SITES= http://pdq.sourceforge.net/ftp/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Straightforward, flexible print subsystem
|
|
|
|
USE_GNOME= gtk12
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-pdqlibdir=${PREFIX}/etc/pdq
|
|
|
|
MAN1= lpd_cancel.1 lpd_print.1 lpd_status.1 pdq.1 xpdq.1
|
|
MAN5= printrc.5
|
|
|
|
NO_STAGE= yes
|
|
post-install:
|
|
.for file in lpd_cancel lpd_print lpd_status pdq xpdq
|
|
@${STRIP_CMD} ${PREFIX}/bin/${file}
|
|
.endfor
|
|
@${SED} 's|%%PREFIX%%|${PREFIX}|g' ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|