mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# Created by: Martin Klaffenboeck <martin.klaffenboeck@gmx.at>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gnotime
|
|
PORTVERSION= 2.4.1
|
|
PORTREVISION= 4
|
|
CATEGORIES= deskutils gnome
|
|
MASTER_SITES= SF/gttr/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Time tracker for gnome2
|
|
|
|
LICENSE= GPLv2 # (or later)
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libguile.so:${PORTSDIR}/lang/guile \
|
|
libqof.so:${PORTSDIR}/databases/qof
|
|
|
|
USES= gettext gmake libtool pathfix pkgconfig
|
|
USE_XORG= xscrnsaver
|
|
USE_GNOME= gnomeprefix gtkhtml3 intlhack libgnomeui
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= GUILE_CFLAGS="$$(guile-config compile)" \
|
|
GUILE_LIBS="$$(guile-config link)"
|
|
CONFIGURE_ARGS= --disable-silent-rules
|
|
INSTALL_TARGET= install-strip
|
|
USE_LDCONFIG= yes
|
|
INSTALLS_OMF= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
|
|
GCONF_SCHEMAS= gnotime.schemas
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
'/^install-data-am/s|install-data-local||' \
|
|
${WRKSRC}/gconf/Makefile.in
|
|
@${REINPLACE_CMD} -e \
|
|
'/^AM_CFLAGS =/s|-g||' ${WRKSRC}/src/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|