diff options
author | wiz <wiz@pkgsrc.org> | 2009-08-25 11:56:34 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2009-08-25 11:56:34 +0000 |
commit | 8c5134dbe00f3188d5832b193a30e30ca7a6ce45 (patch) | |
tree | d305187ea667e2c134a9ba020eeef89d11ad7890 /devel/astyle | |
parent | 8c517d92ba12902e7ea6dde033394e1cccc22aa6 (diff) | |
download | pkgsrc-8c5134dbe00f3188d5832b193a30e30ca7a6ce45.tar.gz |
Change default for zip extraction to leave files as they are.
Previously, zip extraction by default converted to lower case.
Fix some packages that need it and remove -L from some packages
that manually set it.
Diffstat (limited to 'devel/astyle')
-rw-r--r-- | devel/astyle/Makefile | 4 | ||||
-rw-r--r-- | devel/astyle/distinfo | 4 | ||||
-rw-r--r-- | devel/astyle/patches/patch-aa | 13 |
3 files changed, 9 insertions, 12 deletions
diff --git a/devel/astyle/Makefile b/devel/astyle/Makefile index 2d5a2afd843..33eb901c437 100644 --- a/devel/astyle/Makefile +++ b/devel/astyle/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2007/11/28 19:06:00 joerg Exp $ +# $NetBSD: Makefile,v 1.13 2009/08/25 11:56:34 wiz Exp $ # DISTNAME= astyle_1.13.6.1 @@ -14,8 +14,6 @@ COMMENT= Reindenter and reformatter of C++, C and Java source code PKG_DESTDIR_SUPPORT= user-destdir -MAKE_FILE= makefile - HTMLDIR= ${PREFIX}/share/doc/html/astyle INSTALLATION_DIRS= bin ${HTMLDIR} diff --git a/devel/astyle/distinfo b/devel/astyle/distinfo index ceeac0aff15..adada722b10 100644 --- a/devel/astyle/distinfo +++ b/devel/astyle/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.7 2007/11/28 19:06:01 joerg Exp $ +$NetBSD: distinfo,v 1.8 2009/08/25 11:56:34 wiz Exp $ SHA1 (astyle_1.13.6.1.zip) = 4e0172fe30986d68c61b4a7c1638a1fc42ea0675 RMD160 (astyle_1.13.6.1.zip) = 74030324515be84e0e7499edc2503d0e549673ba Size (astyle_1.13.6.1.zip) = 61422 bytes -SHA1 (patch-aa) = 3e8adb7b979188f9828b3ae22d8037008975fb5b +SHA1 (patch-aa) = 67bb1b1802e74bc264cb951a55075982c566d463 SHA1 (patch-ab) = c9b21d45f53331411425a734971f003d415b11e7 SHA1 (patch-ac) = d143f2cd5ef3d15317d8dbe01be98f3a9a862ec6 diff --git a/devel/astyle/patches/patch-aa b/devel/astyle/patches/patch-aa index f74d45e7fdb..19bfe799637 100644 --- a/devel/astyle/patches/patch-aa +++ b/devel/astyle/patches/patch-aa @@ -1,20 +1,19 @@ -$NetBSD: patch-aa,v 1.4 2007/11/28 19:06:01 joerg Exp $ +$NetBSD: patch-aa,v 1.5 2009/08/25 11:56:34 wiz Exp $ ---- makefile.orig 2000-02-11 12:02:10.000000000 +1100 -+++ makefile +--- Makefile.orig 2000-02-11 12:02:10.000000000 +0000 ++++ Makefile @@ -1,14 +1,19 @@ # "Artistic Style" Makefile -CPPFLAGS = -Wall -Wno-sign-compare -O2 --OBJS = ASResource.o ASBeautifier.o ASFormatter.o astyle_main.o +#CPPFLAGS = -Wall -Wno-sign-compare -O2 -+OBJS = asresource.o asbeautifier.o asformatter.o astyle_main.o -+ + OBJS = ASResource.o ASBeautifier.o ASFormatter.o astyle_main.o + +all: astyle + +install: + install -s -c astyle ${DESTDIR}${PREFIX}/bin - ++ astyle: $(OBJS) - g++ $(CPPFLAGS) -o astyle $(OBJS) + $(CXX) $(CPPFLAGS) $(LDFLAGS) -o astyle $(OBJS) |