diff options
author | nemysis <nemysis@FreeBSD.org> | 2013-09-28 01:53:02 +0800 |
---|---|---|
committer | nemysis <nemysis@FreeBSD.org> | 2013-09-28 01:53:02 +0800 |
commit | 045362ffdee84cf3bf7fdd8cb3c4e0668d32d7cc (patch) | |
tree | 95dce9631baa8a84c1edd74c11d66df18c96ff62 /graphics/eos-movrec | |
parent | bca57766004076790b52f996e8b41d736b0a9287 (diff) | |
download | freebsd-ports-gnome-045362ffdee84cf3bf7fdd8cb3c4e0668d32d7cc.tar.gz freebsd-ports-gnome-045362ffdee84cf3bf7fdd8cb3c4e0668d32d7cc.tar.zst freebsd-ports-gnome-045362ffdee84cf3bf7fdd8cb3c4e0668d32d7cc.zip |
- Bump PORTREVISION
- Revert USE_QT4 value
- Support STAGEDIR
Approved by: wg/pawel (mentors)
Diffstat (limited to 'graphics/eos-movrec')
-rw-r--r-- | graphics/eos-movrec/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/graphics/eos-movrec/Makefile b/graphics/eos-movrec/Makefile index 58eff34df01e..ec011957d7e9 100644 --- a/graphics/eos-movrec/Makefile +++ b/graphics/eos-movrec/Makefile @@ -3,6 +3,7 @@ PORTNAME= eos-movrec DISTVERSION= 0.3.2_beta +PORTREVISION= 1 CATEGORIES= graphics multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION}/ @@ -16,9 +17,7 @@ LIB_DEPENDS= libgphoto2.so:${PORTSDIR}/graphics/libgphoto2 USE_BZIP2= yes USES= cmake pkgconfig USE_DOS2UNIX= *.pro *.cpp *.h -USE_QT4= corelib dbus declarative designer gui help iconengines imageformats \ - moc_build multimedia network opengl phonon qmake_build qt3support \ - rcc_build script scripttools sql qt3support uic_build webkit xml xmlpatterns +USE_QT4= qmake_build moc_build rcc_build uic_build gui INSTALLS_ICONS= yes ICON_SIZES= 16x16 32x32 128x128 256x256 512x512 @@ -26,7 +25,6 @@ ICON_SIZES= 16x16 32x32 128x128 256x256 512x512 DESKTOP_ENTRIES="EOS Camera Movie Recorder" "${COMMENT}" "${PORTNAME}" \ "eos_movrec" "Graphics;Photography;Qt;" false -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|GLIBC|${OPSYS}|' ${WRKSRC}/os_api.h .for s in 16 32 128 256 512 @@ -36,10 +34,11 @@ post-patch: post-install: .for s in ${ICON_SIZES} - @${MKDIR} ${PREFIX}/share/icons/hicolor/${s}/apps + @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps/ ${INSTALL_DATA} ${WRKSRC}/mac.icons/${PORTNAME}_${s}.png \ - ${PREFIX}/share/icons/hicolor/${s}/apps/${PORTNAME}.png + ${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps/${PORTNAME}.png .endfor - ${LN} -sf ${PREFIX}/share/icons/hicolor/32x32/apps/${PORTNAME}.png ${PREFIX}/share/pixmaps/ + ${LN} -sf ${PREFIX}/share/icons/hicolor/32x32/apps/${PORTNAME}.png \ + ${STAGEDIR}${PREFIX}/share/pixmaps/ .include <bsd.port.mk> |