]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
Converted lfs/autoconf to new LFS format.
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 23 Oct 2008 18:35:21 +0000 (20:35 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 23 Oct 2008 18:35:21 +0000 (20:35 +0200)
lfs/autoconf

index 1997e6ab0150ae2619d35857c927565b58996e54..e61e965cb03a7c092d5a35a8bdb756625fec6349 100644 (file)
@@ -1,7 +1,7 @@
 ###############################################################################
 #                                                                             #
 # IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007  Michael Tremer & Christian Schmidt                      #
+# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt                 #
 #                                                                             #
 # 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        #
@@ -26,6 +26,7 @@ include Config
 
 PKG_NAME   = autoconf
 VER        = 2.62
+PKG_VER    = 0
 
 THISAPP    = $(PKG_NAME)-$(VER)
 DL_FILE    = $(THISAPP).tar.bz2
@@ -33,28 +34,48 @@ DIR_APP    = $(DIR_SRC)/$(THISAPP)
 
 TARGET     = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
 
+MAINTAINER =
+GROUP      = Development/Tools
+EXTRA      = no
+DEBUG      = no
+DEPS       =
+
+URL        = http://www.gnu.org/software/autoconf/
+LICENSE    = GPLv2+
+SHORT_DESC = A GNU tool for automatically configuring source code
+
+define LONG_DESC
+       GNU's Autoconf is a tool for configuring source code and Makefiles. \
+       Using Autoconf, programmers can create portable and configurable \
+       packages, since the person building the package is allowed to \
+       specify various configuration options.
+endef
+
 ###############################################################################
 # Top-level Rules
 ###############################################################################
 
 objects = $(DL_FILE)
 
-install : $(TARGET)
+download: $(objects)
+
+install: $(TARGET)
 
-download : $(objects)
+package:
+       @$(DO_PACKAGE)
 
-$(objects) :
+$(objects):
        @$(LOAD)
 
 ###############################################################################
 # Installation Details
 ###############################################################################
 
-$(TARGET) : 
+$(TARGET): $(objects)
        @$(PREBUILD)
-       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
+       @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE)
        cd $(DIR_APP) && ./configure --prefix=/usr
-       cd $(DIR_APP) && make $(PARALLELISMFLAGS)
+       cd $(DIR_APP) && make #$(PARALLELISMFLAGS)
        cd $(DIR_APP) && make install
        @rm -rf $(DIR_APP)
        @$(POSTBUILD)