diff options
author | bland <bland@FreeBSD.org> | 2009-09-11 12:02:32 +0800 |
---|---|---|
committer | bland <bland@FreeBSD.org> | 2009-09-11 12:02:32 +0800 |
commit | 6228685b1ba9e42f04603fa5050f9cd718338823 (patch) | |
tree | 34a90808c036142fbcfc8c41a35c1f7898b7b597 /print | |
parent | bdfdbd6244b214ae1eb6762b89da5c38f419b6fa (diff) | |
download | freebsd-ports-gnome-6228685b1ba9e42f04603fa5050f9cd718338823.tar.gz freebsd-ports-gnome-6228685b1ba9e42f04603fa5050f9cd718338823.tar.zst freebsd-ports-gnome-6228685b1ba9e42f04603fa5050f9cd718338823.zip |
- Fix plist when NOPORTDOCS isnt defined (docs specified two times)
- Cleanups, use proper macro instead of cp -R
- Assign maintainership
PR: 138671
Diffstat (limited to 'print')
-rw-r--r-- | print/libharu/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/print/libharu/Makefile b/print/libharu/Makefile index 6dc3b70deed7..7db0cf8c485b 100644 --- a/print/libharu/Makefile +++ b/print/libharu/Makefile @@ -11,22 +11,19 @@ PORTVERSION= 2.1.0 CATEGORIES= print MASTER_SITES= http://libharu.org/files/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= kimelto@gmail.com COMMENT= Haru Free PDF Library LIB_DEPENDS= png:${PORTSDIR}/graphics/png -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} GNU_CONFIGURE= yes CFLAGS+= -I${LOCALBASE}/include USE_LDCONFIG= yes -.if !defined(NOPORTDOCS) -PORTDOCS= * - post-install: +.if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} - ${CP} -R ${WRKSRC}/doc/ ${DOCSDIR} + @(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} \* ${DOCSDIR}) .endif .include <bsd.port.mk> |