massive Makefile cleanup, add missing 'svn:keywords' property

git-svn-id: svn://svn.openwrt.org/openwrt/packages@5348 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico
2006-10-30 13:51:50 +00:00
parent d6c03f5259
commit 5cb332fb35
139 changed files with 1341 additions and 1322 deletions

View File

@ -1,3 +1,4 @@
#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
@ -10,11 +11,11 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=madplay
PKG_VERSION:=0.15.2b
PKG_RELEASE:=1
PKG_MD5SUM:=6814b47ceaa99880c754c5195aa1aac1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/mad \
ftp://ftp.mars.org/pub/mpeg/
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_MD5SUM:=6814b47ceaa99880c754c5195aa1aac1
PKG_CAT:=zcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
@ -27,10 +28,11 @@ define Package/madplay
CATEGORY:=Sound
DEPENDS:=+libid3tag +libmad
TITLE:=MPEG audio player in fixed point
DESCRIPTION:=MAD is an MPEG audio decoder. It currently only supports the MPEG 1\\\
standard, but fully implements all three audio layers (Layer I, Layer II,\\\
and Layer III, the latter often colloquially known as MP3.). There is also\\\
full support for ID3 tags.\\\
DESCRIPTION:=\
MAD is an MPEG audio decoder. It currently only supports the MPEG 1 \\\
standard, but fully implements all three audio layers (Layer I, Layer II, \\\
and Layer III, the latter often colloquially known as MP3.). There is also \\\
full support for ID3 tags.
URL:=http://sourceforge.net/projects/mad
endef
@ -38,29 +40,27 @@ define Build/Configure
$(call Build/Configure/Default, \
--enable-shared \
--disable-static \
--with-gnu-ld \
--disable-rpath \
--disable-debugging \
--disable-profiling \
--disable-experimental \
--without-libiconv-prefix \
--without-libintl-prefix \
--without-alsa \
--without-esd,LIBS="-lz" \
--without-esd \
, \
LIBS="-lz" \
)
endef
define Build/Compile
rm -rf $(PKG_INSTALL_DIR)
mkdir -p $(PKG_INSTALL_DIR)
$(MAKE) -C $(PKG_BUILD_DIR) \
DESTDIR="$(PKG_INSTALL_DIR)" \
all install
endef
define Package/madplay/install
install -m0755 -d $(1)/usr/bin
install -m0755 $(PKG_INSTALL_DIR)/usr/bin/madplay $(1)/usr/bin/
install -d -m0755 $(1)/usr/bin
$(CP) $(PKG_INSTALL_DIR)/usr/bin/madplay $(1)/usr/bin/
endef
$(eval $(call BuildPackage,madplay))

View File

@ -11,10 +11,10 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=mt-daapd
PKG_VERSION:=0.2.4
PKG_RELEASE:=1
PKG_MD5SUM:=2e1cdbe6b94ef153e915806f80a28dca
PKG_SOURCE_URL:=@SF/mt-daapd
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/mt-daapd
PKG_MD5SUM:=2e1cdbe6b94ef153e915806f80a28dca
PKG_CAT:=zcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
@ -27,7 +27,8 @@ define Package/mt-daapd
CATEGORY:=Sound
DEPENDS:=+libgdbm +libhowl +libid3tag
TITLE:=A multi-threaded DAAP (Digital Audio Access Protocol) daemon
DESCRIPTION:=mt-daapd is a program which acts as an iTunes (DAAP) server for Linux.
DESCRIPTION:=\
mt-daapd is a program which acts as an iTunes (DAAP) server for Linux.
URL:=http://www.mt-daapd.org
endef
@ -38,8 +39,6 @@ endef
define Build/Configure
$(call Build/Configure/Default, \
--enable-shared \
--disable-static \
--enable-mdns \
--enable-howl \
--with-id3tag="$(STAGING_DIR)/usr" \
@ -52,23 +51,21 @@ define Build/Configure
endef
define Build/Compile
rm -rf $(PKG_INSTALL_DIR)
mkdir -p $(PKG_INSTALL_DIR)
$(MAKE) -C $(PKG_BUILD_DIR) \
DESTDIR="$(PKG_INSTALL_DIR)" \
all install
endef
define Package/mt-daapd/install
install -m0755 -d $(1)/etc
install -d -m0755 $(1)/etc
install -m0644 $(PKG_BUILD_DIR)/contrib/mt-daapd.conf $(1)/etc/
install -m0644 $(PKG_BUILD_DIR)/contrib/mt-daapd.playlist $(1)/etc/
install -m0755 -d $(1)/etc/init.d
install -m0755 ./files/mt-daapd.init $(1)/etc/init.d/mt-daapd
install -m0755 -d $(1)/usr/share
install -d -m0755 $(1)/usr/share
$(CP) $(PKG_INSTALL_DIR)/usr/share/mt-daapd $(1)/usr/share/
install -m0755 -d $(1)/usr/sbin
install -d -m0755 $(1)/usr/sbin
$(CP) $(PKG_INSTALL_DIR)/usr/sbin/mt-daapd $(1)/usr/sbin/
install -d -m0755 $(1)/etc/init.d
install -m0755 ./files/mt-daapd.init $(1)/etc/init.d/mt-daapd
endef
$(eval $(call BuildPackage,mt-daapd))