mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
289883b11b
* Add PKGNAMESUFFIX and rename the directory. This was done to show that IM6 is not the "main" version. But still fully supported by upstream. * Convert a number of options to optionhelpers. * Add option for ISO/IEC 23008-12:2017 HEIF suport * Add comment to pkg-descr explaining IM6's "legacy" tag. * Add comment to the patch-config_policy.xml file why it still needed. Please note that IM7 is not a drop in replacement due to library API and command arguments changes. And as a result ports need to decide for themself which version to use. Chase these changes in all the ports that using IM6. PR: 225102 (based on, only the version update) [1] Submitted by: Pascal Christen <pascal.christen@hostpoint.ch>
68 lines
2.0 KiB
Makefile
68 lines
2.0 KiB
Makefile
# Created by: Brian Handy <handy@physics.montana.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= windowmaker
|
|
PORTVERSION= 0.95.8
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11-wm windowmaker
|
|
MASTER_SITES= http://windowmaker.org/pub/source/release/
|
|
DISTNAME= WindowMaker-${PORTVERSION}
|
|
|
|
MAINTAINER= hrs@FreeBSD.org
|
|
COMMENT= GNUstep-compliant NeXTstep window manager clone
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libgif.so:graphics/giflib \
|
|
libpng.so:graphics/png \
|
|
libjbig.so:graphics/jbigkit \
|
|
libtiff.so:graphics/tiff \
|
|
libwebp.so:graphics/webp \
|
|
libMagickWand-6.so:graphics/ImageMagick6 \
|
|
libwraster.so.6:x11-wm/libwraster \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2 \
|
|
libexif.so:graphics/libexif
|
|
RUN_DEPENDS= ${LOCALBASE}/share/WindowMaker/Themes/LeetWM.themed/style:graphics/wmicons
|
|
|
|
USES= jpeg libtool shebangfix pathfix perl5 pkgconfig
|
|
USE_LDCONFIG= yes
|
|
USE_XORG= x11 xext xft xinerama xmu xpm
|
|
SHEBANG_FILES= util/wkdemenu.pl
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= ac_cv_header_sys_inotify_h=no \
|
|
wm_cv_func_secure_getenv=no
|
|
CONFIGURE_ARGS= --with-pixmapdir=${PREFIX}/include/X11/pixmaps \
|
|
--localedir=${PREFIX}/share/locale \
|
|
--with-libs-from="-L${LOCALBASE}/lib" \
|
|
--with-incs-from="-I${LOCALBASE}/include" \
|
|
--with-gnustepdir="${PREFIX}/GNUstep" \
|
|
--enable-modelock \
|
|
--enable-xinerama \
|
|
--enable-usermenu \
|
|
--enable-wmreplace \
|
|
--with-x
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
PORTDOCS= AUTHORS BUGFORM BUGS ChangeLog FAQ INSTALL \
|
|
INSTALL-WMAKER NEWS README README.definable-cursor \
|
|
README.i18n TODO The-perfect-Window-Maker-patch.txt
|
|
|
|
OPTIONS_DEFINE= DOCS NLS
|
|
OPTIONS_SUB= yes
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_ENV= LINGUAS="*"
|
|
NLS_CONFIGURE_ENABLE= locale
|
|
|
|
post-install:
|
|
@${MKDIR} \
|
|
${STAGEDIR}${PREFIX}/GNUstep/Applications/WPrefs.app/xpm \
|
|
${STAGEDIR}${PREFIX}/share/WindowMaker/Sounds
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|