mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
2b1eb3f667
Static & type-qualified arrays Added support for C99 static and type-qualified array function arguments, e.g.: void f( int a[static const 10] ); Variable length arrays Added support for C99 variable length array function arguments, e.g.: void f( int a[*] ); void g( int a[const *] ); Help command-line argument Now prints the help message and exits if the first command-line argument is "help". Fixed reference to array The generated gibberish for "reference to array" has been fixed.
28 lines
520 B
Makefile
28 lines
520 B
Makefile
# Created by: David O'Brien (obrien@NUXI.com)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cdecl
|
|
PORTVERSION= 3.4
|
|
DISTVERSIONPREFIX= ${PORTNAME}-
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= ler@FreeBSD.org
|
|
COMMENT= Explains complicated C/C++ declarations in plain English
|
|
|
|
LICENSE= GPLv3
|
|
|
|
BUILD_DEPENDS= flex:textproc/flex
|
|
|
|
CONFLICTS= cutils-[0-9]*
|
|
|
|
USES= autoreconf bison ncurses readline
|
|
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= paul-j-lucas
|
|
|
|
GNU_CONFIGURE= yes
|
|
PLIST_FILES= bin/cdecl bin/c++decl man/man1/cdecl.1.gz man/man1/c++decl.1.gz
|
|
|
|
.include <bsd.port.mk>
|