]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blobdiff - pkgs/python-setuptools/python-setuptools.nm
Change file layout of the makefiles.
[people/arne_f/ipfire-3.x.git] / pkgs / python-setuptools / python-setuptools.nm
index 3d438fc5b8db6ff8bf458f96c68ce1671d97a0d5..ad076790ec39ad89d2694a64dbc8446a152d2951 100644 (file)
@@ -1,64 +1,50 @@
 ###############################################################################
-#                                                                             #
-# 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       = setuptools
-PKG_VER        = 0.6c9
-PKG_REL        = 1
-PKG_ARCH       = noarch
-
-PKG_MAINTAINER = Michael Tremer <michael.tremer@ipfire.org>
-PKG_GROUPS     = Development/Libraries
-PKG_URL        = http://pypi.python.org/pypi/setuptools
-PKG_LICENSE    = Python or ZPLv2.0
-PKG_SUMMARY    = Easily build and distribute Python packages.
+name       = python-setuptools
+version    = 0.6c9
+release    = 1
+arch       = noarch
+thisapp    = setuptools-%{version}
+
+maintainer = Michael Tremer <michael.tremer@ipfire.org>
+groups     = Development/Libraries
+url        = http://pypi.python.org/pypi/setuptools
+license    = Python or ZPLv2.0
+summary    = Easily build and distribute Python packages.
+
+description
+       Setuptools is a collection of enhancements to the Python distutils
+       that allow you to more easily build and distribute Python packages,
+       especially ones that have dependencies on other packages.
+end
 
-PKG_BUILD_DEPS+= python-devel
+source_dl  =
 
-define PKG_DESCRIPTION
-       Setuptools is a collection of enhancements to the Python distutils \
-       that allow you to more easily build and distribute Python packages, \
-       especially ones that have dependencies on other packages.
-endef
+build
+       requires
+               python-devel
+       end
 
-PKG_TARBALL    = $(THISAPP).tar.gz
+       prepare_cmds
+               # Scripts seem to have a wrong hashbang
+               find . -name "*.py" | xargs sed -i "1s@^#!python@#!/usr/bin/python@"
+       end
 
-define STAGE_PREPARE_CMDS
-       # Scripts seem to have a wrong hashbang
-       cd $(DIR_APP) && find . -name "*.py" | xargs sed -i "1s@^#!python@#!/usr/bin/python@"
-endef
+       build
+               CFLAGS="%{CFLAGS}" python setup.py build
+       end
 
-define STAGE_BUILD
-       cd $(DIR_APP) && CFLAGS="$(CFLAGS)" python setup.py build
-endef
+       install
+               python setup.py install --skip-build --root=%{BUILDROOT}
 
-define STAGE_INSTALL   
-       cd $(DIR_APP) && python setup.py install --skip-build --root=$(BUILDROOT)
-endef
+               # XXX %{PYTHON_EXTRACT_EGG} /usr/lib/python*/site-packages/%{name}*.egg
+               rm -vf %{BUILDROOT}/usr/lib/python*/site-packages/setuptools/*.exe
+       end
+end
 
-define STAGE_INSTALL_CMDS
-       # XXX $(PYTHON_EXTRACT_EGG) /usr/lib/python*/site-packages/$(PKG_NAME)*.egg     
-       rm -vf $(BUILDROOT)/usr/lib/python*/site-packages/setuptools/*.exe
-endef
+packages
+       package %{name}
+end