freebsd-ports/misc/gnome2-reference/Makefile
Joe Marcus Clarke 4acc6fb2a4 Presenting GNOME 2.20.1 and all related works for FreeBSD. The official
GNOME 2.20 release notes can be found at
http://www.gnome.org/start/2.20/notes/en/ .  Beyond that, this update
includes the new GIMP 2.4 (courtesy of ahze).

The GNOME 2.20 update also includes a huge change in the FreeBSD GNOME
hierarchy.  We are now using the more standard DATADIR of ${PREFIX}/share
rather than ${PREFIX}/share/gnome. The result is that fewer patches and
hacks are needed to port GNOME components to FreeBSD.  This will mean some
user changes may be required, so be sure to read /usr/ports/UPDATING for
more details.

This release and the things we accomplished in it would not have been
possible without mezz's crazy idea to collapse DATADIR, and his persistence
to make it happen successfully.  Ahze and pav also deserve thanks for
their work on porting modules and testing the whole ball of wax on
pointyhat (respectively).

The FreeBSD GNOME team would also like to thank our various testers and
contributors:

Yasuda Keisuke
Frank Jahnke
Pawel Worach
Brian Gruber
Franz Klammer
Yuri Pankov
Nick Barkas
Cristian KLEIN
Tony Maher
Scot Hetzel
Martin Matuska (mm)
Benoit Dejean
Martin Wilke (miwi)
(And anyone else I may have missed)

PRs fixed in this release:

111272, 113470, 115995, 116338
2007-10-24 23:37:25 +00:00

85 lines
2.5 KiB
Makefile

# New ports collection makefile for: gnome2-reference
# Date created: 2006-07-24
# Whom: Michael Johnson <ahze@FreeBSD.org>
#
# $FreeBSD$
# $MCom: ports/misc/gnome2-reference/Makefile,v 1.7 2007/09/04 21:54:03 ahze Exp $
PORTNAME= gnome2-reference
PORTVERSION= 2.20
CATEGORIES= misc gnome
MASTER_SITES= # empty
DISTFILES= # empty
EXTRACT_ONLY= # empty
MAINTAINER= gnome@FreeBSD.org
COMMENT= The "meta-port" for GNOME 2 programming references
# Please keep this list alphabetically sorted.
# If you add or remove an entry from REF_LIST you must
# run 'make create-ref-list'
REF_LIST= accessibility/at-spi-reference \
accessibility/atk-reference \
accessibility/gail-reference \
databases/libgda2-reference \
databases/libgda3-reference \
databases/libgnomedb-reference \
devel/ORBit2-reference \
devel/gconf2-reference \
devel/glib20-reference \
devel/glibmm-reference \
devel/gnome-vfs-reference \
devel/libbonobo-reference \
devel/libglade2-reference \
devel/libsoup-reference \
graphics/cairo-reference \
graphics/libgnomecanvas-reference \
net/linc-reference \
print/libgnomeprint-reference \
textproc/gtkspell-reference \
textproc/libxml2-reference \
textproc/libxslt-reference \
x11/gnome-desktop-reference \
x11/gnome-panel-reference \
x11/libgnome-reference \
x11-fonts/fontconfig-reference \
x11-toolkits/gal2-reference \
x11-toolkits/gtk20-reference \
x11-toolkits/gtkmm20-reference \
x11-toolkits/gtkmm24-reference \
x11-toolkits/gtksourceview-reference \
x11-toolkits/libbonoboui-reference \
x11-toolkits/libgnomeui-reference \
x11-toolkits/libwnck-reference \
x11-toolkits/pango-reference \
x11-toolkits/vte-reference
OPTIONS= # empty
NO_BUILD= yes
REF_LIST_INC= ${.CURDIR}/Makefile.inc
.include "${REF_LIST_INC}"
.include <bsd.port.pre.mk>
.for ref in ${_PORT_REF_LIST:C/^([^:]+).*/\1/}
OPTIONS+= ${ref:C|^[^/]+/([^/]+).*|\1|:S/-reference//:S/-/_/:U} "Install ${ref:C|^[^/]+/([^/]+).*|\1|:S/-reference//} programing reference " on
.endfor
.for ref in ${_PORT_REF_LIST}
.if !defined(WITHOUT_${ref:C|^[^/]+/([^/]+).*|\1|:S/-reference//:S/-/_/:U:C/^([^:]+).*/\1/})
RUN_DEPENDS+= ${ref:C|^[^:]+:([^:]+).*|\1|:C|^[^/]+/([^/]+).*|\1|}>0:${PORTSDIR}/${ref:C/^([^:]+).*/\1/}
.endif
.endfor
do-install: # empty
create-ref-list:
${CP} ${REF_LIST_INC} ${REF_LIST_INC}.bak
${ECHO_CMD} "_PORT_REF_LIST= \\" > ${REF_LIST_INC}
.for port in ${REF_LIST}
(cd ${PORTSDIR}/${port} && ${ECHO_CMD} "${port}:`${MAKE} -V PORTNAME` \\" >> ${REF_LIST_INC})
.endfor
.include <bsd.port.post.mk>