diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-04-14 18:21:19 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-04-14 18:21:19 +0800 |
commit | f73be1b877891a3d3b99f8d2401e09ac9e7fcfc9 (patch) | |
tree | e4efa2e0c3e15c6f71e3352a5c7e305f48e0b12a /graphics/sng | |
parent | 13f299bfc8ec9099566c4c75b1e87614f4be6a01 (diff) | |
download | freebsd-ports-graphics-f73be1b877891a3d3b99f8d2401e09ac9e7fcfc9.tar.gz freebsd-ports-graphics-f73be1b877891a3d3b99f8d2401e09ac9e7fcfc9.tar.zst freebsd-ports-graphics-f73be1b877891a3d3b99f8d2401e09ac9e7fcfc9.zip |
Add missing BUILD_DEPENDS/RUN_DEPENDS
PR: 26552
Submitted by: tkato@prontomail.ne.jp
Diffstat (limited to 'graphics/sng')
-rw-r--r-- | graphics/sng/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/sng/Makefile b/graphics/sng/Makefile index ca79dbd09ea..3a9e46792c0 100644 --- a/graphics/sng/Makefile +++ b/graphics/sng/Makefile @@ -14,14 +14,20 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ijliao@FreeBSD.org +BUILD_DEPENDS= ${X11BASE}/lib/X11/rgb.txt:${PORTSDIR}/x11/XFree86-4-clients +RUN_DEPENDS= ${BUILD_DEPENDS} LIB_DEPENDS= png.4:${PORTSDIR}/graphics/png GNU_CONFIGURE= yes CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" -CONFIGURE_ARGS= --with-png-inc=${LOCALBASE}/include +CONFIGURE_ARGS= --with-png-inc=${LOCALBASE}/include \ + --with-rgbtxt=${X11BASE}/lib/X11/rgb.txt USE_GMAKE= yes MAN1= sng.1 +pre-patch: + @${PERL} -pi -e 's|-static||g' ${WRKSRC}/Makefile.in + .include <bsd.port.mk> |