diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2009-05-23 14:23:23 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2009-05-23 14:23:23 +0000 |
commit | 2e01f1cbb6d1176d7a07c94d726868599702ac07 (patch) | |
tree | de0f88a599e94838585d9b46223952b5a762b4ae /x11/xnee/Makefile | |
parent | 65c11304da93761b40ed19a61ea7d53b75657d83 (diff) | |
download | ports-2e01f1cbb6d1176d7a07c94d726868599702ac07.tar.gz ports-2e01f1cbb6d1176d7a07c94d726868599702ac07.zip |
Notes
Diffstat (limited to 'x11/xnee/Makefile')
-rw-r--r-- | x11/xnee/Makefile | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/x11/xnee/Makefile b/x11/xnee/Makefile index c7b5e6099748..b29e92ee3c23 100644 --- a/x11/xnee/Makefile +++ b/x11/xnee/Makefile @@ -6,7 +6,7 @@ # PORTNAME= xnee -PORTVERSION= 3.02 +PORTVERSION= 3.03 CATEGORIES= x11 MASTER_SITES= GNU @@ -17,7 +17,7 @@ OPTIONS= GNEE "Build the GUI frontend" off \ PNEE "Build the Gnome Panel frontend" off USE_XORG= xtst -USE_GNOME= gnomehack gnometarget +USE_GNOME= gnomehack USE_GMAKE= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-cli --disable-doc @@ -25,12 +25,12 @@ CONFIGURE_ARGS= --enable-cli --disable-doc MAN1= cnee.1 xnee.1 INFO= xnee PLIST_FILES= bin/cnee \ + share/pixmaps/xnee.png \ + share/pixmaps/xnee.xpm \ %%DATADIR%%/example1.xns \ - %%DATADIR%%/pixmaps/xnee.png \ - %%DATADIR%%/pixmaps/xnee.xpm \ %%DATADIR%%/simple_bash.sh \ %%DATADIR%%/xnee.sh -PLIST_DIRS= %%DATADIR%%/pixmaps %%DATADIR%% +PLIST_DIRS= ${PNEE_DIR} %%DATADIR%% .include <bsd.port.pre.mk> @@ -51,6 +51,7 @@ PLIST_FILES+= libdata/bonobo/servers/pnee.server \ %%DATADIR%%/pixmaps/pnee-replay.png \ %%DATADIR%%/pixmaps/pnee-stop-mini.png \ %%DATADIR%%/pixmaps/pnee-stop.png +PNEE_DIR= %%DATADIR%%/pixmaps .else CONFIGURE_ARGS+= --disable-gnome-applet .endif @@ -59,7 +60,7 @@ post-patch: @${REINPLACE_CMD} -e \ 's|$${libdir}/gnome-panel|$${prefix}/libexec|g ; \ s|$${libdir}/bonobo/|$${prefix}/libdata/bonobo/|g ; \ - s|CCC||g' ${WRKSRC}/configure + s|"CCC"|""|g' ${WRKSRC}/configure @${REINPLACE_CMD} -e \ 's|@PIXMAP_DIR@|pixmap|g ; \ s|@DOC_DIR@||g' ${WRKSRC}/Makefile.in @@ -68,9 +69,15 @@ post-patch: @${REINPLACE_CMD} -e \ 's|: install-docDATA|:|g' ${WRKSRC}/cnee/src/Makefile.in @${REINPLACE_CMD} -e \ + 's|src test|src|g' ${WRKSRC}/libxnee/Makefile.in + @${REINPLACE_CMD} -e \ + 's|ap=NULL;|ap;|g' ${WRKSRC}/libxnee/src/feedback.c + @${REINPLACE_CMD} -e \ 's|cp pnee|$$(INSTALL_DATA) pnee|g' ${WRKSRC}/pnee/Makefile.in @${REINPLACE_CMD} -e \ 's|cp $$(PNEE)|$$(INSTALL_PROGRAM) $$(PNEE)|g' ${WRKSRC}/pnee/src/Makefile.in + @${REINPLACE_CMD} -e \ + '/<gnome.h>/d' ${WRKSRC}/pnee/src/pnee_impl.h post-install: ${INSTALL_DATA} ${WRKSRC}/doc/xnee.info ${PREFIX}/${INFO_PATH} |