mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
69553e4f7c
Horia Racoviceanu <horia@racoviceanu.com> wishes to maintain these ports with my help. misc/lxde-common - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com misc/xdg-menu - Change Makefile header, use my name and @FreeBSD.org email - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Change Desktop entry file - Add DOCS Option - Break lines around 80 characters - Change pkg-plist, remove mtree sysutils/lxinput - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com sysutils/lxtask - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Remove TODO from DOCS sysutils/lxterminal - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Change pkg-plist, add missing x11/florence - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Use tar:bzip2 instead of USE_BZIP2=yes and not needed desktop-file-utils - Remove not needed MAN1 from Makefile x11/libfm - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Use tar:xz instead of USE_XZ=yes - Change pkg-plist, remove mtree x11/lxde-meta - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com x11/lxmenu-data - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Change pkg-plist, remove mtree x11/lxpanel - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Strip libraries - Change pkg-plist, add missing x11/menu-cache - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - USES pathfix instead of USE_GNOME gnomehack - Strip library x11-fm/pcmanfm - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Use tar:xz instead of USE_XZ=yes - Change pkg-plist, remove mtree, add missing x11-themes/lxde-icon-theme - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Use tar:bzip2 instead of USE_BZIP2=yes - Change pkg-plist, remove mtree x11-wm/lxmed - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com x11-wm/lxsession - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Change pkg-plist, add missing x11-wm/obapps - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Add DOCS Option - Change Desktop entry file x11-wm/obmenu - Bump PORTREVISION - Pass maintainership to horia@racoviceanu.com - Change Desktop entry file - Break lines around 80 characters
54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
# Created by: Rusmir Dusko <nemysis@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lxmed
|
|
PORTVERSION= 20120515
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11-wm java
|
|
MASTER_SITES= SF/${PORTNAME}/
|
|
DIST_SUBDIR= java
|
|
|
|
MAINTAINER= horia@racoviceanu.com
|
|
COMMENT= LXDE Main Menu Editor
|
|
|
|
LICENSE= GPLv3
|
|
|
|
RUN_DEPENDS= gksu:${PORTSDIR}/sysutils/gksu
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.6+
|
|
NO_BUILD= yes
|
|
|
|
DATADIR= ${JAVASHAREDIR}/${PORTNAME}
|
|
|
|
SUB_FILES= ${PORTNAME}.sh ${PORTNAME}-root
|
|
|
|
post-extract:
|
|
@(cd ${WRKSRC}/content/ && ${CP} -a ${PORTNAME}.desktop \
|
|
${PORTNAME}-root.desktop)
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/opt/lxmed/${PORTNAME}.png|${PORTNAME}|; \
|
|
s|Main Menu Editor|${COMMENT}|' \
|
|
${WRKSRC}/content/${PORTNAME}.desktop
|
|
@${REINPLACE_CMD} -e 's|/opt/lxmed/${PORTNAME}.png|${PORTNAME}|; \
|
|
s|Exec=lxmed|Exec=${PORTNAME}-root ${PORTNAME}|; \
|
|
s|Main Menu Editor|${COMMENT} (as root)|' \
|
|
${WRKSRC}/content/${PORTNAME}-root.desktop
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh \
|
|
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}-root \
|
|
${STAGEDIR}${PREFIX}/bin/
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${CP} -a ${FILESDIR}/pc-su ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/content/LXMenuEditor.jar ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/content/${PORTNAME}.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
${INSTALL_DATA} ${WRKSRC}/content/*.desktop ${STAGEDIR}${DESKTOPDIR}
|
|
|
|
.include <bsd.port.mk>
|