1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00
freebsd-ports/misc/gnomehier/Makefile
Joe Marcus Clarke 610ae56816 Presenting GNOME 2.24 for FreeBSD.
See http://library.gnome.org/misc/release-notes/2.24/ for the general
release notes.  On the FreeBSD front, this release introduces Fuse support
in HAL, adds multi-CPU support to libgtop, WebKit updates, and fixes some
long-standing seahorse and gnome-keyring bugs.  The documentation updates
to the website are forthcoming.

This release features commits by adamw, ahze, kwm, mezz, and myself.  It would
not have been possible without are contributors and testers:

Alexander Loginov
Craig Butler [1]
Dmitry Marakasov [6]
Eric L. Chen
Joseph S. Atkinson
Kris Moore
Lapo Luchini [7]
Nikos Ntarmos
Pawel Worach
Romain Tartiere
TAOKA Fumiyoshi [3]
Yasuda Keisuke
Zyl
aZ [4]
bf [2] [5]
Florent Thoumie
Peter Wemm
pluknet

PR:		125857 [1]
		126993 [2]
		130031 [3]
		127399 [4]
		127661 [5]
		124302 [6]
		129570 [7]
		129936
		123790
2009-01-10 05:22:13 +00:00

63 lines
1.7 KiB
Makefile

# New ports collection makefile for: gnomehier
# Date created: 2 July 2002
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
# $MCom: ports/misc/gnomehier/Makefile,v 1.31 2008/12/26 23:27:22 marcus Exp $
#
# !!DON'T BUMP PORTREVISION ON MTREE CHANGES ANYMORE!!
PORTNAME= gnomehier
PORTVERSION= 2.3
PORTREVISION= 11
CATEGORIES= misc gnome
MASTER_SITES= # none
DISTFILES= # none
MAINTAINER= gnome@FreeBSD.org
COMMENT= A utility port that creates the GNOME directory tree
NO_BUILD= yes
PLIST?= ${WRKDIR}/pkg-plist
PKGINSTALL= ${WRKDIR}/pkg-install
GNOME_MTREE= BSD.gnome.dist
GNOME_MTREE_ARGS=${MTREE_ARGS:S|${MTREE_FILE}|${PREFIX}/etc/mtree/${GNOME_MTREE}|}
do-fetch:
@${DO_NADA}
pre-install:
@${CP} -f ${FILESDIR}/dirlist ${WRKDIR}
@${RM} -f ${PLIST} ${WRKDIR}/${GNOME_MTREE}
@${TOUCH} -f ${PLIST}
@${ECHO_CMD} etc/mtree/${GNOME_MTREE} >> ${PLIST}
@${MKDIR} ${WRKSRC}
@${CAT} ${FILESDIR}/dirlist | ${SORT} -r | ${SED} -e \
's|^|@dirrm |' >> ${PLIST}
@${ECHO_CMD} "@unexec ${RMDIR} %D/etc/mtree 2>/dev/null || ${TRUE}" >> ${PLIST}
@for dir in `${CAT} ${WRKDIR}/dirlist`; \
do \
${MKDIR} ${WRKSRC}/$${dir}; \
done
@${SED} -e 's|%%MTREE_ARGS%%|${GNOME_MTREE_ARGS}|' \
< ${FILESDIR}/pkg-install.in > ${PKGINSTALL}
pre-su-install:
${CHGRP} games ${WRKSRC}/share/games
${CHMOD} g=rwXs ${WRKSRC}/share/games
cd ${WRKSRC} && \
${MTREE_CMD} -U -d -n -i -c -k "uname, gname, mode" | \
${SED} -e 's|uname=[A-Za-z0-9_]*|uname=root|' \
-e 's|gname=[A-Za-z0-9_]*|gname=wheel|' \
> ${WRKDIR}/${GNOME_MTREE}
do-install:
${MKDIR} ${PREFIX}/etc/mtree
${INSTALL_DATA} ${WRKDIR}/${GNOME_MTREE} ${PREFIX}/etc/mtree
post-install:
@${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.include <bsd.port.mk>