diff options
author | bapt <bapt@FreeBSD.org> | 2013-11-13 16:21:53 +0800 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-11-13 16:21:53 +0800 |
commit | 941e35da37c00550646dd050855c70a50bc6395f (patch) | |
tree | a60aba3bb7a5ebe6e375ec20fe83fffbd0ce0ead | |
parent | 804b9aba0addcc62c09a2d0e616fd2880a6e973e (diff) | |
download | freebsd-ports-gnome-941e35da37c00550646dd050855c70a50bc6395f.tar.gz freebsd-ports-gnome-941e35da37c00550646dd050855c70a50bc6395f.tar.zst freebsd-ports-gnome-941e35da37c00550646dd050855c70a50bc6395f.zip |
Mark as broken:
recache.c: In function 'resamp_cache_fetch':
recache.c:108: warning: cast from pointer to integer of different size
recache.c: In function 'resamp_cache_refer_on':
recache.c:134: warning: cast from pointer to integer of different size
readmidi.c: In function 'url_make_file_data':
readmidi.c:4797: error: 'DeflateHandler' undeclared (first use in this function)
readmidi.c:4797: error: (Each undeclared identifier is reported only once
readmidi.c:4797: error: for each function it appears in.)
readmidi.c:4797: error: expected ';' before 'compressor'
readmidi.c:4802: error: 'compressor' undeclared (first use in this function)
While here convert toUSES=webplugin, stageify
-rw-r--r-- | www/ump/Makefile | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/www/ump/Makefile b/www/ump/Makefile index 41eae96bc9ac..48ae756a7bc8 100644 --- a/www/ump/Makefile +++ b/www/ump/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 1.10 PORTREVISION= 12 CATEGORIES= www MASTER_SITES= SF/timidity/TiMidity%2B%2B/TiMidity%2B%2B-${TIMIDITY_VERSION}:timidity \ - http://pubweb.bnl.gov/people/hoff/midi/1.10/:ump \ + https://pubweb.bnl.gov/~hoff/midi/1.10/:ump \ ftp://ftp.fu-berlin.de/unix/network/www/netscape/sdk/plugin/unix/:plugin \ ftp://ftp.fh-wolfenbuettel.de/pub/www/netscape/sdk/plugin/unix/:plugin DISTFILES= ${BZ2DIST} ${ZDIST} @@ -18,22 +18,24 @@ PATCHFILES= ump-patch-1.gz ump-patch-2.gz ump-patch-3.gz ump-patch-4.gz MAINTAINER= llwang@infor.org COMMENT= Unix MIDI Plugin based on TiMidity++ -LIB_DEPENDS= arc:${PORTSDIR}/archivers/libarc +LIB_DEPENDS= libarc.so:${PORTSDIR}/archivers/libarc RUN_DEPENDS= ${LOCALBASE}/share/timidity/timidity.cfg:${PORTSDIR}/audio/eawpats LATEST_LINK= UNIXMidiPlugin CONFLICTS= ump-0.8.[0-9]* +BROKEN= Does not build + BZ2DIST= TiMidity++-${TIMIDITY_VERSION}.tar.bz2:timidity ZDIST= unix-sdk-3.0b5.tar.Z:plugin ump_with_volume.tar.Z:ump timdiffs.tar.Z:ump TIMIDITY_VERSION= 2.13.2 +USES= gmake webplugin:native USE_BZIP2= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-ump --with-default-path=${LOCALBASE}/share/timidity LDFLAGS+= -export-dynamic -USE_GMAKE= yes USE_XORG= xpm xmu WANT_GNOME= yes # CONFIGURE_ARGS+= --enable-motif @@ -45,15 +47,12 @@ EXTRACT_AFTER_ARGS= --exclude '*/libarc/*' \ --exclude '*/utils/mblock.h' --exclude '*/utils/memb.h' ALL_TARGET= ump -USE_WEBPLUGINS= native -WEBPLUGINS_FILES=ump.so +WEBPLUGIN_FILES=ump.so # USE_MOTIF= yes # CONFIGURE_ENV= MOTIFLIB="${MOTIFLIB}" -NO_STAGE= yes .include <bsd.port.pre.mk> -.include "${PORTSDIR}/www/firefox/Makefile.webplugins" .if ${HAVE_GNOME:Mesound}!="" USE_GNOME= esound @@ -80,7 +79,7 @@ post-configure: @cd ${WRKSRC}; ${SETENV} CONFIG_HEADERS='' CONFIG_FILES=ump/Makefile ${SH} ./config.status do-install: - ${MKDIR} ${WEBPLUGINS_DIR} - ${INSTALL_DATA} ${WRKSRC}/ump/ump.so ${WEBPLUGINS_DIR} + ${MKDIR} ${STAGEDIR}${WEBPLUGIN_DIR} + ${INSTALL_DATA} ${WRKSRC}/ump/ump.so ${STAGEDIR}${WEBPLUGINS_DIR} .include <bsd.port.post.mk> |