diff options
author | Koop Mast <kwm@FreeBSD.org> | 2014-03-10 14:53:49 +0000 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2014-03-10 14:53:49 +0000 |
commit | d9142f168b3594d0f36739974a7b59e8270b59c3 (patch) | |
tree | bd369af970da45d6241beba74a5e0221db7faf4f /x11-toolkits/gai/Makefile | |
parent | 8c10fa1b604e896291d889d33ba602bfca384234 (diff) |
Notes
Diffstat (limited to 'x11-toolkits/gai/Makefile')
-rw-r--r-- | x11-toolkits/gai/Makefile | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/x11-toolkits/gai/Makefile b/x11-toolkits/gai/Makefile index bd81846a728f..26e06f5db31a 100644 --- a/x11-toolkits/gai/Makefile +++ b/x11-toolkits/gai/Makefile @@ -3,22 +3,23 @@ PORTNAME= gai PORTVERSION= 0.5.10 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= x11-toolkits gnome MASTER_SITES= SF/${PORTNAME}/GAI%20-%20Library/${PORTNAME}-${PORTVERSION} MAINTAINER= lx@redundancy.redundancy.org COMMENT= General Applet Interface Library -LIB_DEPENDS= gtkglext-x11-1.0:${PORTSDIR}/x11-toolkits/gtkglext +LIB_DEPENDS= libgtkglext-x11-1.0.so:${PORTSDIR}/x11-toolkits/gtkglext USE_BZIP2= yes USES= pkgconfig USE_GL= gl USE_SDL= sdl -USE_GNOME= gnomepanel libgnomeui +USE_GNOME= libgnomeui GNU_CONFIGURE= yes CONFIGURE_ENV= SDLCONF=${SDL_CONFIG} +CONFIGURE_ARGS= --disable-gnome CPPFLAGS+= `pkg-config --cflags libgnomeui-2.0` PLIST_FILES= include/gai/gai.h lib/libgai.so.${PORTVERSION} \ @@ -28,7 +29,6 @@ PLIST_DIRS= include/gai PORTDOCS= * USE_LDCONFIG= yes -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e "s|sdl-config --|${SDL_CONFIG} --|g; \ s|/usr/X11R6|${LOCALBASE}|g" ${WRKSRC}/configure @@ -36,17 +36,17 @@ post-patch: post-install: .if !defined(NOPORTDOCS) cd ${WRKSRC}/docs && \ - ${FIND} * -type d -exec ${MKDIR} "${DOCSDIR}/{}" \; && \ - ${FIND} * -type f -exec ${INSTALL_DATA} "{}" "${DOCSDIR}/{}" \; + ${FIND} * -type d -exec ${MKDIR} "${STAGEDIR}${DOCSDIR}/{}" \; && \ + ${FIND} * -type f -exec ${INSTALL_DATA} "{}" "${STAGEDIR}${DOCSDIR}/{}" \; .endif .for dir in docking examples templates cd ${WRKSRC} && \ - ${FIND} ${dir} -type d -exec ${MKDIR} "${EXAMPLESDIR}/{}" \; && \ - ${FIND} ${dir} -type f -exec ${INSTALL_DATA} "{}" "${EXAMPLESDIR}/{}" \; + ${FIND} ${dir} -type d -exec ${MKDIR} "${STAGEDIR}${EXAMPLESDIR}/{}" \; && \ + ${FIND} ${dir} -type f -exec ${INSTALL_DATA} "{}" "${STAGEDIR}${EXAMPLESDIR}/{}" \; .endfor - @${FIND} ${EXAMPLESDIR} -type f | \ - ${SED} "s,^${PREFIX}/,," >> ${TMPPLIST} - @${FIND} ${EXAMPLESDIR} -type d | ${SORT} -r | \ - ${SED} "s,^${PREFIX}/,@dirrm ," >> ${TMPPLIST} + @${FIND} ${STAGEDIR}${EXAMPLESDIR} -type f | \ + ${SED} "s,^${STAGEDIR}${PREFIX}/,," >> ${TMPPLIST} + @${FIND} ${STAGEDIR}${EXAMPLESDIR} -type d | ${SORT} -r | \ + ${SED} "s,^${STAGEDIR}${PREFIX}/,@dirrm ," >> ${TMPPLIST} .include <bsd.port.mk> |