diff options
author | bapt <bapt@FreeBSD.org> | 2014-01-18 17:43:41 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-01-18 17:43:41 +0800 |
commit | 1de5c8dd25f1eaeb78efe042a86f6848e04d21cd (patch) | |
tree | 089a51d0ddbbc19d191cfdca4d6da4445a3c375c /graphics | |
parent | 860bd328561ecfbd64bfc8fc7bb81ebcfd1d5732 (diff) | |
download | freebsd-ports-gnome-1de5c8dd25f1eaeb78efe042a86f6848e04d21cd.tar.gz freebsd-ports-gnome-1de5c8dd25f1eaeb78efe042a86f6848e04d21cd.tar.zst freebsd-ports-gnome-1de5c8dd25f1eaeb78efe042a86f6848e04d21cd.zip |
Support stage
Remove useless .pre.mk/.post.mk
modernize LIB_DEPENDS
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/leptonica/Makefile | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/graphics/leptonica/Makefile b/graphics/leptonica/Makefile index 0a9bccd4927a..4fdffb2362b2 100644 --- a/graphics/leptonica/Makefile +++ b/graphics/leptonica/Makefile @@ -10,11 +10,11 @@ MASTER_SITES= GOOGLE_CODE MAINTAINER= hiroto.kagotani@gmail.com COMMENT= C library for efficient image processing and image analysis operations -LIB_DEPENDS= gif:${PORTSDIR}/graphics/giflib \ - jpeg:${PORTSDIR}/graphics/jpeg \ - png15:${PORTSDIR}/graphics/png \ - tiff:${PORTSDIR}/graphics/tiff \ - webp:${PORTSDIR}/graphics/webp +LIB_DEPENDS= libgif.so:${PORTSDIR}/graphics/giflib \ + libjpeg.so:${PORTSDIR}/graphics/jpeg \ + libpng15.so:${PORTSDIR}/graphics/png \ + libtiff.so:${PORTSDIR}/graphics/tiff \ + libwebp.so:${PORTSDIR}/graphics/webp CONFLICTS= leptonlib-[0-9]* @@ -23,9 +23,6 @@ USE_LDCONFIG= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -NO_STAGE= yes -.include <bsd.port.pre.mk> - TESTS?= generate compare .if defined(MAINTAINER_MODE) || defined(PACKAGE_BUILDING) BUILD_DEPENDS+= ${LOCALBASE}/bin/gnuplot:${PORTSDIR}/math/gnuplot @@ -43,7 +40,4 @@ check regression-test test: build ${WRKSRC}/prog/alltests_reg ${c} .endfor -post-install: - ${CAT} ${PKGMESSAGE} - -.include <bsd.port.post.mk> +.include <bsd.port.mk> |