2008-10-05 12:18:34 +02:00
|
|
|
# New ports collection makefile for: giggle
|
|
|
|
# Date created: 2008-10-01
|
|
|
|
# Whom: Ashish Shukla <wahjava@gmail.com>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= giggle
|
2010-02-16 11:30:57 +01:00
|
|
|
PORTVERSION= 0.4.96
|
2008-10-05 12:18:34 +02:00
|
|
|
CATEGORIES= devel
|
2009-05-04 15:25:20 +02:00
|
|
|
MASTER_SITES= GNOME
|
2008-10-05 12:18:34 +02:00
|
|
|
|
|
|
|
MAINTAINER= wahjava@gmail.com
|
|
|
|
COMMENT= GTK+ frontend for git version control system
|
|
|
|
|
2009-05-04 15:25:20 +02:00
|
|
|
BUILD_DEPENDS= git:${PORTSDIR}/devel/git \
|
|
|
|
${SITE_PERL}/mach/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser
|
2008-10-05 12:18:34 +02:00
|
|
|
RUN_DEPENDS= git:${PORTSDIR}/devel/git
|
2010-02-16 11:30:57 +01:00
|
|
|
OPTIONS= EDS "Evolution Data Server support" On \
|
|
|
|
VTE "Terminal Widget" On
|
2008-10-05 12:18:34 +02:00
|
|
|
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_GMAKE= yes
|
|
|
|
USE_GNOME= glib20 gtk20 gtksourceview2 libglade2
|
|
|
|
USE_GETTEXT= yes
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
INSTALLS_ICONS= yes
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
2010-02-16 11:30:57 +01:00
|
|
|
LDFLAGS="-L${LOCALBASE}/lib -lintl"
|
|
|
|
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
|
|
|
|
.if defined(WITHOUT_EDS)
|
|
|
|
CONFIGURE_ARGS+= --disable-evolution-data-server
|
|
|
|
.elif defined(WITH_EDS)
|
|
|
|
USE_GNOME+= evolutiondataserver
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(WITH_VTE)
|
|
|
|
USE_GNOME+= vte
|
|
|
|
PLIST_SUB+= VTE=""
|
|
|
|
.elif defined(WITHOUT_VTE)
|
|
|
|
CONFIGURE_ARGS+= --disable-terminal
|
|
|
|
PLIST_SUB+= VTE="@comment "
|
|
|
|
.endif
|
2008-10-05 12:18:34 +02:00
|
|
|
|
2009-05-04 15:25:20 +02:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2009-06-08 17:12:32 +02:00
|
|
|
.if ${OSVERSION} < 700000
|
|
|
|
BROKEN= does not build
|
|
|
|
.endif
|
|
|
|
|
2010-02-16 11:30:57 +01:00
|
|
|
post-install:
|
|
|
|
@-update-desktop-database
|
2009-05-04 15:25:20 +02:00
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|