diff options
author | miwi <miwi@FreeBSD.org> | 2007-03-13 20:36:00 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-03-13 20:36:00 +0800 |
commit | ae7357a2a04f08bd08bfc93f8f95370471378bad (patch) | |
tree | b69cbfa4d05b3b21616ca0281abcd99b33f4a1c9 /editors | |
parent | 73729d495ff55434bac7833a0d33bb93b19d123b (diff) | |
download | freebsd-ports-gnome-ae7357a2a04f08bd08bfc93f8f95370471378bad.tar.gz freebsd-ports-gnome-ae7357a2a04f08bd08bfc93f8f95370471378bad.tar.zst freebsd-ports-gnome-ae7357a2a04f08bd08bfc93f8f95370471378bad.zip |
- Fixed libimg dependencies
PR: 110226
Submitted by: Martin Matuska <martin@matuska.org>
Diffstat (limited to 'editors')
-rw-r--r-- | editors/muggy/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/editors/muggy/Makefile b/editors/muggy/Makefile index ad769a746a7f..35a437011927 100644 --- a/editors/muggy/Makefile +++ b/editors/muggy/Makefile @@ -7,6 +7,7 @@ PORTNAME= muggy PORTVERSION= 1.3.1 +PORTREVISION= 1 CATEGORIES= editors windowmaker tkstep80 MASTER_SITES= http://www.aaa-int.or.jp/~jfactory/JDE/dist/ \ ${MASTER_SITE_LOCAL} @@ -17,22 +18,19 @@ EXTRACT_ONLY= # extracted directly in install target MAINTAINER= ports@FreeBSD.org COMMENT= A simple text editor for the X on TkStep -RUN_DEPENDS= ${RUN_DEP_LIST} -LIB_DEPENDS= ${LIB_DEP_LIST} +RUN_DEPENDS= ${LOCALBASE}/lib/tkstep8.0/tkstep.tcl:${PORTSDIR}/x11-toolkits/tkstep80 +LIB_DEPENDS= img.1:${PORTSDIR}/graphics/libimg-tkstep80 NO_WRKSUBDIR= yes NO_BUILD= yes USE_X_PREFIX= yes REINPLACE_ARGS= +TKSTEPVERSION= 8.0 +PIXMAPPATH?= ${PREFIX}/share/WindowMaker/Pixmaps SCRIPTS_ENV= LANG=C LN=${LN} REINPLACE_CMD="${REINPLACE_CMD}" \ LANGUAGE=${LANGUAGE} VERSION=${TKSTEPVERSION} PLIST_SUB= PIXMAP_PATH=${PIXMAPPATH:S@^${PREFIX}/@@} -TKSTEPVERSION= 8.0 -PIXMAPPATH?= ${PREFIX}/share/WindowMaker/Pixmaps -RUN_DEP_LIST= ${LOCALBASE}/lib/tkstep8.0/tkstep.tcl:${PORTSDIR}/x11-toolkits/tkstep80 -LIB_DEP_LIST= img.1:${PORTSDIR}/graphics/libimg - do-install: ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${DISTDIR}/${DISTNAME}.tar.gz \ ${EXTRACT_AFTER_ARGS} -C ${PREFIX} |