diff options
author | rakuco <rakuco@FreeBSD.org> | 2013-12-25 01:34:49 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2013-12-25 01:34:49 +0800 |
commit | 5a95f43238b493d29e495c32bbe78b8685993c94 (patch) | |
tree | ace1afe91828577d11d99a5715aef8be24988a5c /print | |
parent | a2cc82a7e518af7bedc21ecf9f6154d9c21706c5 (diff) | |
download | freebsd-ports-gnome-5a95f43238b493d29e495c32bbe78b8685993c94.tar.gz freebsd-ports-gnome-5a95f43238b493d29e495c32bbe78b8685993c94.tar.zst freebsd-ports-gnome-5a95f43238b493d29e495c32bbe78b8685993c94.zip |
- Fix the build when only clang is present
- Respect CFLAGS (bump PORTREVISION for consistency)
- Set LICENSE
- Support staging
- Do not silence the calls made in the do-install target
- Stop needlessly setting PKGNAMESUFFIX
Diffstat (limited to 'print')
-rw-r--r-- | print/kde_poster/Makefile | 13 | ||||
-rw-r--r-- | print/kde_poster/files/patch-Makefile | 13 |
2 files changed, 19 insertions, 7 deletions
diff --git a/print/kde_poster/Makefile b/print/kde_poster/Makefile index 91cad060db59..135cb5d94d37 100644 --- a/print/kde_poster/Makefile +++ b/print/kde_poster/Makefile @@ -3,28 +3,27 @@ PORTNAME= kde_poster PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= print kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= printing -PKGNAMESUFFIX?= # empty DISTNAME= poster MAINTAINER= ports@FreeBSD.org COMMENT= KDE version of the poster utility +LICENSE= GPL2 + USE_BZIP2= yes -USE_GMAKE= yes ALL_TARGET= poster WRKSRC= ${WRKDIR}/${DISTNAME}-20060221 CONFLICTS?= poster-[0-9]* -MAN1= poster.1 -PLIST_FILES= bin/poster +PLIST_FILES= bin/poster man/man1/poster.1.gz -NO_STAGE= yes do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/${DISTNAME} ${PREFIX}/bin - @${INSTALL_DATA} ${WRKSRC}/${DISTNAME}.1 ${PREFIX}/man/man1/ + ${INSTALL_PROGRAM} ${WRKSRC}/${DISTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/${DISTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1 .include <bsd.port.mk> diff --git a/print/kde_poster/files/patch-Makefile b/print/kde_poster/files/patch-Makefile new file mode 100644 index 000000000000..f1dbdf7fd5a4 --- /dev/null +++ b/print/kde_poster/files/patch-Makefile @@ -0,0 +1,13 @@ +--- Makefile.orig 2002-08-29 19:15:37.000000000 +0300 ++++ Makefile 2013-12-24 19:18:30.000000000 +0200 +@@ -1,8 +1,8 @@ +-CFLAGS = -g -Wall ++#CFLAGS = -g -Wall + #CFLAGS = -O2 -Wall + + poster: poster.c +- gcc $(CFLAGS) -o poster poster.c -lm ++ $(CC) $(CFLAGS) -o poster poster.c -lm + + # HPUX: cc -O -Aa -D_POSIX_SOURCE -o poster poster.c -lm + # Note that this program might trigger a stupid bug in the HPUX C library, |