]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blobdiff - pkgs/br2684ctl/br2684ctl.nm
Change file layout of the makefiles.
[people/amarx/ipfire-3.x.git] / pkgs / br2684ctl / br2684ctl.nm
index 3888d4d1efc82fe5bc1d10c2b91a222b5a99edbc..556f94ce9395bcfad2555d218f08fe94bbca167f 100644 (file)
@@ -1,60 +1,47 @@
 ###############################################################################
-#                                                                             #
-# IPFire.org - A linux based firewall                                         #
-# 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        #
-# the Free Software Foundation, either version 3 of the License, or           #
-# (at your option) any later version.                                         #
-#                                                                             #
-# This program is distributed in the hope that it will be useful,             #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
-# GNU General Public License for more details.                                #
-#                                                                             #
-# You should have received a copy of the GNU General Public License           #
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
-#                                                                             #
+# IPFire.org    - An Open Source Firewall Solution                            #
+# Copyright (C) - IPFire Development Team <info@ipfire.org>                   #
 ###############################################################################
 
-###############################################################################
-# Definitions
-###############################################################################
-
-include $(PKGROOT)/Include
-
-PKG_NAME       = br2684ctl
-PKG_VER        = ipfire-1
-PKG_REL        = 0
-
-PKG_MAINTAINER =
-PKG_GROUPS     = Networking/Tools
-PKG_URL        = http://cvs.linux-atm.sourceforge.net/viewcvs.py/linux-atm/linux-atm/src/br2684/Attic/br2684ctl.8?rev=1.1.2.1&hideattic=0&only_with_tag=V2_5_0
-PKG_LICENSE    = GPLv2+
-PKG_SUMMARY    = Utilities for configuring an ATM/ethernet bridge.
+name       = br2684ctl
+version    = ipfire-1
+release    = 1
+
+groups     = Networking/Tools
+url        = http://cvs.linux-atm.sourceforge.net/viewcvs.py/linux-atm/linux-atm/src/br2684/Attic/br2684ctl.8?rev=1.1.2.1&hideattic=0&only_with_tag=V2_5_0
+license    = GPLv2+
+summary    = Utilities for configuring an ATM/ethernet bridge.
+
+description
+       Utility for configuring RFC 2684 ATM/Ethernet bridging
+       ATM bridging is a way to extend Ethernet over an ATM network and is
+       mainly used for DSL connections. This package contains the user space
+       utility needed to configure the kernel driver.
+       This package is needed if you own an USB DSL modem and your connection
+       uses one of these protocols: RFC 1483 bridged (RFC 2684 bridged),
+       PPP over Ethernet (PPPoE).
+end
 
-PKG_BUILD_DEPS+= linux-atm-devel
+sources    = %{thisapp}.tar.bz2
 
-define PKG_DESCRIPTION
-       Utility for configuring RFC 2684 ATM/Ethernet bridging \
-       ATM bridging is a way to extend Ethernet over an ATM network and is \
-       mainly used for DSL connections. This package contains the user space \
-       utility needed to configure the kernel driver. \
-       This package is needed if you own an USB DSL modem and your connection \
-       uses one of these protocols: RFC 1483 bridged (RFC 2684 bridged), \
-       PPP over Ethernet (PPPoE).
-endef
+build
+       requires
+               linux-atm-devel
+       end
 
-PKG_TARBALL    = $(THISAPP).tar.bz2
+       DIR_APP = %{DIR_SRC}/br2684ctl
 
-DIR_APP        = $(DIR_SRC)/br2684ctl
+       build
+               gcc %{CFLAGS} -latm br2684ctl.c -o br2684ctl
+       end
 
-define STAGE_BUILD
-       cd $(DIR_APP) && gcc $(CFLAGS) -latm br2684ctl.c -o br2684ctl
-endef
+       install
+               mkdir -pv %{BUILDROOT}/usr/bin
+               install -v -m 755 br2684ctl %{BUILDROOT}/usr/bin/br2684ctl
+       end
+end
 
-define STAGE_INSTALL
-       -mkdir -pv $(BUILDROOT)/usr/bin
-       cd $(DIR_APP) && install -v -m 755 br2684ctl $(BUILDROOT)/usr/bin/br2684ctl
-endef
+packages
+       package %{name}
+       end
+end