freebsd-ports/misc/gnomehier/Makefile
Joe Marcus Clarke 798e9bed2a Presenting GNOME 2.14.1 for FreeBSD! Checkout
http://www.gnome.org/start/2.14/ for the official release notes, and a list
of all the gooides in this new release.  In particular, GNOME 2.14 focused
on performance, and they did not miss the mark.  There's some new eye candy,
but most of the big things are waiting until GNOME 2.16.  On the FreeBSD
side, we tried to clean up all the crashers we could.  In particular, we
really improved GNOME's 64-bit support.

The good news is that this release does not bring any big shared library
version bumps, so you can almost do a simple portupgrade to get to 2.14.
There are a few minor gotchas that will be documented in UPDATING shortly.

The FreeBSD GNOME Team would like th thank the following users for their
patches, feedback, and sometimes incessant complaing about crashes (you
know who you are).

Yasuda Keisuke <kysd@po.harenet.ne.jp>
Pascal Hofstee <caelian@gmail.com>
rmgls@wanadoo.fr
tmclaugh
Yuri Pankov <yuri.pankov@gmail.com>
sajd on #freebsd-gnome
ade
ankon on #FreeBSD-Gnome
mux
Pascal Hofstee <caelian@gmail.com>
QuiRK on #freebsd-gnome
Vladimir Timofeev <vovkasm@gmail.com>
2006-04-30 00:47:21 +00:00

62 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.11 2006/03/14 03:05:32 marcus Exp $
#
# !!DON'T BUMP PORTREVISION ON MTREE CHANGES ANYMORE!!
PORTNAME= gnomehier
PORTVERSION= 2.1
PORTREVISION= 2
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-x11.dist
GNOME_MTREE_ARGS=${MTREE_ARGS:S|${MTREE_FILE}|${PREFIX}/etc/mtree/${GNOME_MTREE}|}
USE_X_PREFIX= yes
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/gnome/games
${CHMOD} g=rwXs ${WRKSRC}/share/gnome/games
cd ${WRKSRC} && \
${MTREE_CMD} -U -d -n -i -c -k "uname, gname, mode" \
> ${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>