diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2017-01-09 14:42:42 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2017-01-09 14:42:42 +0000 |
commit | 78be2d778929c518aed427e614dfc0c8afbe3679 (patch) | |
tree | 1de8aaabaf18c27973d96678333d5ae28ae8400a | |
parent | fd3ea282485f8bb8f7962f77506ef3cd5a3500bc (diff) | |
download | freebsd-ports-78be2d778929c518aed427e614dfc0c8afbe3679.zip |
Add missing USES=jpeg
- Add LICENSE_FILE
- Use USES=localbase:ldflags
- Convert to options target helper
We do not bump PORTREVISION because jpeg dependency is already brought in via graphics/tiff.
-rw-r--r-- | graphics/tumble/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/tumble/Makefile b/graphics/tumble/Makefile index c5addd182cea..71d6e5ac7dce 100644 --- a/graphics/tumble/Makefile +++ b/graphics/tumble/Makefile @@ -12,14 +12,12 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Creates a PDF file from image files LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libtiff.so:graphics/tiff \ libnetpbm.so:graphics/netpbm -USES= bison gmake - -CFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +USES= bison gmake jpeg localbase:ldflags NOT_FOR_ARCHS= powerpc sparc64 NOT_FOR_ARCHS_REASON= Only works on little endian systems @@ -40,6 +38,8 @@ post-patch: do-install: (cd ${WRKSRC} && ${INSTALL_PROGRAM} tumble \ ${STAGEDIR}${PREFIX}/bin) + +do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} README \ ${STAGEDIR}${DOCSDIR}) |