]> git.ipfire.org Git - ipfire-3.x.git/blame - lfs/btrfs-progs
btrfs-progs: Add patches to fix some issures.
[ipfire-3.x.git] / lfs / btrfs-progs
CommitLineData
e1191aee
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5# #
6# This program is free software: you can redistribute it and/or modify #
7# it under the terms of the GNU General Public License as published by #
8# the Free Software Foundation, either version 3 of the License, or #
9# (at your option) any later version. #
10# #
11# This program is distributed in the hope that it will be useful, #
12# but WITHOUT ANY WARRANTY; without even the implied warranty of #
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14# GNU General Public License for more details. #
15# #
16# You should have received a copy of the GNU General Public License #
17# along with this program. If not, see <http://www.gnu.org/licenses/>. #
18# #
19###############################################################################
20
21###############################################################################
22# Definitions
23###############################################################################
24
25include Config
26
27PKG_NAME = btrfs-progs
9cdfbc3b 28PKG_VER = 0.19
e1191aee
MT
29PKG_REL = 0
30
31THISAPP = $(PKG_NAME)-$(PKG_VER)
32DL_FILE = $(THISAPP).tar.bz2
33DIR_APP = $(DIR_SRC)/$(THISAPP)
34
35OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
36
37MAINTAINER =
38GROUP = System/Filesystems
49c3ccf8 39CORE = yes
e1191aee
MT
40EXTRA = no
41DEBUG = no
ff1554b5 42BUILD_DEPS =
e1191aee
MT
43DEPS =
44
45URL = http://btrfs.wiki.kernel.org/index.php/Main_Page
46LICENSE = GPLv2
47SHORT_DESC = Userspace programs for btrfs.
48
49define LONG_DESC
50 The btrfs-progs package provides all the userpsace programs needed to create, \
51 check, modify and correct any inconsistencies in the btrfs filesystem.
52endef
53
54###############################################################################
55# Top-level Rules
56###############################################################################
57
5e4d55d8 58objects = $(DL_FILE) \
7d75ca64
SS
59 $(THISAPP)-fix-labels.patch \
60 $(THISAPP)-build-everything.patch \
61 $(THISAPP)-valgrind.patch
62
e1191aee
MT
63
64download: $(objects)
65
66info:
67 $(DO_PKG_INFO)
68
69install: $(OBJECT)
70
1d06923f
MT
71packages: $(PACKAGES)
72
73$(PACKAGES): $(OBJECT)
e1191aee
MT
74 @$(DO_PACKAGE)
75
76$(objects):
77 @$(LOAD)
78
79###############################################################################
80# Installation Details
81###############################################################################
82
83$(OBJECT): $(objects)
84 @$(PREBUILD)
85 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE)
5e4d55d8 86 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/$(THISAPP)-fix-labels.patch
7d75ca64
SS
87 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/$(THISAPP)-build-everything.patch
88 cd $(DIR_APP) && patch -Np1 -i $(DIR_PATCHES)/$(THISAPP)-valgrind.patch
e1191aee 89 cd $(DIR_APP) && make CFLAGS="$(CFLAGS)" $(PARALLELISMFLAGS)
7d75ca64 90 cd $(DIR_APP) && make bindir=/sbin mandir=/usr/share install
e1191aee
MT
91 @rm -rf $(DIR_APP)
92 @$(POSTBUILD)