summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Krier <cedk@gentoo.org>2006-08-12 19:01:38 +0000
committerCédric Krier <cedk@gentoo.org>2006-08-12 19:01:38 +0000
commit761ee72d0d1e00270ebadcc971a8a20bb131892e (patch)
treeebb80fc9f04472ec14167b821554be440301f123 /x11-misc/xorg-edit/files/xorg-edit-06.06.11-makefile.patch
parentx11-misc/xorg-edit: Version bump (diff)
downloadsunrise-761ee72d0d1e00270ebadcc971a8a20bb131892e.tar.gz
sunrise-761ee72d0d1e00270ebadcc971a8a20bb131892e.tar.bz2
sunrise-761ee72d0d1e00270ebadcc971a8a20bb131892e.zip
x11-misc/xorg-edit: Clean old ebuild
svn path=/sunrise/; revision=867
Diffstat (limited to 'x11-misc/xorg-edit/files/xorg-edit-06.06.11-makefile.patch')
-rw-r--r--x11-misc/xorg-edit/files/xorg-edit-06.06.11-makefile.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/x11-misc/xorg-edit/files/xorg-edit-06.06.11-makefile.patch b/x11-misc/xorg-edit/files/xorg-edit-06.06.11-makefile.patch
deleted file mode 100644
index 429d0745d..000000000
--- a/x11-misc/xorg-edit/files/xorg-edit-06.06.11-makefile.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- xorg-edit~/sources/Makefile 2006-07-12 19:33:14.000000000 +0200
-+++ xorg-edit/sources/Makefile 2006-07-12 20:01:46.000000000 +0200
-@@ -5,7 +5,9 @@
-
- # variables
-
--CXX = `wx-config --cxx`
-+CXX ?= `wx-config --cxx`
-+LDFLAGS+=`wx-config --libs`
-+CXXFLAGS+=`wx-config --cxxflags`
-
- PROGRAM = xorg-edit
-
-@@ -17,14 +19,12 @@
-
- all: $(PROGRAM)
-
-- rm -f *.o
-
- $(PROGRAM): $(OBJECTS)
-- $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
--
--$(OBJECTS): $(SOURCES)
-- $(CXX) -c $(SOURCES) `wx-config --cxxflags`
-+ $(CXX) -o $(PROGRAM) $(OBJECTS) $(LDFLAGS)
-
-+%.o: %.c
-+ $(CXX) -o $@ -c $< $(CXXFLAGS)
-
- clean:
- rm -f *.o $(PROGRAM)