]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - lfs/lcdproc
slang: revert parallelized build
[ipfire-2.x.git] / lfs / lcdproc
index 01525a2b3690d74a7175522594e39a1c5bcf2ce2..855cb16a400a8231baf9f5e12712a79f2cd21f8a 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2011  IPFire Team  <info@ipfire.org>                     #
+# Copyright (C) 2007-2018  IPFire Team  <info@ipfire.org>                     #
 #                                                                             #
 # This program is free software: you can redistribute it and/or modify        #
 # it under the terms of the GNU General Public License as published by        #
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 0.5.5
+VER        = 0.5.7
 
 THISAPP    = lcdproc-$(VER)
 DL_FILE    = $(THISAPP).tar.gz
@@ -32,7 +32,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = lcdproc
-PAK_VER    = 1
+PAK_VER    = 2
 
 DEPS       = 
 
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = c92d4529d36eeec6d9d6fd0a4aa3ec82
+$(DL_FILE)_MD5 = 2f8e064233ef1d03e98c0b426595750d
 
 install : $(TARGET)
 
@@ -77,9 +77,30 @@ $(subst %,%_MD5,$(objects)) :
 $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        @$(PREBUILD)
        @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
-       cd $(DIR_APP) && ./configure --enable-libusb --enable-drivers=all --enable-permissive-menu-goto --enable-lcdproc-menus --enable-stat-nfs --enable-stat-smbfs --with-lcdport=13666 --enable-seamless-hbars --prefix=/usr --sysconfdir=/etc
-       cd $(DIR_APP) && make
+       cd $(DIR_APP) && \
+               ./configure \
+                       --prefix=/usr \
+                       --sysconfdir=/etc/lcdproc \
+                       --enable-libusb \
+                       --enable-drivers=all \
+                       --enable-permissive-menu-goto \
+                       --enable-lcdproc-menus \
+                       --enable-stat-nfs \
+                       --enable-stat-smbfs \
+                       --with-lcdport=13666 \
+                       --enable-seamless-hbars
+       cd $(DIR_APP) && make $(MAKETUNING)
        cd $(DIR_APP) && make install
-       install -v -m 644 $(DIR_SRC)/config/backup/includes/lcdproc /var/ipfire/backup/addons/includes/lcdproc
+       -mkdir -pv /etc/lcdproc
+       cp -vf $(DIR_SRC)/config/lcdproc/{LCDd,lcdproc}.conf /etc/lcdproc
+
+       #install initscripts
+       $(call INSTALL_INITSCRIPT,lcdproc)
+
+       ln -sf ../init.d/lcdproc /etc/rc.d/rc3.d/S60lcdproc
+       ln -sf ../init.d/lcdproc /etc/rc.d/rc0.d/K40lcdproc
+       ln -sf ../init.d/lcdproc /etc/rc.d/rc6.d/K40lcdproc
+       install -v -m 644 $(DIR_SRC)/config/backup/includes/lcdproc \
+               /var/ipfire/backup/addons/includes/lcdproc
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)