diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2016-09-09 01:48:45 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2016-09-09 01:48:45 +0800 |
commit | 040a5f35a28a9a677dbad7d5b4e8d99b0329638d (patch) | |
tree | 6111ebac6a369e00177f142d326c82c9361c9e40 | |
parent | 78eba1f0c531e11ee4fe5c1cf158188379a325fe (diff) | |
download | freebsd-ports-gnome-040a5f35a28a9a677dbad7d5b4e8d99b0329638d.tar.gz freebsd-ports-gnome-040a5f35a28a9a677dbad7d5b4e8d99b0329638d.tar.zst freebsd-ports-gnome-040a5f35a28a9a677dbad7d5b4e8d99b0329638d.zip |
- Add LICENSE
- Switch to USES=localbase
- Install docs
PR: 179337
Submitted by: nemysis@gmx.ch
Approved by: maintainer timeout (grog, 3 years)
-rw-r--r-- | graphics/enblend/Makefile | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/graphics/enblend/Makefile b/graphics/enblend/Makefile index 9389fead5b2b..f4376aa67c28 100644 --- a/graphics/enblend/Makefile +++ b/graphics/enblend/Makefile @@ -11,6 +11,9 @@ DISTNAME= enblend-enfuse-${PORTVERSION} MAINTAINER= grog@FreeBSD.org COMMENT= Tool for image blending with multiresolution splines +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING + BUILD_DEPENDS= help2man:misc/help2man \ ${LOCALBASE}/bin/makeinfo:print/texinfo \ OpenEXR>=1.0:graphics/OpenEXR @@ -22,16 +25,20 @@ LIB_DEPENDS= liblcms2.so:graphics/lcms2 \ RUN_DEPENDS= OpenEXR>=1.0:graphics/OpenEXR USE_AUTOTOOLS= automake:env autoconf:env -USES= compiler:features gmake jpeg makeinfo +USES= compiler:features gmake jpeg localbase makeinfo # We need a newer version of makeinfo for this. # Remove this line when we remove texinfo from the base system. -CONFIGURE_ARGS= MAKEINFO="${LOCALBASE}/bin/makeinfo" +CONFIGURE_ARGS= MAKEINFO="${LOCALBASE}/bin/makeinfo" \ + --with-boost-filesystem USE_GL= glew glut GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-boost-filesystem -CPPFLAGS+= -I${LOCALBASE}/include -LIBS+= -L${LOCALBASE}/lib -lboost_system + +INFO= enfuse enblend +PLIST_FILES= bin/enblend bin/enfuse man/man1/enblend.1.gz man/man1/enfuse.1.gz +PORTDOCS= AUTHORS NEWS README + +OPTIONS_DEFINE= DOCS .include <bsd.port.pre.mk> @@ -44,10 +51,11 @@ USE_GCC= yes CXXFLAGS+= -Wno-c++11-extensions .endif -INFO= enfuse enblend -PLIST_FILES= bin/enblend bin/enfuse man/man1/enblend.1.gz man/man1/enfuse.1.gz - post-install: - ${INSTALL_DATA} ${WRKSRC}/doc/*.info ${STAGEDIR}${PREFIX}/${INFO_PATH} + ${INSTALL_DATA} ${WRKSRC}/doc/*.info ${STAGEDIR}${PREFIX}/${INFO_PATH} + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include <bsd.port.post.mk> |