openbsd-ports/devel/geany/Makefile
jasper 247c1d03b5 import geany 0.9
Geany is a small and lightweight integrated development environment.
It was developed to provide a small and fast IDE, which has only
a few dependencies from other packages.

Basic features of Geany:

    * syntax highlighting
    * code folding
    * code completion
    * auto completion of often used constructs like if, for and while
    * auto completion of XML and HTML tags
    * call tips
    * many supported filetypes like C, Java, PHP, HTML, Python, Perl, Pascal
    * symbol lists

from MAINTAINER Vlad Glagolev <stelzy gmail.com>
2006-12-10 22:03:48 +00:00

47 lines
906 B
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2006/12/10 22:03:48 jasper Exp $
COMMENT= "small and lightweight IDE"
DISTNAME= geany-0.9
CATEGORIES= devel
HOMEPAGE= http://geany.uvena.de/
MAINTAINER= Vlad Glagolev <stelzy@gmail.com>
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=geany/}
EXTRACT_SUFX= .tar.bz2
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= X11 stdc++ c m iconv intl \
glib-2.0 gmodule-2.0 gobject-2.0 \
fontconfig freetype atk-1.0 cairo \
pango-1.0 pangoft2-1.0 pangocairo-1.0
BUILD_DEPENDS= :pkgconfig-*:devel/pkgconfig
LIB_DEPENDS= gdk-x11-2.0,gdk_pixbuf-2.0,gtk-x11-2.0::x11/gtk+2
CONFIGURE_STYLE=gnu
CONFIGURE_ARGS= CPPFLAGS="-I${LOCALBASE}/include"
USE_X11= Yes
USE_GMAKE= Yes
FLAVORS= vte
FLAVOR?=
.if ${FLAVOR:L:Mvte}
LIB_DEPENDS+= ::devel/vte
.else
CONFIGURE_ARGS+=--disable-vte
.endif
.include <bsd.port.mk>