1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00

GOB2 is a preprocessor for making GObjects with inline C code so that

generated files are not edited. Syntax is inspired by Java and Yacc or
Lex. The implementation is intentionally kept simple, and no C actual
code parsing is done.

WWW: http://www.5z.com/jirka/gob.html

PR:		ports/102332
Submitted by:	Alexey Mikhailov <karma(at)ez.pereslavl.ru>
Approved by:	krion (mentor)
This commit is contained in:
Martin Wilke 2006-08-25 20:00:03 +00:00
parent bb9de474d2
commit c9957e17e5
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=171408
4 changed files with 37 additions and 0 deletions

View File

@ -47,6 +47,7 @@
SUBDIR += gnustep-gui
SUBDIR += gnustep-xdps
SUBDIR += gob
SUBDIR += gob2
SUBDIR += gstreamer-plugins-pango
SUBDIR += gstreamer-plugins-pango80
SUBDIR += gtk-sharp10

View File

@ -0,0 +1,27 @@
# New ports collection makefile for: gob2
# Date created: Aug 21, 2006
# Whom: Alexey Mikhailov <karma@ez.pereslavl.ru>
#
# $FreeBSD$
PORTNAME= gob2
PORTVERSION= 2.0.14
CATEGORIES= x11-toolkits
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/gob2/2.0
MAINTAINER= karma@ez.pereslavl.ru
COMMENT= A preprocessor for making GObjects with inline C code
USE_BZIP2= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_GNOME= glib20
USE_X_PREFIX= yes
USE_ICONV= yes
MAN1= gob2.1
PLIST_FILES= bin/gob2 share/aclocal/gob2.m4
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
SIZE (gob2-2.0.14.tar.bz2) = 208430
MD5 (gob2-2.0.14.tar.bz2) = be788fa5cf70483255e2099188a9dc33
SHA256 (gob2-2.0.14.tar.bz2) = 3768482d11262de3caa7f252b017ff03d0d04a02988e2c6c6efa58c09efe081f

View File

@ -0,0 +1,6 @@
GOB2 is a preprocessor for making GObjects with inline C code so that
generated files are not edited. Syntax is inspired by Java and Yacc or
Lex. The implementation is intentionally kept simple, and no C actual
code parsing is done.
WWW: http://www.5z.com/jirka/gob.html