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
37 lines
1,014 B
Makefile
37 lines
1,014 B
Makefile
# Created by: Gustau Perez i Querol <gustau.perez@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gnome-shell-extension-calculator
|
|
PORTVERSION= 0.0.0.20140520
|
|
PORTEVISION= 2
|
|
CATEGORIES= deskutils gnome
|
|
DIST_SUBDIR= gnome3
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Simple calculator in the gnome-shell search overview
|
|
|
|
BUILD_DEPENDS= gnome-shell>=0:${PORTSDIR}/x11/gnome-shell
|
|
RUN_DEPENDS= gnome-shell>=0:${PORTSDIR}/x11/gnome-shell
|
|
|
|
USES= gettext gmake pkgconfig tar:xz
|
|
USE_GITHUB= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
GH_ACCOUNT= eonpatapon
|
|
GH_TAGNAME= e4f4ac5
|
|
GH_PROJECT= gnome-shell-extension-calc
|
|
|
|
PKGMESSAGE= ../gnome-shell-extra-extensions/pkg-message.slaves
|
|
|
|
NO_BUILD= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|3.12"|3.12","3.14","3.16"|g' \
|
|
${WRKSRC}/calc\@patapon.info/metadata.json
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/gnome-shell/extensions/
|
|
@(cd ${WRKSRC} && ${CP} -pPR calc\@patapon.info ${STAGEDIR}${PREFIX}/share/gnome-shell/extensions/)
|
|
|
|
.include <bsd.port.mk>
|