af530959b2
moserial is a clean, friendly gtk-based serial terminal for the gnome desktop. It is written in Vala for extra goodness. - ASCII and HEX views of incoming and outgoing data - Logging to file of incoming and/or outgoing data - Support for x, y, and z-modem file send and receive - Support for profile files, to load/save common configurations - Easier to use than the alternatives - Supports i18n feedback/ok aja@
37 lines
942 B
Makefile
37 lines
942 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/07/04 10:00:38 jasper Exp $
|
|
|
|
COMMENT= serial terminal for GNOME
|
|
|
|
GNOME_PROJECT= moserial
|
|
GNOME_VERSION= 2.32.1
|
|
|
|
CATEGORIES= comms
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODULES= devel/gconf2 \
|
|
devel/gettext \
|
|
x11/gnome
|
|
|
|
WANTLIB += GL ORBit-2 X11 Xau Xcomposite Xcursor Xdamage Xdmcp
|
|
WANTLIB += Xext Xfixes Xi Xinerama Xrandr Xrender Xxf86vm atk-1.0
|
|
WANTLIB += c cairo drm expat fontconfig freetype gdk-x11-2.0 gdk_pixbuf-2.0
|
|
WANTLIB += gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0 gthread-2.0
|
|
WANTLIB += gtk-x11-2.0 m pango-1.0 pangocairo-1.0 pangoft2-1.0
|
|
WANTLIB += pcre pixman-1 png pthread pthread-stubs xcb xcb-render
|
|
WANTLIB += xcb-shm z
|
|
|
|
LIB_DEPENDS= x11/gtk+2
|
|
|
|
DESKTOP_FILES= Yes
|
|
MODGNOME_HELP_FILES= Yes
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include " \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
.include <bsd.port.mk>
|