mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Revert r422537 and use the official repository, not a fork.
Approved by: crees PR: 212719
This commit is contained in:
parent
59024b75d0
commit
db380d33a0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=422544
6 changed files with 44 additions and 30 deletions
|
@ -2,22 +2,26 @@
|
||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
|
|
||||||
PORTNAME= ucpp
|
PORTNAME= ucpp
|
||||||
PORTVERSION= 1.3.4
|
PORTVERSION= 1.3.2
|
||||||
|
PORTEPOCH= 1
|
||||||
CATEGORIES= devel
|
CATEGORIES= devel
|
||||||
MASTER_SITES= # GITHUB
|
MASTER_SITES= GH
|
||||||
|
|
||||||
MAINTAINER= crees@FreeBSD.org
|
MAINTAINER= crees@FreeBSD.org
|
||||||
COMMENT= C preprocessor and lexer
|
COMMENT= C preprocessor and lexer
|
||||||
|
|
||||||
LICENSE= BSD3CLAUSE
|
LICENSE= BSD3CLAUSE
|
||||||
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||||
|
|
||||||
|
GH_ACCOUNT= lpsantil
|
||||||
|
GH_TAGNAME= 31b719e
|
||||||
USE_GITHUB= yes
|
USE_GITHUB= yes
|
||||||
GH_ACCOUNT= scarabeusiv
|
|
||||||
USES= autoreconf libtool pathfix
|
|
||||||
PATHFIX_MAKEFILEIN= Makefile.am
|
|
||||||
GNU_CONFIGURE= yes
|
|
||||||
|
|
||||||
post-patch:
|
PLIST_FILES= bin/ucpp man/man1/ucpp.1.gz
|
||||||
${REINPLACE_CMD} '/^CFLAGS/s/-ansi//' ${WRKSRC}/configure.ac
|
USES= gmake
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
|
||||||
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1/
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
TIMESTAMP = 1474029495
|
TIMESTAMP = 1474394679
|
||||||
SHA256 (scarabeusiv-ucpp-1.3.4_GH0.tar.gz) = 35958c5f3bb3851c03d3f442cc072cf27b21dc8478e1eecfce289b1c5aba951a
|
SHA256 (lpsantil-ucpp-1.3.2-31b719e_GH0.tar.gz) = 475f1c2eb64998387cbab315c1c1bcd381644a14e6885aa434056fbf706b5e8f
|
||||||
SIZE (scarabeusiv-ucpp-1.3.4_GH0.tar.gz) = 92999
|
SIZE (lpsantil-ucpp-1.3.2-31b719e_GH0.tar.gz) = 97594
|
||||||
|
|
24
devel/ucpp/files/patch-Makefile
Normal file
24
devel/ucpp/files/patch-Makefile
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
Fixes clang build
|
||||||
|
|
||||||
|
--- Makefile.orig 2015-03-21 06:43:07 UTC
|
||||||
|
+++ Makefile
|
||||||
|
@@ -56,8 +56,8 @@
|
||||||
|
#FLAGS = -O -m -DMEM_CHECK
|
||||||
|
|
||||||
|
# for gcc
|
||||||
|
-CC = gcc
|
||||||
|
-FLAGS = -O3 -W -Wall -ansi
|
||||||
|
+CC ?= cc
|
||||||
|
+FLAGS = -ansi -DAUDIT -DMEM_DEBUG
|
||||||
|
#FLAGS = -g -W -Wall -ansi -DAUDIT -DMEM_DEBUG
|
||||||
|
#FLAGS = -O3 -mcpu=pentiumpro -fomit-frame-pointer -W -Wall -ansi -DMEM_CHECK
|
||||||
|
#FLAGS = -O -pg -W -Wall -ansi -DMEM_CHECK
|
||||||
|
@@ -88,7 +88,7 @@ endif
|
||||||
|
# ----- nothing should be changed below this line -----
|
||||||
|
|
||||||
|
COBJ = mem.o nhash.o cpp.o lexer.o assert.o macro.o eval.o
|
||||||
|
-CFLAGS = $(FLAGS)
|
||||||
|
+CFLAGS += $(FLAGS)
|
||||||
|
|
||||||
|
all: ucpp
|
||||||
|
@ar cq libucpp.a *.o
|
|
@ -1,6 +1,6 @@
|
||||||
--- cpp.c.orig 2008-10-01 21:15:41.000000000 +0400
|
--- cpp.c.orig 2015-03-21 06:43:07 UTC
|
||||||
+++ src/cpp.c 2011-03-17 21:08:15.000000000 +0300
|
+++ cpp.c
|
||||||
@@ -65,8 +65,8 @@
|
@@ -65,8 +65,8 @@ int emit_dependencies = 0, emit_defines
|
||||||
FILE *emit_output;
|
FILE *emit_output;
|
||||||
|
|
||||||
#ifdef STAND_ALONE
|
#ifdef STAND_ALONE
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
char *current_filename = 0, *current_long_filename = 0;
|
char *current_filename = 0, *current_long_filename = 0;
|
||||||
@@ -2364,7 +2364,7 @@
|
@@ -2371,7 +2371,7 @@ static int parse_opt(int argc, char *arg
|
||||||
char *filename = 0;
|
char *filename = 0;
|
||||||
int with_std_incpath = 1;
|
int with_std_incpath = 1;
|
||||||
int print_version = 0, print_defs = 0, print_asserts = 0;
|
int print_version = 0, print_defs = 0, print_asserts = 0;
|
||||||
|
|
|
@ -6,4 +6,4 @@ ucpp is a C preprocessor and lexer. It has the following goals:
|
||||||
- Possibility to use the code as a lexer (that outputs tokens
|
- Possibility to use the code as a lexer (that outputs tokens
|
||||||
directly)
|
directly)
|
||||||
|
|
||||||
WWW: https://github.com/scarabeusiv/ucpp
|
WWW: http://code.google.com/p/ucpp/
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
bin/ucpp
|
|
||||||
include/libucpp/cpp.h
|
|
||||||
include/libucpp/hash.h
|
|
||||||
include/libucpp/mem.h
|
|
||||||
include/libucpp/nhash.h
|
|
||||||
include/libucpp/tune.h
|
|
||||||
include/libucpp/ucpp-config.h
|
|
||||||
include/libucpp/ucppi.h
|
|
||||||
lib/libucpp.a
|
|
||||||
lib/libucpp.so
|
|
||||||
lib/libucpp.so.13
|
|
||||||
lib/libucpp.so.13.0.4
|
|
||||||
libdata/pkgconfig/libucpp.pc
|
|
||||||
man/man1/ucpp.1.gz
|
|
Loading…
Add table
Reference in a new issue