diff options
author | Stefan Briesenick <sbriesen@gentoo.org> | 2008-10-27 01:58:52 +0000 |
---|---|---|
committer | Stefan Briesenick <sbriesen@gentoo.org> | 2008-10-27 01:58:52 +0000 |
commit | c246151acb4ad0ccd3cf0858001074f40280aa26 (patch) | |
tree | 9dc508571c93366148ae81381d4117df6019f25e /app-mobilephone/yaps/files | |
parent | Use python_need_rebuild. (diff) | |
download | historical-c246151acb4ad0ccd3cf0858001074f40280aa26.tar.gz historical-c246151acb4ad0ccd3cf0858001074f40280aa26.tar.bz2 historical-c246151acb4ad0ccd3cf0858001074f40280aa26.zip |
revision bump to include latest capi enabled yaps.
Package-Manager: portage-2.2_rc12/cvs/Linux 2.6.26-gentoo-r1 i686
Diffstat (limited to 'app-mobilephone/yaps/files')
-rw-r--r-- | app-mobilephone/yaps/files/yaps-0.96-gentoo.diff | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/app-mobilephone/yaps/files/yaps-0.96-gentoo.diff b/app-mobilephone/yaps/files/yaps-0.96-gentoo.diff new file mode 100644 index 000000000000..98f528c30116 --- /dev/null +++ b/app-mobilephone/yaps/files/yaps-0.96-gentoo.diff @@ -0,0 +1,56 @@ +--- Config.orig 2005-06-02 20:28:35.000000000 +0200 ++++ Config 2005-10-16 15:13:32.000000000 +0200 +@@ -24,9 +24,9 @@ + # Name of local configuration file (location is $HOME.) + YAPS_LCFGFILE = .yapsrc + # Directory for installing the binary +-YAPS_BINDIR = /usr/local/bin ++YAPS_BINDIR = /usr/bin + # Directory for optional support files +-YAPS_LIBDIR = /usr/local/lib/yaps ++YAPS_LIBDIR = /usr/lib/yaps + # User/Group/Mode for yaps + YAPS_USER = bin + YAPS_GROUP = uucp +@@ -43,12 +43,12 @@ + ifdef SLANG + LDEFS += -DSCRIPT_SLANG + LLIBS += -lslang +-MATH = True ++#MATH = True + endif + ifdef LUA + LDEFS += -DSCRIPT_LUA +-LLIBS += -llualib -llua +-MATH = True ++LLIBS += `pkg-config --libs lua` ++#MATH = True + endif + ifdef MATH + LLIBS += -lm +--- Makefile.orig 2005-06-02 20:33:27.000000000 +0200 ++++ Makefile 2005-10-16 15:13:32.000000000 +0200 +@@ -33,19 +33,19 @@ + lynx -cfg=/dev/null -nolist -dump $< > $@ + + install: $(DSTFLE) $(CFGFILE) +- if [ ! -d $(YAPS_LIBDIR) ]; then \ +- install -d -m 755 -o $(YAPS_USER) -g $(YAPS_GROUP) $(YAPS_LIBDIR) ; \ ++ if [ ! -d $(DESTDIR)$(YAPS_LIBDIR) ]; then \ ++ install -d -m 755 $(DESTDIR)$(YAPS_LIBDIR) ; \ + fi + @if [ -f contrib/Makefile ]; then \ + $(MAKE) -C contrib install ; \ + fi + + $(DSTFLE): yaps +- install -o $(YAPS_USER) -g $(YAPS_GROUP) -m $(YAPS_MODE) -s yaps $@ ++ install -m $(YAPS_MODE) -s yaps $(DESTDIR)$@ + + $(CFGFILE): yaps.rc + @if [ ! -f $@ ]; then \ +- install -o $(YAPS_RCUSER) -g $(YAPS_RCGROUP) -m $(YAPS_RCMODE) -s yaps.rc $@ ; \ ++ install -m $(YAPS_RCMODE) -s yaps.rc $(DESTDIR)$@ ; \ + fi + + clean: |