diff options
author | Rafael Martins <rafaelmartins@gentoo.org> | 2010-11-05 20:51:36 +0000 |
---|---|---|
committer | Rafael Martins <rafaelmartins@gentoo.org> | 2010-11-05 20:51:36 +0000 |
commit | 5644234328b8361fb20732e564252f502835d6a0 (patch) | |
tree | f9ecc2137bd137d3cb3f723b884f7149b38e4abd | |
parent | Stable for ppc64; bug #320683 (diff) | |
download | gentoo-2-5644234328b8361fb20732e564252f502835d6a0.tar.gz gentoo-2-5644234328b8361fb20732e564252f502835d6a0.tar.bz2 gentoo-2-5644234328b8361fb20732e564252f502835d6a0.zip |
Forgot to commit the files/ directory.
(Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
-rw-r--r-- | dev-lua/luaexpat/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lua/luaexpat/files/luaexpat-1.1-makefile.patch | 19 |
2 files changed, 24 insertions, 1 deletions
diff --git a/dev-lua/luaexpat/ChangeLog b/dev-lua/luaexpat/ChangeLog index 72632e6b5879..2a5d3c02c489 100644 --- a/dev-lua/luaexpat/ChangeLog +++ b/dev-lua/luaexpat/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lua/luaexpat # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/ChangeLog,v 1.1 2010/11/05 20:26:21 rafaelmartins Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lua/luaexpat/ChangeLog,v 1.2 2010/11/05 20:51:36 rafaelmartins Exp $ + + 05 Nov 2010; Rafael G. Martins <rafaelmartins@gentoo.org> + +files/luaexpat-1.1-makefile.patch: + Forgot to commit the files/ directory. 05 Nov 2010; Rafael G. Martins <rafaelmartins@gentoo.org> +luaexpat-1.1.ebuild, +metadata.xml: diff --git a/dev-lua/luaexpat/files/luaexpat-1.1-makefile.patch b/dev-lua/luaexpat/files/luaexpat-1.1-makefile.patch new file mode 100644 index 000000000000..b503a4e032d9 --- /dev/null +++ b/dev-lua/luaexpat/files/luaexpat-1.1-makefile.patch @@ -0,0 +1,19 @@ +--- makefile.old 2006-06-08 20:41:48.000000000 +0000 ++++ makefile 2009-10-26 14:19:08.000000000 +0000 +@@ -18,11 +18,11 @@ + $(CC) -c $(CFLAGS) -o $@ $(COMPAT_DIR)/compat-5.1.c + + install: +- mkdir -p $(LUA_LIBDIR) +- cp src/$(LIBNAME) $(LUA_LIBDIR) +- cd $(LUA_LIBDIR); ln -f -s $(LIBNAME) $T.so +- mkdir -p $(LUA_DIR)/$T +- cp src/$T/lom.lua $(LUA_DIR)/$T ++ mkdir -p $(DESTDIR)$(LUA_LIBDIR) ++ cp src/$(LIBNAME) $(DESTDIR)$(LUA_LIBDIR) ++ cd $(DESTDIR)$(LUA_LIBDIR); ln -f -s $(LIBNAME) $T.so ++ mkdir -p $(DESTDIR)$(LUA_DIR)/$T ++ cp src/$T/lom.lua $(DESTDIR)$(LUA_DIR)/$T + + clean: + rm -f src/$(LIBNAME) $(OBJS) |