]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blame - lfs/dbus-glib
Changed name to IPFire-3.0-alpha1 (Lechery).
[people/arne_f/ipfire-3.x.git] / lfs / dbus-glib
CommitLineData
0e844141
MT
1###############################################################################
2# #
3# IPFire.org - A linux based firewall #
e58f1a02 4# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
0e844141
MT
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 = dbus-glib
8985a698
MT
28PKG_VER = 0.78
29PKG_REL = 0
0e844141 30
8985a698 31THISAPP = $(PKG_NAME)-$(PKG_VER)
0e844141
MT
32DL_FILE = $(THISAPP).tar.gz
33DIR_APP = $(DIR_SRC)/$(THISAPP)
34
6679675b 35OBJECT = $(DIR_INFO)/$(STAGE_ORDER)_$(STAGE)/$(THISAPP)
0e844141 36
e58f1a02
MT
37MAINTAINER =
38GROUP = System/Libraries
39EXTRA = no
40DEBUG = no
e1a120a3 41DEPS = dbus glib2 expat
e58f1a02
MT
42
43URL = http://www.freedesktop.org/software/dbus/
44LICENSE = GPLv2+ AFL
45SHORT_DESC = GLib bindings for D-Bus.
46
47define LONG_DESC
48 D-Bus add-on library to integrate the standard D-Bus library with \
49 the GLib thread abstraction and main loop.
db85c6af 50endef
e58f1a02 51
0e844141
MT
52###############################################################################
53# Top-level Rules
54###############################################################################
55
4a82268b 56objects = $(DL_FILE)
0e844141 57
e58f1a02
MT
58download: $(objects)
59
a9c91eaf
MT
60info:
61 $(DO_PKG_INFO)
62
e58f1a02 63install: $(OBJECT)
0e844141 64
e58f1a02
MT
65package:
66 @$(DO_PACKAGE)
0e844141 67
e58f1a02 68$(objects):
0e844141
MT
69 @$(LOAD)
70
71###############################################################################
72# Installation Details
73###############################################################################
74
e58f1a02 75$(OBJECT): $(objects)
0e844141 76 @$(PREBUILD)
e58f1a02 77 @rm -rf $(DIR_APP) && cd $(DIR_SRC) && $(EXTRACTOR) $(DIR_DL)/$(DL_FILE)
e55dc1bb
MT
78 cd $(DIR_APP) && \
79 ./configure \
80 $(CONFIGURE_ARCH) \
f158fcc1 81 --prefix=/usr \
8be6c93b
MT
82 --sysconfdir=/etc \
83 --libexecdir=/usr/lib
0e844141
MT
84 cd $(DIR_APP) && make $(PARALLELISMFLAGS)
85 cd $(DIR_APP) && make install
0e844141
MT
86 @rm -rf $(DIR_APP)
87 @$(POSTBUILD)