Changeset 521

Show
Ignore:
Timestamp:
08/15/06 18:31:23 (2 years ago)
Author:
markus
Message:

- fixed Makefile patch
- renamed binary to be straight forward
- renamed script-files
- renamed etc directory

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/package/Makefile

    r510 r521  
    6262package-$(FWRT_PACKAGE_FRICKIN) += frickin 
    6363package-$(FWRT_COMPILE_FUSE) += fuse 
    64 package-$(FWRT_PACKAGE_GCOM) += comgt 
     64package-$(FWRT_PACKAGE_COMGT) += comgt 
    6565package-$(FWRT_PACKAGE_GDBSERVER) += gdbserver 
    6666package-$(FWRT_COMPILE_GLIB) += glib 
  • trunk/freewrt/package/comgt/Makefile

    r510 r521  
    2323            CC="$(TARGET_CC)" \ 
    2424            CFLAGS="$(TARGET_CFLAGS)" \ 
    25             comgt 
     25            gcom 
    2626        touch $@ 
    2727 
    2828$(IPKG_COMGT): 
    2929        install -d -m0755 $(IDIR_COMGT)/usr/bin 
    30         install -m0755 $(WRKBUILD)/comgt $(IDIR_COMGT)/usr/bin/ 
     30        install -m0755 $(WRKBUILD)/gcom $(IDIR_COMGT)/usr/bin/comgt 
    3131        install -d -m0755 $(IDIR_COMGT)/etc/comgt 
    3232        install -m0644 ./files/setpin.comgt $(IDIR_COMGT)/etc/comgt/setpin.comgt 
  • trunk/freewrt/package/comgt/patches/001-Makefile.patch

    r510 r521  
    1 --- comgt-0.3.x/Makefile        2006-01-04 17:05:28.000000000 +0200 
    2 +++ comgt-0.3/Makefile  2006-02-26 13:02:07.000000000 +0200 
     1diff -Nur comgt.orig/Makefile comgt/Makefile 
     2--- comgt.orig/Makefile 2006-01-04 16:05:28.000000000 +0100 
     3+++ comgt/Makefile      2006-08-15 16:29:41.000000000 +0200 
    34@@ -20,8 +20,6 @@ 
    45 # 
     
    910 EXE    = /usr/local/bin 
    1011 MAN     = /usr/share/man/man1 
    11  CPROG  = comgt 
     12 CPROG  = gcom 
    1213@@ -29,9 +27,6 @@ 
    1314 BIN     = $(CPROG) $(SCRIPT) 
    14  MANP   = comgt.1 sigmon.1 
     15 MANP   = gcom.1 sigmon.1 
    1516  
    1617-CFLAGS  = -c 
     
    2324  
    2425  
    25  comgt: comgt.o 
    26 -       cc comgt.o $(LDFLAGS) -o comgt 
    27 +       $(CC) comgt.o $(LDFLAGS) -o comgt 
     26 gcom: gcom.o 
     27-       cc gcom.o $(LDFLAGS) -o gcom 
     28+       $(CC) gcom.o $(LDFLAGS) -o gcom 
    2829  
    29  comgt.o: comgt.c comgt.h 
    30 -       cc comgt.c $(CFLAGS)  
    31 +       $(CC) -c $(CFLAGS) comgt.c 
     30 gcom.o: gcom.c gcom.h 
     31-       cc gcom.c $(CFLAGS)  
     32+       $(CC) gcom.c -c $(CFLAGS)  
    3233