[packages] mpdas: remove /usr/local PREFIX

git-svn-id: svn://svn.openwrt.org/openwrt/packages@27709 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
loswillios 2011-07-20 15:13:14 +00:00
parent cdd33e8f14
commit 8ceec3f1de
2 changed files with 14 additions and 7 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=mpdas
PKG_VERSION:=0.3.0
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://50hz.ws/mpdas

View File

@ -1,12 +1,19 @@
--- a/Makefile
+++ b/Makefile
@@ -7,8 +7,8 @@ PREFIX = /usr/local
MANPREFIX = ${PREFIX}/man/man1
CONFIG = $(PREFIX)/etc
Index: mpdas-0.3.0/Makefile
===================================================================
--- mpdas-0.3.0.orig/Makefile 2010-11-22 02:15:12.000000000 +0100
+++ mpdas-0.3.0/Makefile 2011-07-20 16:53:31.000000000 +0200
@@ -3,12 +3,12 @@
CXX ?= g++
OBJ = main.o md5.o utils.o mpd.o audioscrobbler.o cache.o config.o
OUT = mpdas
-PREFIX ?= /usr/local
+PREFIX ?= /
MANPREFIX ?= ${PREFIX}/man/man1
CONFIG ?= $(PREFIX)/etc
-CXXFLAGS += `pkg-config --cflags libmpd libcurl`
-LIBS = `pkg-config --libs libmpd libcurl`
+CXXFLAGS += $(CPPFLAGS) `pkg-config --cflags libmpd libcurl`
+CXXFLAGS += $(CPPFLAGS) `pkg-config --cflags libmpd libcurl`
+LIBS = $(LDFLAGS) `pkg-config --libs libmpd libcurl`
CXXFLAGS += -DCONFDIR="\"$(CONFIG)\"" -DVERSION="\"$(VERSION)\""