diff options
author | beech <beech@FreeBSD.org> | 2008-12-13 13:33:05 +0800 |
---|---|---|
committer | beech <beech@FreeBSD.org> | 2008-12-13 13:33:05 +0800 |
commit | 631dc6764e72aafe500cf9dee0b0364dc19bcf90 (patch) | |
tree | dacfb3c9111f0ef2c6bcefb664b95d89e6f2a43a /www | |
parent | 91e82fa0bebe205a578e2c2a3f3f0c0ac801beb5 (diff) | |
download | freebsd-ports-gnome-631dc6764e72aafe500cf9dee0b0364dc19bcf90.tar.gz freebsd-ports-gnome-631dc6764e72aafe500cf9dee0b0364dc19bcf90.tar.zst freebsd-ports-gnome-631dc6764e72aafe500cf9dee0b0364dc19bcf90.zip |
- Fix install with linux_base-f[6-8]
PR: ports/129516
Submitted by: Katsuyuki Miyoshi <katsu@miyoshi.matsuyama.ehime.jp>
Diffstat (limited to 'www')
-rw-r--r-- | www/linux-mplayer-plugin/Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/www/linux-mplayer-plugin/Makefile b/www/linux-mplayer-plugin/Makefile index b19f7398cb80..bd7c42463ba5 100644 --- a/www/linux-mplayer-plugin/Makefile +++ b/www/linux-mplayer-plugin/Makefile @@ -8,12 +8,11 @@ PORTNAME= mplayerplug-in PORTVERSION= 3.50 DISTVERSIONSUFFIX= -1.rh9.rf -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www multimedia MASTER_SITES= CENKES http://apt.sw.be/packages/mplayerplug-in/ \ ftp://fr2.rpmfind.net/linux/dag/redhat/9/en/i386/dag/RPMS/ PKGNAMEPREFIX= linux- -SRC_DISTFILES= MAINTAINER= ports@FreeBSD.org COMMENT= Embed MPlayer into browser @@ -21,8 +20,13 @@ COMMENT= Embed MPlayer into browser RUN_DEPENDS= mplayer:${PORTSDIR}/multimedia/mplayer \ ${LINUXBASE}/usr/lib/libgtk-x11-2.0.so.0:${PORTSDIR}/x11-toolkits/linux-gtk2 \ ${LINUXBASE}/usr/lib/libatk-1.0.so.0:${PORTSDIR}/accessibility/linux-atk \ - ${LINUXBASE}/usr/lib/libpangoxft-1.0.so.0:${PORTSDIR}/x11-toolkits/linux-pango\ - ${LINUXBASE}/usr/lib/libgobject-2.0.so.0:${PORTSDIR}/devel/linux-glib2 + ${LINUXBASE}/usr/lib/libpangoxft-1.0.so.0:${PORTSDIR}/x11-toolkits/linux-pango +.if !defined(OVERRIDE_LINUX_BASE_PORT) || \ + (${OVERRIDE_LINUX_BASE_PORT} != "fc6" && \ + ${OVERRIDE_LINUX_BASE_PORT} != "f7" && \ + ${OVERRIDE_LINUX_BASE_PORT} != "f8") +RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libgobject-2.0.so.0:${PORTSDIR}/devel/linux-glib2 +.endif NO_BUILD= yes USE_LINUX_RPM= yes @@ -30,6 +34,7 @@ USE_XLIB= yes LINUX_DIST= fedora LINUX_DIST_VER= 4 PREFIX?= ${LOCALBASE} +SRC_DISTFILES= USE_NPAPI= linux NPAPI_WRKSRC= ${WRKDIR}/usr/lib/mozilla/plugins |