mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
6860cf8f46
Changes: - On a 64-bit system, stretching and shearing fonts did not work. I only noticed when I upgraded to a 64-bit system; clearly not many people use this feature. - Under some circumstances, a spurious error "An input line is too long when macros are expanded" could be generated. This showed up on a 64-bit system with 4G of memory, but I'm not sure which exact condition provoked it. PR: 188120 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com> (maintainer)
28 lines
556 B
Makefile
28 lines
556 B
Makefile
# Created by: Brian Candler <B.Candler@pobox.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pmw
|
|
PORTVERSION= 4.28
|
|
CATEGORIES= print audio
|
|
MASTER_SITES= http://www.quercite.com/
|
|
|
|
MAINTAINER= 5u623l20@gmail.com
|
|
COMMENT= High quality music typesetting program
|
|
|
|
LICENSE= GPLv2
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
GNU_CONFIGURE= yes
|
|
MAKE_ARGS= FULLECHO=""
|
|
ALL_TARGET= build
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC}/doc && ${INSTALL_DATA} ChangeLog spec.pdf ${STAGEDIR}${DOCSDIR})
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/pmw
|
|
|
|
.include <bsd.port.mk>
|