1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

Upgrade to 1.15.3.

Set MAINTAINER to ports@FreeBSD.org (requested by the maintainer).
Fix warnings detected by portlint.

PR:		43237
Submitted by:	Marco Molteni <molter@tin.it>
Approved by:	Don Croyle <croyle@gelemna.org> (maintainer)
This commit is contained in:
OKAZAKI Tetsurou 2002-10-26 12:58:12 +00:00
parent 703e5aa0ac
commit 198d99a3e1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=68867
3 changed files with 25 additions and 4 deletions

View File

@ -6,15 +6,17 @@
#
PORTNAME= astyle
PORTVERSION= 1.14.0
PORTVERSION= 1.15.3
CATEGORIES= devel textproc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
USE_ZIP= yes
EXTRACT_BEFORE_ARGS= -q -aa
MAINTAINER= croyle@gelemna.org
EXTRACT_AFTER_ARGS= -d ${DISTNAME}
ALL_TARGET= astyle

View File

@ -1 +1 @@
MD5 (astyle_1.14.0.zip) = 3964fb8f199439bb260ef91a42976d51
MD5 (astyle_1.15.3.zip) = 4d8adbcd8703aea00fcd2670be090ddd

View File

@ -0,0 +1,19 @@
--- Makefile.orig Fri Feb 11 13:02:00 2000
+++ Makefile Sat Oct 26 21:35:38 2002
@@ -1,13 +1,13 @@
# "Artistic Style" Makefile
-CPPFLAGS = -Wall -Wno-sign-compare -O2
+CPPFLAGS = ${CXXFLAGS}
OBJS = ASResource.o ASBeautifier.o ASFormatter.o astyle_main.o
astyle: $(OBJS)
- g++ $(CPPFLAGS) -o astyle $(OBJS)
+ $(CXX) $(CPPFLAGS) -o astyle $(OBJS)
.cpp.o:
- g++ $(CPPFLAGS) -c $<
+ $(CXX) $(CPPFLAGS) -c $<
.SUFFIXES: .cpp .c .o
clean: