14f7c29430
Mk/Uses/alias.mk was an attempt for compat with DPorts, but has rotted. This feature was never documented in the PHB, so there is no work to be done by the docs@ team. Nothing against DragonFly, but if DPorts still needs FreeBSD 9 support, they really should work that out with upstream projects. Ultimately, we don't need to keep carrying this outdated feature that doesn't affect us.
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
PORTNAME= fbpanel
|
|
PORTVERSION= 6.1
|
|
PORTREVISION= 8
|
|
CATEGORIES= x11
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Lightweight, NETWM compliant X11 desktop panel
|
|
WWW= https://fbpanel.sourceforge.net/
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= gmake gnome pkgconfig tar:tbz2 xorg
|
|
USE_GNOME= gdkpixbuf gdkpixbuf2xlib gtk20
|
|
USE_XORG= x11
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix=${PREFIX}
|
|
|
|
PORTDOCS= CHANGELOG CREDITS NOTES README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
DESKTOP_ENTRIES="${PORTNAME}" "${PORTNAME} NETWM compliant X11 desktop panel" \
|
|
"${PORTNAME}" "${PORTNAME}" "System;" false
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/LDFLAGS/s/$$/ -lX11 -lm/' \
|
|
${WRKSRC}/panel/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|' ${WRKSRC}/scripts/install.sh
|
|
@${REINPLACE_CMD} -e 's|@DATADIR@|${DATADIR}|' \
|
|
${WRKSRC}/data/man/${PORTNAME}.1.in
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/data/man/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/share/man/man1
|
|
${LN} -sf ${DATADIR}/images/logo.png ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.png
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|