d129587b5d
The offical GNOME 3.16 release notes can be found at https://help.gnome.org/misc/release-notes/3.16/ Upgrade instructions for port users: Delete the old tracker package with: # pkg delete -f tracker And user port upgrade tool of choice to upgrade. Thanks to Antoine Brodin for running the exp-runs. This release was made possible by the following people: Gustau Perez Ting-Wei_Lan PR: 201980
33 lines
959 B
Makefile
33 lines
959 B
Makefile
# Created by: Gustau Perez i Querol <gustau.perez@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gnome-shell-extension-recent-items
|
|
PORTVERSION= 11
|
|
CATEGORIES= deskutils gnome
|
|
MASTER_SITES= http://www.bananenfisch.net/code/
|
|
DISTNAME= RecentItems-${PORTVERSION}
|
|
DIST_SUBDIR= gnome3
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Recent items extensions for the GNOME3 shell
|
|
|
|
WRKSRC= ${WRKDIR}/RecentItems@bananenfisch.net
|
|
|
|
USE_GNOME= glib20
|
|
USE_LDCONFIG= yes
|
|
|
|
PKGMESSAGE= ../gnome-shell-extra-extensions/pkg-message.slaves
|
|
|
|
NO_BUILD= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|"3.14"|"3.14","3.16"|g' \
|
|
${WRKSRC}/metadata.json
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/gnome-shell/extensions/RecentItems@bananenfisch.net
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} . \
|
|
${STAGEDIR}${PREFIX}/share/gnome-shell/extensions/RecentItems@bananenfisch.net
|
|
@chmod +r ${STAGEDIR}${PREFIX}/share/gnome-shell/extensions/RecentItems@bananenfisch.net/metadata.json
|
|
|
|
.include <bsd.port.mk>
|