mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
a8174c980d
PR: ports/18044 Submitted by: MAINTAINER
88 lines
2.5 KiB
Makefile
88 lines
2.5 KiB
Makefile
# New ports collection makefile for: WindowMaker with i18n extention
|
|
# Date created: 24 Nov 1998
|
|
# Whom: mac@jp.freebsd.org
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= windowmaker-i18n
|
|
PORTVERSION= 0.62.1
|
|
CATEGORIES= x11-wm windowmaker
|
|
MASTER_SITES= ${MASTER_SITE_WINDOWMAKER}
|
|
MASTER_SITE_SUBDIR= beta/srcs
|
|
DISTNAME= WindowMaker-${PORTVERSION}
|
|
|
|
MAINTAINER= mac@jp.freebsd.org
|
|
|
|
LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \
|
|
ungif.5:${PORTSDIR}/graphics/libungif \
|
|
jpeg.9:${PORTSDIR}/graphics/jpeg \
|
|
png.3:${PORTSDIR}/graphics/png \
|
|
tiff.4:${PORTSDIR}/graphics/tiff \
|
|
PropList.2:${PORTSDIR}/devel/libPropList \
|
|
intl.1:${PORTSDIR}/devel/gettext
|
|
BUILD_DEPENDS= nkf:${PORTSDIR}/japanese/nkf
|
|
RUN_DEPENDS= ${X11BASE}/share/WindowMaker/Themes/Checker.themed/style:${PORTSDIR}/graphics/wmicons
|
|
|
|
USE_BZIP2= yes
|
|
USE_PERL5= yes
|
|
USE_X_PREFIX= yes
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= X11BASE=${X11BASE} LOCALBASE=${LOCALBASE} \
|
|
CPPFLAGS="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib" \
|
|
LINGUAS="da de es fi fr hr it ja_JP.EUC ko nl no pl pt ru zh_TW.Big5 zh_CN"
|
|
CONFIGURE_ARGS= --with-pixmapdir=${PREFIX}/include/X11/pixmaps \
|
|
--with-nlsdir=${PREFIX}/share/locale \
|
|
--with-libs-from="-L${LOCALBASE}/lib" \
|
|
--with-incs-from="-I${LOCALBASE}/include" \
|
|
--with-appspath="${PREFIX}/GNUstep/Apps" \
|
|
--disable-debug
|
|
|
|
MAN1= geticonset.1x getstyle.1x seticons.1x setstyle.1x \
|
|
wdwrite.1x wmaker.1x wmsetbg.1x wxcopy.1x wxpaste.1x wsetfont.1x
|
|
|
|
JA_CATALOGFILE=
|
|
|
|
.if defined(JA_CATALOGFILE) && !empty(JA_CATALOGFILE)
|
|
MASTER_SITES+= ftp://muse.brain.riken.go.jp/pub/ja.po/
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${JA_CATALOGFILE}${EXTRACT_SUFX}
|
|
.endif
|
|
|
|
.if defined(WITH_GNOME)
|
|
CONFIGURE_ARGS+= --enable-gnome
|
|
.endif
|
|
.if defined(WITH_KDE)
|
|
CONFIGURE_ARGS+= --enable-kde
|
|
.endif
|
|
|
|
.SILENT:
|
|
.if !defined(WITH_KDE) && !defined(WITH_GNOME)
|
|
pre-extract:
|
|
${ECHO} "You can add hooks for Gnome and KDE by defining WITH_GNOME and/or WITH_KDE"
|
|
.endif
|
|
|
|
post-extract:
|
|
@cd ${WRKSRC} && \
|
|
${TAR} xfz libwmfun-0.0.3.tar.gz
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/WPrefs.app/Paths.c
|
|
@${PERL} -pi -e "s|%%PERL%%|${PERL}|g" ${WRKSRC}/util/wm-oldmenu2new
|
|
.if defined(JA_CATALOGFILE) && ${JA_CATALOGFILE} != ""
|
|
@${CP} ${WRKDIR}/${JA_CATALOGFILE}/WindowMaker.ja.po \
|
|
${WRKSRC}/po/ja.po
|
|
@${CP} ${WRKDIR}/${JA_CATALOGFILE}/WPrefs.ja.po \
|
|
${WRKSRC}/WPrefs.app/po/ja.po
|
|
.endif
|
|
|
|
pre-build:
|
|
@cd ${WRKSRC}/WindowMaker/Defaults && ${MAKE} clean
|
|
|
|
post-install:
|
|
@${MKDIR} ${PREFIX}/share/WindowMaker/Sounds/
|
|
|
|
.include <bsd.port.post.mk>
|