Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/luasocket/files: luasocket-2.0.2-unixsocket.patch
Date: Mon, 28 Sep 2009 10:54:32
Message-Id: E1MsDsE-00067j-2a@stork.gentoo.org
1 flameeyes 09/09/28 10:54:30
2
3 Added: luasocket-2.0.2-unixsocket.patch
4 Log:
5 Initial import of luasocket (needed for ekeyd); thanks to Pierre Guinoiseau in bug #239540 for the basic ebuild.
6 (Portage version: 2.2_rc42/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-libs/luasocket/files/luasocket-2.0.2-unixsocket.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/luasocket/files/luasocket-2.0.2-unixsocket.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/luasocket/files/luasocket-2.0.2-unixsocket.patch?rev=1.1&content-type=text/plain
13
14 Index: luasocket-2.0.2-unixsocket.patch
15 ===================================================================
16 Index: luasocket-2.0.2/makefile
17 ===================================================================
18 --- luasocket-2.0.2.orig/makefile
19 +++ luasocket-2.0.2/makefile
20 @@ -45,6 +47,7 @@ install: all
21 #cd src; $(INSTALL_DATA) $(TO_MIME_SHARE) $(INSTALL_MIME_SHARE)
22 cd src; mkdir -p $(INSTALL_MIME_LIB)
23 cd src; $(INSTALL_EXEC) $(MIME_SO) $(INSTALL_MIME_LIB)/core.$(EXT)
24 + cd src; $(INSTALL_EXEC) $(UNIX_SO) $(INSTALL_SOCKET_LIB)/unix.$(EXT)
25
26 #------
27 # End of makefile
28 Index: luasocket-2.0.2/src/makefile
29 ===================================================================
30 --- luasocket-2.0.2.orig/src/makefile
31 +++ luasocket-2.0.2/src/makefile
32 @@ -47,7 +47,7 @@ UNIX_OBJS:=\
33 usocket.o \
34 unix.o
35
36 -all: $(SOCKET_SO) $(MIME_SO)
37 +all: $(SOCKET_SO) $(MIME_SO) $(UNIX_SO)
38
39 $(SOCKET_SO): $(SOCKET_OBJS)
40 $(LD) $(LDFLAGS) -o $@ $(SOCKET_OBJS)