mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-10 02:55:55 +02:00
libsigc++: remove rtorrent dependency.
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -1,48 +0,0 @@
|
||||
#usr/include/torrent
|
||||
#usr/include/torrent/bitfield.h
|
||||
#usr/include/torrent/chunk_manager.h
|
||||
#usr/include/torrent/common.h
|
||||
#usr/include/torrent/connection_manager.h
|
||||
#usr/include/torrent/data
|
||||
#usr/include/torrent/data/block.h
|
||||
#usr/include/torrent/data/block_list.h
|
||||
#usr/include/torrent/data/block_transfer.h
|
||||
#usr/include/torrent/data/file.h
|
||||
#usr/include/torrent/data/file_list.h
|
||||
#usr/include/torrent/data/file_list_iterator.h
|
||||
#usr/include/torrent/data/file_manager.h
|
||||
#usr/include/torrent/data/file_utils.h
|
||||
#usr/include/torrent/data/piece.h
|
||||
#usr/include/torrent/data/transfer_list.h
|
||||
#usr/include/torrent/download.h
|
||||
#usr/include/torrent/error.h
|
||||
#usr/include/torrent/event.h
|
||||
#usr/include/torrent/exceptions.h
|
||||
#usr/include/torrent/hash_string.h
|
||||
#usr/include/torrent/http.h
|
||||
#usr/include/torrent/object.h
|
||||
#usr/include/torrent/object_stream.h
|
||||
#usr/include/torrent/path.h
|
||||
#usr/include/torrent/peer
|
||||
#usr/include/torrent/peer/client_info.h
|
||||
#usr/include/torrent/peer/client_list.h
|
||||
#usr/include/torrent/peer/peer.h
|
||||
#usr/include/torrent/peer/peer_info.h
|
||||
#usr/include/torrent/peer/peer_list.h
|
||||
#usr/include/torrent/poll.h
|
||||
#usr/include/torrent/poll_epoll.h
|
||||
#usr/include/torrent/poll_kqueue.h
|
||||
#usr/include/torrent/poll_select.h
|
||||
#usr/include/torrent/rate.h
|
||||
#usr/include/torrent/resume.h
|
||||
#usr/include/torrent/torrent.h
|
||||
#usr/include/torrent/tracker.h
|
||||
#usr/include/torrent/tracker_list.h
|
||||
#usr/lib/libtorrent.la
|
||||
#usr/lib/libtorrent.so
|
||||
#usr/lib/libtorrent.so.11
|
||||
#usr/lib/libtorrent.so.11.0.6
|
||||
#usr/lib/pkgconfig/libtorrent.pc
|
||||
#usr/include/torrent/dht_manager.h
|
||||
#usr/include/torrent/peer/connection_list.h
|
||||
#usr/include/torrent/throttle.h
|
||||
@@ -1,78 +0,0 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2007 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/>. #
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
# Definitions
|
||||
###############################################################################
|
||||
|
||||
include Config
|
||||
|
||||
VER = 2.0.18
|
||||
|
||||
THISAPP = libsigc++-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = ddebf5aafc8525d10366a8724abc9f28
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
###############################################################################
|
||||
# Downloading, checking, md5sum
|
||||
###############################################################################
|
||||
|
||||
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
||||
@$(CHECK)
|
||||
|
||||
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
||||
@$(LOAD)
|
||||
|
||||
$(subst %,%_MD5,$(objects)) :
|
||||
@$(MD5)
|
||||
|
||||
###############################################################################
|
||||
# Installation Details
|
||||
###############################################################################
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/libsigc++-gcc43.patch
|
||||
cd $(DIR_APP) && ./configure --prefix=/usr
|
||||
cd $(DIR_APP) && make $(MAKETUNING)
|
||||
cd $(DIR_APP) && make install
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
Reference in New Issue
Block a user