source: freewrt/package/comgt/Makefile@ b0b7ad7

freewrt_1_0 freewrt_2_0
Last change on this file since b0b7ad7 was b0b7ad7, checked in by Markus Wigge <markus@…>, 19 years ago
  • changed UMTS ppp config to use comgt for dialing, thus chat has no longer to be installed.
  • removed the chatscript template stuff
  • removed some custom comgt scripts as the functionality is builtin now
  • added comgt_h patch to fix a typo in a builtin script

git-svn-id: svn://www.freewrt.org/branches/freewrt_1_0@1269 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 1.0 KB
Line 
1# $FreeWRT$
2#-
3# This file is part of the FreeWRT project. FreeWRT is copyrighted
4# material, please see the LICENCE file in the top-level directory
5# or at http://www.freewrt.org/licence for details.
6
7include $(TOPDIR)/rules.mk
8
9PKG_NAME:= comgt
10PKG_VERSION:= 0.32
11PKG_RELEASE:= 1
12PKG_MD5SUM:= db2452680c3d953631299e331daf49ef
13
14PKG_SOURCE_URL:= @SF/comgt
15PKG_SOURCE:= $(PKG_NAME).$(PKG_VERSION).tgz
16
17WRKSRC= ${WRKDIR}/${PKG_NAME}.${PKG_VERSION}
18
19include $(TOPDIR)/mk/package.mk
20
21$(eval $(call PKG_template,COMGT,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
22
23$(WRKBUILD)/.configured:
24 touch $@
25
26$(WRKBUILD)/.built:
27 $(MAKE) -C $(WRKBUILD) \
28 CC="$(TARGET_CC)" \
29 CFLAGS="$(TARGET_CFLAGS)" \
30 comgt
31 touch $@
32
33$(IPKG_COMGT):
34 install -d -m0755 $(IDIR_COMGT)/usr/bin
35 install -m0755 $(WRKBUILD)/comgt $(IDIR_COMGT)/usr/bin/comgt
36 install -d -m0755 $(IDIR_COMGT)/etc/comgt
37 install -m0644 ./files/dial.comgt $(IDIR_COMGT)/etc/comgt/dial.comgt
38 $(RSTRIP) $(IDIR_COMGT)
39 $(IPKG_BUILD) $(IDIR_COMGT) $(PACKAGE_DIR)
Note: See TracBrowser for help on using the repository browser.