mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
e5b6b9ebc7
. Fix the build on 8.x and 9.x by using a static libexecinfo link on them (not yet verified). . Remove USE_BZIP2 in favour of USES tar:bzip2 . Fix up some of the Perl script Perl executable usage. . Set HOME=- to prevent touching .afterstep in /root (suggested by swills@) . Fix additional packing list problems. Still need to fix LIB_DEPENDS format and the use of MAN1.
107 lines
3.2 KiB
Makefile
107 lines
3.2 KiB
Makefile
# Created by: Brett Taylor <brett@peloton.physics.montana.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= afterstep
|
|
PORTVERSION= 2.2.12
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-wm afterstep
|
|
MASTER_SITES= ${MASTER_SITE_AFTERSTEP}
|
|
MASTER_SITE_SUBDIR= stable
|
|
DISTNAME= AfterStep-${PORTVERSION}
|
|
|
|
MAINTAINER= glewis@FreeBSD.org
|
|
COMMENT= A stable version of the AfterStep window manager
|
|
|
|
LIB_DEPENDS= dbus-1:${PORTSDIR}/devel/dbus \
|
|
execinfo:${PORTSDIR}/devel/libexecinfo \
|
|
fontconfig:${PORTSDIR}/x11-fonts/fontconfig \
|
|
freetype:${PORTSDIR}/print/freetype2 \
|
|
gif:${PORTSDIR}/graphics/giflib \
|
|
jpeg:${PORTSDIR}/graphics/jpeg \
|
|
png15:${PORTSDIR}/graphics/png \
|
|
tiff:${PORTSDIR}/graphics/tiff
|
|
RUN_DEPENDS= xli:${PORTSDIR}/graphics/xli
|
|
|
|
USES= gmake pkgconfig shebangfix tar:bzip2
|
|
USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 librsvg2 pango
|
|
USE_XORG+= ice sm x11 xcomposite xcursor xdamage xext xfixes xi xinerama \
|
|
xrandr xrender
|
|
GNU_CONFIGURE= yes
|
|
SHEBANG_FILES= tools/ascommand.pl \
|
|
tools/importasmenu
|
|
MAKE_JOBS_UNSAFE= yes
|
|
CONFIGURE_ARGS+=--disable-ascp \
|
|
--enable-i18n \
|
|
--disable-send-postcard-to-developer \
|
|
--with-helpcommand="xterm -e man" \
|
|
--x-includes="${LOCALBASE}/include" \
|
|
--with-jpeg-includes="${LOCALBASE}/include" \
|
|
--with-png-includes="${LOCALBASE}/include" \
|
|
--with-gif
|
|
MAKE_ENV+= HOME=-
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-devel-${PORTVERSION}
|
|
|
|
MAN1= ASDatabase.1x ASDatabaseEntry.1x AfterStep.1x Align.1x \
|
|
Animate.1x AnimateTypes.1x Arrange.1x AutoExec.1x \
|
|
BalloonContents.1x Base.1x Bevel.1x ColorScheme.1x \
|
|
Feel.1x FeelWindowBox.1x Functions.1x Gravity.1x Look.1x \
|
|
MyBackground.1x MyFrame.1x MyStyle.1x Pager.1x \
|
|
PagerDecorations.1x Placement.1x Sound.1x SoundEvents.1x \
|
|
SupportedHints.1x TbarLayout.1x Wharf.1x WharfFolders.1x \
|
|
WharfSounds.1x WinCommand.1x WinList.1x WinTabs.1x \
|
|
afterstep_faq.1x asimagexml.1x
|
|
|
|
.if defined(WITH_DIFFERENT_LOOKNFEELS)
|
|
CONFIGURE_ARGS+= --enable-different-looknfeels
|
|
.endif
|
|
|
|
.if !defined(WITH_SAVEWINDOWS)
|
|
CONFIGURE_ARGS+= --disable-savewindows
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if exists(${PREFIX}/share/gnome/wm-properties)
|
|
PLIST_SUB+= GNOME=""
|
|
.else
|
|
PLIST_SUB+= GNOME="@comment "
|
|
.endif
|
|
|
|
.if ${OSVERSION} >= 1000000
|
|
STATIC_LIBEXECINFO=
|
|
.else
|
|
STATIC_LIBEXECINFO= ${LOCALBASE}/lib/libexecinfo.a
|
|
.endif
|
|
|
|
post-extract:
|
|
${CP} ${FILESDIR}/monitor_bsd.xpm \
|
|
${WRKSRC}/afterstep/desktop/icons/xml/monitor-bsd.xpm
|
|
|
|
post-patch:
|
|
.for f in afterstep/database
|
|
@${REINPLACE_CMD} -e 's,linux-penguin,monitor-bsd,' \
|
|
${WRKSRC}/${f}
|
|
.endfor
|
|
.for f in libAfterBase/Makefile.in libAfterImage/Makefile.in
|
|
@${REINPLACE_CMD} -e 's,^install\.,noinstall.,g ; \
|
|
s,^install:,install:#,g' ${WRKSRC}/${f}
|
|
.endfor
|
|
.for f in libAfterBase/configure libAfterImage/configure
|
|
@${REINPLACE_CMD} -e 's,="-O3",="$$CFLAGS",g' \
|
|
${WRKSRC}/${f}
|
|
.endfor
|
|
.for f in libAfterStep/afterstep-config.in
|
|
@${REINPLACE_CMD} -e 's,ft_version,libafterstep_version,g' \
|
|
${WRKSRC}/${f}
|
|
.endfor
|
|
.for f in configure libAfterBase/configure libAfterConf/Makefile.in libAfterImage/configure tools/makeastheme.pl.in tools/installastheme.pl.in
|
|
@${REINPLACE_CMD} -e 's,%%LOCALBASE%%,${LOCALBASE},g' \
|
|
${WRKSRC}/${f}
|
|
.endfor
|
|
@${REINPLACE_CMD} \
|
|
-e 's,%%STATIC_LIBEXECINFO%%,${STATIC_LIBEXECINFO},g' \
|
|
${WRKSRC}/configure
|
|
|
|
.include <bsd.port.post.mk>
|