2013-05-11 15:15:45 +02:00
|
|
|
# Created by: Ashish Shukla <wahjava@gmail.com>
|
2008-10-05 12:18:34 +02:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= giggle
|
2010-06-05 23:28:50 +02:00
|
|
|
PORTVERSION= 0.5
|
2012-06-01 07:26:28 +02:00
|
|
|
PORTREVISION= 3
|
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
|
|
|
|
2010-06-11 15:37:41 +02:00
|
|
|
MAINTAINER= ashish@FreeBSD.org
|
2008-10-05 12:18:34 +02:00
|
|
|
COMMENT= GTK+ frontend for git version control system
|
|
|
|
|
2009-05-04 15:25:20 +02:00
|
|
|
BUILD_DEPENDS= git:${PORTSDIR}/devel/git \
|
2012-06-29 12:20:00 +02:00
|
|
|
p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser
|
2008-10-05 12:18:34 +02:00
|
|
|
RUN_DEPENDS= git:${PORTSDIR}/devel/git
|
2013-05-11 15:15:45 +02:00
|
|
|
|
|
|
|
OPTIONS_DEFINE= EDS VTE
|
|
|
|
OPTIONS_DEFAULT= EDS VTE
|
|
|
|
EDS_DESC= Evolution Data Server support
|
|
|
|
VTE_DESC= Terminal Widget
|
2008-10-05 12:18:34 +02:00
|
|
|
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_GMAKE= yes
|
2010-03-20 20:12:32 +01:00
|
|
|
USE_BZIP2= yes
|
2008-10-05 12:18:34 +02:00
|
|
|
USE_GNOME= glib20 gtk20 gtksourceview2 libglade2
|
2013-05-11 15:15:45 +02:00
|
|
|
USES= gettext pkgconfig
|
2008-10-05 12:18:34 +02:00
|
|
|
USE_LDCONFIG= yes
|
|
|
|
INSTALLS_ICONS= yes
|
2011-09-24 00:26:39 +02:00
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
2013-03-08 11:51:34 +01:00
|
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lintl `pkg-config -libs gmodule-2.0`
|
2010-03-20 20:12:32 +01:00
|
|
|
PLIST_SUB+= GIGGLE_VER=${PORTVERSION}
|
2010-02-16 11:30:57 +01:00
|
|
|
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
|
2013-05-11 15:15:45 +02:00
|
|
|
.if ${PORT_OPTIONS:MEDS}
|
2010-02-16 11:30:57 +01:00
|
|
|
USE_GNOME+= evolutiondataserver
|
2013-05-11 15:15:45 +02:00
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-evolution-data-server
|
2010-02-16 11:30:57 +01:00
|
|
|
.endif
|
|
|
|
|
2013-05-11 15:15:45 +02:00
|
|
|
.if ${PORT_OPTIONS:MVTE}
|
2010-02-16 11:30:57 +01:00
|
|
|
USE_GNOME+= vte
|
|
|
|
PLIST_SUB+= VTE=""
|
2013-05-11 15:15:45 +02:00
|
|
|
.else
|
2010-02-16 11:30:57 +01:00
|
|
|
CONFIGURE_ARGS+= --disable-terminal
|
|
|
|
PLIST_SUB+= VTE="@comment "
|
|
|
|
.endif
|
2008-10-05 12:18:34 +02:00
|
|
|
|
2010-02-16 11:30:57 +01:00
|
|
|
post-install:
|
|
|
|
@-update-desktop-database
|
2009-05-04 15:25:20 +02:00
|
|
|
|
2011-11-07 05:24:55 +01:00
|
|
|
.include <bsd.port.mk>
|