mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
a6d2f30533
and libintl.so. This fixes a problem where DATADIRNAME gets an incorrect value which causes locale files to be installed in the wrong place. - The only configure checks that still need to be patched are related to intltool so move DATADIRNAME patching from USES=pathfix to USE_GNOME=intlhack. - games/klavaro: remove excessive dependencies - japanese/libskk: add INSTALL_TARGET=install-strip - math/libqalculate: add INSTALL_TARGET=install-strip and remove pthread patching - multimedia/freetuxtv: remove excessive dependencies - science/gramps: fix shared-mime-info use Exp-run by: antoine Approved by: portmgr (antoine)
30 lines
738 B
Makefile
30 lines
738 B
Makefile
# Created by: Matt Dawson <matt@mattsnetwork.co.uk>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gpredict
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= comms hamradio
|
|
MASTER_SITES= SF/${PORTNAME}/Gpredict/${PORTVERSION}
|
|
|
|
MAINTAINER= hamradio@FreeBSD.org
|
|
COMMENT= Amateur Radio satellite tracking and prediction
|
|
|
|
LICENSE= GPLv2 # (or later)
|
|
|
|
LIB_DEPENDS= libhamlib.so:${PORTSDIR}/comms/hamlib \
|
|
libcurl.so:${PORTSDIR}/ftp/curl \
|
|
libgoocanvas.so:${PORTSDIR}/graphics/goocanvas
|
|
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
USES= gettext gmake pkgconfig
|
|
USE_GNOME= gtk20
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
'/^Icon/s|=.*|=${PREFIX}/share/pixmaps/gpredict-icon.png|' \
|
|
${WRKSRC}/data/desktop/gpredict.desktop.in
|
|
|
|
.include <bsd.port.mk>
|