diff options
author | Frans Meulenbroeks <fransmeulenbroeks@yahoo.com> | 2006-07-02 14:34:20 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-07-02 14:34:20 +0000 |
commit | cb565fed279e35ddd90ef548a637006bca49b1bc (patch) | |
tree | 479247684fd0a98d39888dd612b57bbc57aa3b16 /packages/musicpd/mpd_0.11.5.bb | |
parent | e5508b7530ffdc2023fda0e65e0a026a463e6bad (diff) |
mpd: removed --prefix added a few --with-*-libraries and --with-*-includes
Diffstat (limited to 'packages/musicpd/mpd_0.11.5.bb')
-rw-r--r-- | packages/musicpd/mpd_0.11.5.bb | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/packages/musicpd/mpd_0.11.5.bb b/packages/musicpd/mpd_0.11.5.bb index 0d41cf3e0a..95fe05cf41 100644 --- a/packages/musicpd/mpd_0.11.5.bb +++ b/packages/musicpd/mpd_0.11.5.bb @@ -4,7 +4,7 @@ LICENSE = "GPLv2" MAINTAINER = "Chris Larson <kergoth@handhelds.org>" SECTION = "console/multimedia" DEPENDS = "libvorbis libogg libid3tag libao zlib libmikmod libmad flac audiofile virtual/libiconv" -PR = "r6" +PR = "r7" SRC_URI = "${SOURCEFORGE_MIRROR}/musicpd/mpd-${PV}.tar.gz \ file://save-volume-state.patch;patch=1" @@ -16,8 +16,15 @@ inherit autotools # in staging - remove the --with and replace with --enable to use the local # versions. -EXTRA_OECONF = "--prefix=${D} \ - --enable-ogg \ +EXTRA_OECONF = "--enable-ogg \ + --with-iconv-libraries=${STAGING_LIBDIR} \ + --with-iconv-includes=${STAGING_INCDIR} \ + --with-vorbis-libraries=${STAGING_LIBDIR} \ + --with-vorbis-includes=${STAGING_INCDIR} \ + --with-ogg-libraries=${STAGING_LIBDIR} \ + --with-ogg-includes=${STAGING_INCDIR} \ + --with-ao-libraries=${STAGING_LIBDIR} \ + --with-ao-includes=${STAGING_INCDIR} \ --with-id3tag-libraries=${STAGING_LIBDIR} \ --with-id3tag-includes=${STAGING_INCDIR} \ --with-mad-libraries=${STAGING_LIBDIR} \ |