diff options
author | ijliao <ijliao@FreeBSD.org> | 2002-11-07 19:33:21 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2002-11-07 19:33:21 +0800 |
commit | 85d8799417f511de977928abe1d39cad1cb80bea (patch) | |
tree | 395e662308ee0ed958b18fde5104e8f54a92f25d | |
parent | f47fbb32446ca0fb5767ef925fd5fd4c04995c25 (diff) | |
download | freebsd-ports-gnome-85d8799417f511de977928abe1d39cad1cb80bea.tar.gz freebsd-ports-gnome-85d8799417f511de977928abe1d39cad1cb80bea.tar.zst freebsd-ports-gnome-85d8799417f511de977928abe1d39cad1cb80bea.zip |
- Support CC properly
PR: 44978
Submitted by: Ports Fury
-rw-r--r-- | print/psmark/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/print/psmark/Makefile b/print/psmark/Makefile index b8f10a5872be..181dcea2ba60 100644 --- a/print/psmark/Makefile +++ b/print/psmark/Makefile @@ -8,6 +8,7 @@ PORTNAME= psmark PORTVERSION= 2.0 +PORTREVISION= 1 CATEGORIES= print MASTER_SITES= http://www.antitachyon.com/download/ DISTNAME= ${PORTNAME}-v${PORTVERSION} @@ -17,12 +18,11 @@ MAINTAINER= ports@FreeBSD.org PORTCOMMENT= Renders a vertical string on any PostScript document WRKSRC= ${WRKDIR}/${PORTNAME} -USE_REINPLACE= yes MAN1= psmark.1 -post-patch: - @${REINPLACE_CMD} -e "s|^CFLAGS|#CFLAGS|g" ${WRKSRC}/Makefile +do-build: + @cd ${WRKSRC} && ${CC} ${CFLAGS} -o ${PORTNAME} ${PORTNAME}.c do-install: ${INSTALL_PROGRAM} ${WRKSRC}/psmark ${PREFIX}/bin |