summaryrefslogtreecommitdiff
path: root/devel/coccinelle
diff options
context:
space:
mode:
authorwiz <wiz>2009-04-29 17:01:57 +0000
committerwiz <wiz>2009-04-29 17:01:57 +0000
commit51f1cec57e8a5bcd7f1f63b4600228ee049d76fc (patch)
tree3124065246e2ee0f39f8355bb5ba91e0cf736aa3 /devel/coccinelle
parent5f08f40f2dfe9d1f872e74b4f2dc7d9444a9ae13 (diff)
downloadpkgsrc-51f1cec57e8a5bcd7f1f63b4600228ee049d76fc.tar.gz
Remove unused file (after 0.1.7 update).
Diffstat (limited to 'devel/coccinelle')
-rw-r--r--devel/coccinelle/patches/patch-ad53
1 files changed, 0 insertions, 53 deletions
diff --git a/devel/coccinelle/patches/patch-ad b/devel/coccinelle/patches/patch-ad
deleted file mode 100644
index d1be725f39c..00000000000
--- a/devel/coccinelle/patches/patch-ad
+++ /dev/null
@@ -1,53 +0,0 @@
-$NetBSD: patch-ad,v 1.1 2009/04/06 10:11:05 wiz Exp $
-
---- Makefile.orig 2009-03-22 20:48:19.000000000 +0000
-+++ Makefile
-@@ -38,7 +38,7 @@ ifeq ($(FEATURE_PYTHON),1)
- PYCMA=pycaml/pycaml.cma
- PYDIR=pycaml
- PYLIB=dllpycaml_stubs.so
--# the following is essential for Coccinelle to compile under gentoo (wierd)
-+# the following is essential for Coccinelle to compile under gentoo (weird)
- OPTLIBFLAGS=-cclib dllpycaml_stubs.so
- else
- PYCMA=
-@@ -224,22 +224,36 @@ install-python:
- $(DESTDIR)$(SHAREDIR)/python/coccilib
- $(INSTALL_DATA) python/coccilib/coccigui/*.py \
- $(DESTDIR)$(SHAREDIR)/python/coccilib/coccigui
-+ $(INSTALL_DATA) python/coccilib/coccigui/pygui.glade \
-+ $(DESTDIR)$(SHAREDIR)/python/coccilib/coccigui
-+ $(INSTALL_DATA) python/coccilib/coccigui/pygui.gladep \
-+ $(DESTDIR)$(SHAREDIR)/python/coccilib/coccigui
- $(INSTALL_LIB) dllpycaml_stubs.so $(DESTDIR)$(LIBDIR)
-
-+install:
-+ @if test -x spatch -a ! -x spatch.opt ; then \
-+ $(MAKE) install-byte;fi
-+ @if test ! -x spatch -a -x spatch.opt ; then \
-+ $(MAKE) install-def; $(MAKE) install-opt;fi
-+ @if test -x spatch -a -x spatch.opt ; then \
-+ $(MAKE) install-byte; $(MAKE) install-opt;fi
-+ @if test ! -x spatch -a ! -x spatch.opt ; then \
-+ echo "\n\n\t==> Run 'make', 'make opt', or both first. <==\n\n";fi
-+
- # user will use spatch to run spatch.opt (native)
--install: all.opt install-common
-+install-def: install-common
- $(INSTALL_PROGRAM) spatch.opt $(DESTDIR)$(SHAREDIR)
- cat scripts/spatch.sh | sed "s|SHAREDIR|$(SHAREDIR)|g" > $(DESTDIR)$(BINDIR)/spatch
- chmod 755 $(DESTDIR)$(BINDIR)/spatch
-
- # user will use spatch to run spatch (bytecode)
--install-byte: all install-common
-+install-byte: install-common
- $(INSTALL_PROGRAM) spatch $(DESTDIR)$(SHAREDIR)
- cat scripts/spatch.sh | sed "s|\.opt||" | sed "s|SHAREDIR|$(SHAREDIR)|g" > $(DESTDIR)$(BINDIR)/spatch
- chmod 755 $(DESTDIR)$(BINDIR)/spatch
-
- # user will use spatch.opt to run spatch.opt (native)
--install-opt: all.opt install-common
-+install-opt: install-common
- $(INSTALL_PROGRAM) spatch.opt $(DESTDIR)$(SHAREDIR)
- cat scripts/spatch.sh | sed "s|SHAREDIR|$(SHAREDIR)|g" > $(DESTDIR)$(BINDIR)/spatch.opt
- chmod 755 $(DESTDIR)$(BINDIR)/spatch.opt