From owner-freebsd-multimedia@FreeBSD.ORG Sun May 5 19:10:03 2013 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 68C14FB1 for ; Sun, 5 May 2013 19:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 4AE8DA13 for ; Sun, 5 May 2013 19:10:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r45JA3FM032527 for ; Sun, 5 May 2013 19:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r45JA3kr032526; Sun, 5 May 2013 19:10:03 GMT (envelope-from gnats) Date: Sun, 5 May 2013 19:10:03 GMT Message-Id: <201305051910.r45JA3kr032526@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: kern/152378: commit references a PR X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 May 2013 19:10:03 -0000 The following reply was made to PR kern/152378; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: kern/152378: commit references a PR Date: Sun, 5 May 2013 19:09:47 +0000 (UTC) Author: mav Date: Sun May 5 19:09:34 2013 New Revision: 250286 URL: http://svnweb.freebsd.org/changeset/base/250286 Log: Some fixes to snd_envy24ht(4) driver: - Allow DMA addresses anywhere in the lower 4GB; Envy24HT has a 32-bit DMA engine, not 28-bit like Envy24. - Mark interrupt handler as MPSAFE, seems to be correctly synchronized. PR: kern/152378 Submitted by: Jason Harmening MFC after: 1 month Modified: head/sys/dev/sound/pci/envy24ht.c head/sys/dev/sound/pci/envy24ht.h Modified: head/sys/dev/sound/pci/envy24ht.c ============================================================================== --- head/sys/dev/sound/pci/envy24ht.c Sun May 5 18:54:25 2013 (r250285) +++ head/sys/dev/sound/pci/envy24ht.c Sun May 5 19:09:34 2013 (r250286) @@ -2080,7 +2080,7 @@ envy24ht_pci_probe(device_t dev) static void envy24ht_dmapsetmap(void *arg, bus_dma_segment_t *segs, int nseg, int error) { - /* struct sc_info *sc = (struct sc_info *)arg; */ + struct sc_info *sc = arg; #if(0) device_printf(sc->dev, "envy24ht_dmapsetmap()\n"); @@ -2088,15 +2088,16 @@ envy24ht_dmapsetmap(void *arg, bus_dma_s printf("envy24ht(play): setmap %lx, %lx; ", (unsigned long)segs->ds_addr, (unsigned long)segs->ds_len); - printf("%p -> %lx\n", sc->pmap, (unsigned long)vtophys(sc->pmap)); } #endif + envy24ht_wrmt(sc, ENVY24HT_MT_PADDR, (uint32_t)segs->ds_addr, 4); + envy24ht_wrmt(sc, ENVY24HT_MT_PCNT, (uint32_t)(segs->ds_len / 4 - 1), 2); } static void envy24ht_dmarsetmap(void *arg, bus_dma_segment_t *segs, int nseg, int error) { - /* struct sc_info *sc = (struct sc_info *)arg; */ + struct sc_info *sc = arg; #if(0) device_printf(sc->dev, "envy24ht_dmarsetmap()\n"); @@ -2104,9 +2105,10 @@ envy24ht_dmarsetmap(void *arg, bus_dma_s printf("envy24ht(record): setmap %lx, %lx; ", (unsigned long)segs->ds_addr, (unsigned long)segs->ds_len); - printf("%p -> %lx\n", sc->rmap, (unsigned long)vtophys(sc->pmap)); } #endif + envy24ht_wrmt(sc, ENVY24HT_MT_RADDR, (uint32_t)segs->ds_addr, 4); + envy24ht_wrmt(sc, ENVY24HT_MT_RCNT, (uint32_t)(segs->ds_len / 4 - 1), 2); } static void @@ -2149,7 +2151,6 @@ envy24ht_dmafree(struct sc_info *sc) static int envy24ht_dmainit(struct sc_info *sc) { - u_int32_t addr; #if(0) device_printf(sc->dev, "envy24ht_dmainit()\n"); @@ -2176,34 +2177,16 @@ envy24ht_dmainit(struct sc_info *sc) #if(0) device_printf(sc->dev, "envy24ht_dmainit(): bus_dmamem_load(): sc->pmap\n"); #endif - if (bus_dmamap_load(sc->dmat, sc->pmap, sc->pbuf, sc->psize, envy24ht_dmapsetmap, sc, 0)) + if (bus_dmamap_load(sc->dmat, sc->pmap, sc->pbuf, sc->psize, envy24ht_dmapsetmap, sc, BUS_DMA_NOWAIT)) goto bad; #if(0) device_printf(sc->dev, "envy24ht_dmainit(): bus_dmamem_load(): sc->rmap\n"); #endif - if (bus_dmamap_load(sc->dmat, sc->rmap, sc->rbuf, sc->rsize, envy24ht_dmarsetmap, sc, 0)) + if (bus_dmamap_load(sc->dmat, sc->rmap, sc->rbuf, sc->rsize, envy24ht_dmarsetmap, sc, BUS_DMA_NOWAIT)) goto bad; bzero(sc->pbuf, sc->psize); bzero(sc->rbuf, sc->rsize); - /* set values to register */ - addr = vtophys(sc->pbuf); -#if(0) - device_printf(sc->dev, "pbuf(0x%08x)\n", addr); -#endif - envy24ht_wrmt(sc, ENVY24HT_MT_PADDR, addr, 4); -#if(0) - device_printf(sc->dev, "PADDR-->(0x%08x)\n", envy24ht_rdmt(sc, ENVY24HT_MT_PADDR, 4)); - device_printf(sc->dev, "psize(%ld)\n", sc->psize / 4 - 1); -#endif - envy24ht_wrmt(sc, ENVY24HT_MT_PCNT, sc->psize / 4 - 1, 2); -#if(0) - device_printf(sc->dev, "PCNT-->(%ld)\n", envy24ht_rdmt(sc, ENVY24HT_MT_PCNT, 2)); -#endif - addr = vtophys(sc->rbuf); - envy24ht_wrmt(sc, ENVY24HT_MT_RADDR, addr, 4); - envy24ht_wrmt(sc, ENVY24HT_MT_RCNT, sc->rsize / 4 - 1, 2); - return 0; bad: envy24ht_dmafree(sc); @@ -2441,7 +2424,7 @@ envy24ht_alloc_resource(struct sc_info * sc->irq = bus_alloc_resource(sc->dev, SYS_RES_IRQ, &sc->irqid, 0, ~0, 1, RF_ACTIVE | RF_SHAREABLE); if (!sc->irq || - snd_setup_intr(sc->dev, sc->irq, 0, envy24ht_intr, sc, &sc->ih)) { + snd_setup_intr(sc->dev, sc->irq, INTR_MPSAFE, envy24ht_intr, sc, &sc->ih)) { device_printf(sc->dev, "unable to map interrupt\n"); return ENXIO; } @@ -2450,13 +2433,13 @@ envy24ht_alloc_resource(struct sc_info * if (bus_dma_tag_create(/*parent*/bus_get_dma_tag(sc->dev), /*alignment*/4, /*boundary*/0, - /*lowaddr*/BUS_SPACE_MAXADDR_ENVY24, - /*highaddr*/BUS_SPACE_MAXADDR_ENVY24, + /*lowaddr*/BUS_SPACE_MAXADDR_32BIT, + /*highaddr*/BUS_SPACE_MAXADDR, /*filter*/NULL, /*filterarg*/NULL, /*maxsize*/BUS_SPACE_MAXSIZE_ENVY24, /*nsegments*/1, /*maxsegsz*/0x3ffff, - /*flags*/0, /*lockfunc*/busdma_lock_mutex, - /*lockarg*/&Giant, &sc->dmat) != 0) { + /*flags*/0, /*lockfunc*/NULL, + /*lockarg*/NULL, &sc->dmat) != 0) { device_printf(sc->dev, "unable to create dma tag\n"); return ENXIO; } Modified: head/sys/dev/sound/pci/envy24ht.h ============================================================================== --- head/sys/dev/sound/pci/envy24ht.h Sun May 5 18:54:25 2013 (r250285) +++ head/sys/dev/sound/pci/envy24ht.h Sun May 5 19:09:34 2013 (r250286) @@ -176,8 +176,6 @@ #define ENVY24HT_VOL_MIN 96 /* -144db(negate) */ #define ENVY24HT_VOL_MUTE 127 /* mute */ -#define BUS_SPACE_MAXADDR_ENVY24 0x0fffffff /* Address space beyond 256MB is not - supported */ #define BUS_SPACE_MAXSIZE_ENVY24 0x3fffc /* 64k x 4byte(1dword) */ #define ENVY24HT_CCS_GPIO_HDATA 0x1E _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-multimedia@FreeBSD.ORG Sun May 5 19:14:21 2013 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 39ADC109; Sun, 5 May 2013 19:14:21 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 130BBA32; Sun, 5 May 2013 19:14:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r45JEKec035040; Sun, 5 May 2013 19:14:20 GMT (envelope-from mav@freefall.freebsd.org) Received: (from mav@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r45JEK7D035039; Sun, 5 May 2013 19:14:20 GMT (envelope-from mav) Date: Sun, 5 May 2013 19:14:20 GMT Message-Id: <201305051914.r45JEK7D035039@freefall.freebsd.org> To: jason.harmening@gmail.com, mav@FreeBSD.org, freebsd-multimedia@FreeBSD.org, mav@FreeBSD.org From: mav@FreeBSD.org Subject: Re: kern/152378: [sound][patch] Update snd_envy24ht to be MPSAFE and use 32-bit DMA addresses X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 May 2013 19:14:21 -0000 Synopsis: [sound][patch] Update snd_envy24ht to be MPSAFE and use 32-bit DMA addresses State-Changed-From-To: open->patched State-Changed-By: mav State-Changed-When: Sun May 5 19:13:41 UTC 2013 State-Changed-Why: Patch committed to HEAD. Responsible-Changed-From-To: freebsd-multimedia->mav Responsible-Changed-By: mav Responsible-Changed-When: Sun May 5 19:13:41 UTC 2013 Responsible-Changed-Why: Patch committed to HEAD. http://www.freebsd.org/cgi/query-pr.cgi?pr=152378 From owner-freebsd-multimedia@FreeBSD.ORG Sun May 5 23:20:01 2013 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8553069C for ; Sun, 5 May 2013 23:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 5CB9D1B5 for ; Sun, 5 May 2013 23:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r45NK1K6080097 for ; Sun, 5 May 2013 23:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r45NK0hA080096; Sun, 5 May 2013 23:20:00 GMT (envelope-from gnats) Date: Sun, 5 May 2013 23:20:00 GMT Message-Id: <201305052320.r45NK0hA080096@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org Cc: From: Koop Mast Subject: Re: ports/178273: multimedia/gstreamer-plugins: It's hava no package of gstreamer-plugins-base in ports X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Koop Mast List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 May 2013 23:20:01 -0000 The following reply was made to PR ports/178273; it has been noted by GNATS. From: Koop Mast To: bug-followup@FreeBSD.org, guochenglei@gmail.com Cc: Subject: Re: ports/178273: multimedia/gstreamer-plugins: It's hava no package of gstreamer-plugins-base in ports Date: Mon, 06 May 2013 01:17:28 +0200 That is incorrect multimedia/gstreamer-plugins = gst-plugins-base, granted the name is a bit missleading. I will look into updating pkg-descr and comments of the gstreamer ports to be more clear. I will keep this PR open for that purpose. From owner-freebsd-multimedia@FreeBSD.ORG Mon May 6 11:06:49 2013 Return-Path: Delivered-To: freebsd-multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3A15D9F6 for ; Mon, 6 May 2013 11:06:49 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 2B0B4A08 for ; Mon, 6 May 2013 11:06:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r46B6n1D023858 for ; Mon, 6 May 2013 11:06:49 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r46B6mCV023856 for freebsd-multimedia@FreeBSD.org; Mon, 6 May 2013 11:06:48 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 6 May 2013 11:06:48 GMT Message-Id: <201305061106.r46B6mCV023856@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-multimedia@FreeBSD.org Subject: Current problem reports assigned to freebsd-multimedia@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 May 2013 11:06:49 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/178273 multimedia multimedia/gstreamer-plugins: It's hava no package of o ports/177532 multimedia multimedia/gstreamer-plugins-* ports missing dependenc o ports/177281 multimedia multimedia/avidemux2 does not compile o ports/175940 multimedia multimedia/gstreamer-plugins-good add missing dependen o ports/175865 multimedia audio/denemo 0.9.2_2 does not build o kern/175306 multimedia [snd_hda] snd_hda does not produce 7.1 sound on ALC892 o kern/175220 multimedia [sound] sound stopping: play interrupt timeout, channe f ports/175008 multimedia audio/gstreamer-plugins-soundtouch C++ compiler error o kern/174828 multimedia [sound] [snd_emu10kx]: "Creative SB PCI512 [CT4790]" i o kern/174796 multimedia [emu10kx]: Audigy ZS driver produce strange noises o kern/174573 multimedia [snd_hda] headphones on front panel not working anymor o ports/174287 multimedia multimedia/gstreamer-plugins-good fails to compile wit o ports/173741 multimedia multimedia/dirac fails to compile with clang o ports/172185 multimedia multimedia/vlc build fail with gmake core dump at modu o ports/172128 multimedia building multimedia/vlc fails o kern/171937 multimedia [pcm] Notebook Toshiba Satellite C850-B1K and problem o ports/171888 multimedia [PATCH] multimedia/gpac-libgpac: update to 0.5.0,1 o ports/171248 multimedia multimedia/win32-codecs: Fix pkg-plist o ports/170517 multimedia [patch] Correct audio/jack Dependency Declaration o ports/170032 multimedia Some ports not bumped after libogg update o ports/165090 multimedia audio/faad missing head files o kern/162181 multimedia [snd_emu10k1] [patch] The kernel sound driver module s o ports/161783 multimedia [PATCH] multimedia/gpac-libgpac: Fix build with gcc46 o ports/161568 multimedia [PATCH] audio/libsamplerate: samplerate.h has comma at o kern/159236 multimedia [pcm] [patch] set PCM_CAP_DEFAULT for the default snd o kern/158979 multimedia [snd_uadio] snd_uaudio fails to initialize built-in mi o kern/158542 multimedia [snd_hda] hdac0: hdac_get_capabilities: Invalid corb s o stand/157050 multimedia OSS implementation lacks AFMT_FLOAT o kern/156198 multimedia [snd_hda] [hang] loading snd_hda kernel module hangs s o kern/156165 multimedia [hdac] Missing card definition for hdac audio device, o ports/153846 multimedia graphics/libcaca 0.99.beta17 - Hidden dependency on Xl a ports/153735 multimedia multimedia/vlc: install error: `Permission denied' for o kern/152622 multimedia [pcm] uaudio recording problem o kern/152500 multimedia [hdac] play interrupt timeout, channel dead f ports/150502 multimedia multimedia/gpac-libgpac 0.4.5_4,1 fails to compile on o kern/150284 multimedia [snd_hda] No gain with Audio o kern/149943 multimedia [pcm]: CS4236 audio problem o kern/147504 multimedia [oss] [panic] panic: dev_pager_getpage: map function r o kern/146031 multimedia [snd_hda] race condition when kldunload snd_hda sound o kern/144659 multimedia [pcm] The distortion of the sound playback of music at o kern/143505 multimedia [pcm] FreeBSD 8.0-RELEASE (x64) won't make sound card o kern/141826 multimedia [snd_hda] load of snd_hda module fails o kern/140591 multimedia [PATCH][sound] No sound output on lineout/headphone ja o kern/137589 multimedia [snd_uaudio] snd_uaudio.ko (USB audio driver) doesn't o kern/134767 multimedia [sound] [snd_hda] [regression] Sigmatel STAC9205X no s o kern/132848 multimedia [sound] [snd_emu10kx] driver problem with card init, s o kern/132511 multimedia [sound] [snd_hda] Probing ALC888 codec on ASRock K10N7 o kern/129604 multimedia [sound] Sound stops with error: pcm0:virtual:dsp0.vp0: o kern/127131 multimedia [bktr] /usr/src/sys/dev/bktr/bktr_os.c, line 469: wron s kern/125756 multimedia [sound] [patch] cannot detect soft-modem on HDA bus o kern/124319 multimedia [sound] [snd_emu10k1] [regression] Cannot record from o kern/122086 multimedia [sound] maestro sound driver is working, but mixer ini o kern/120857 multimedia [sound] [snd_emu10k1] snd_emu10k1 driver issues a warn o kern/120780 multimedia [sound] [snd_hda] snd_hda doesn't work on Dell Latitut o kern/119973 multimedia [sound] [snd_maestro] [regression] snd_maestro only wo o kern/119931 multimedia [sound] No sound card detected on ASUS "K8V-X SE R2.00 o kern/119759 multimedia [sound] [snd_emu10k1] [regression] Can not record anyt o kern/115300 multimedia [sound] [snd_hda] [regression] snd_hda(4) fails to att o kern/114760 multimedia [sound] [snd_cmi] snd_cmi driver causing sporadic syst o kern/111767 multimedia [sound] ATI SB450 High Definition Audio Controller sou o kern/107516 multimedia [sound] [snd_emu10k1] - skips, clicks and lag after a o kern/107051 multimedia [sound] only 2 channels output works for the ALC850 (o o kern/104874 multimedia [sound] [snd_emu10k1] kldload snd_emu10k1 hangs system o kern/101417 multimedia [sound] 4-speakers output not possible on Asus A8V-Del o kern/100859 multimedia [sound] [snd_ich] snd_ich broken on GIGABYTE 915 syste o kern/98752 multimedia [sound] Intel ich6 82801 FB - on Packard Bell A8810 la o kern/98504 multimedia [sound] Sound is distorted with SB Live 5.1 o kern/98496 multimedia [sound] [snd_ich] some functions don't work in my soun o kern/97609 multimedia [sound] Load Sound Module - VIA8233 - fails o kern/97535 multimedia [sound] [snd_mss] doesn't work in 6.0-RELEASE and abov o kern/96538 multimedia [sound] emu10k1-driver inverts channels o kern/95086 multimedia [sound] uaudio line in problem with sbdm lx o kern/94279 multimedia [sound] [snd_neomagic] snd_neomagic crashes on FreeBSD o kern/93986 multimedia [sound] Acer TravelMate 4652LMi pcm0 channel dead o kern/92512 multimedia [sound] distorted mono output with emu10k1 o kern/87782 multimedia [sound] snd_t4dwave and pcm0:record:0: record interrup o kern/82043 multimedia [sound] snd_emu10k1 - mixer does not work. o kern/81146 multimedia [sound] Sound isn't working AT ALL for Sis7012 onboard o kern/80632 multimedia [sound] pcm driver missing support for CMI8738 auxilla o kern/79912 multimedia [sound] sound broken for 2 VIA chipsets: interrupt sto o kern/79905 multimedia [sound] sis7018 sound module problem o kern/79678 multimedia [sound] sound works except recording from any source o conf/75137 multimedia [sound] add snd_* modules support to /etc/rc.d/mixer f kern/72995 multimedia [sound] Intel ICH2 (82801BA) - sound nearly inaudible o kern/63204 multimedia [sound] /dev/mixer broken with ESS Maestro-2E (still o o kern/60677 multimedia [sound] [patch] No reaction of volume controy key on I s kern/60599 multimedia [bktr] [partial patch] No sound for ATI TV Wonder (ste o kern/37600 multimedia [sound] [partial patch] t4dwave drive doesn't record. o kern/23546 multimedia [sound] [snd_csa] [patch] csa DMA-interrupt problem 89 problems total. From owner-freebsd-multimedia@FreeBSD.ORG Mon May 6 20:59:30 2013 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 46D5FA8E; Mon, 6 May 2013 20:59:30 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mx.critical.ch (mx.critical.ch [62.2.45.171]) by mx1.freebsd.org (Postfix) with ESMTP id C308A628; Mon, 6 May 2013 20:59:29 +0000 (UTC) Received: from beaver.home.critical.ch (84-75-192-66.dclient.hispeed.ch [84.75.192.66]) (authenticated bits=0) by mx.critical.ch (8.14.5/8.14.5/critical-1.0) with ESMTP id r46KxRuh092159; Mon, 6 May 2013 22:59:28 +0200 (CEST) (envelope-from ehaupt@FreeBSD.org) Date: Mon, 6 May 2013 22:59:27 +0200 From: Emanuel Haupt To: multimedia@FreeBSD.org Subject: updating textproc/libebml, multimedia/libmatroska Message-Id: <20130506225927.91169cb53fd02e1ca9d2f980@FreeBSD.org> X-Mailer: Sylpheed 3.3.0 (GTK+ 2.24.17; amd64-portbld-freebsd9.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 May 2013 20:59:30 -0000 If there are no objections I'd like to update: textproc/libebml -> 1.3.0 https://github.com/Matroska-Org/libebml/blob/master/ChangeLog multimedia/libmatroska -> 1.4.0 https://github.com/Matroska-Org/libmatroska/blob/master/ChangeLog Patch: http://people.freebsd.org/~ehaupt/patches/libebml_libmatroska.patch and bump the depending ports due to the ABI change. Emanuel From owner-freebsd-multimedia@FreeBSD.ORG Mon May 6 22:03:43 2013 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0A4EE55A; Mon, 6 May 2013 22:03:43 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-we0-x234.google.com (mail-we0-x234.google.com [IPv6:2a00:1450:400c:c03::234]) by mx1.freebsd.org (Postfix) with ESMTP id 6F727A61; Mon, 6 May 2013 22:03:42 +0000 (UTC) Received: by mail-we0-f180.google.com with SMTP id x43so3253476wey.25 for ; Mon, 06 May 2013 15:03:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:date:from:to:cc:subject:message-id:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; bh=V9eUZPfFQnxlnom9yQJiffDVaBl+VNSAr0iztwQbtCk=; b=J/kD+xc99FgoGMhPvhEm2X7rX9x3Od6gY6GajXoJvhf+Za2wC9D74gHvCDcq/Z6Cs2 P/Yxfmm2Vdh5A6g9qwg6Q3BZV2p/GoJZ7+PLy+yWudJsOO7gkKz4HwEYk3YWFFXRhbWb wv9pjlX6PyPjGFlNC6il4+0tVWlUevw5X2IG+veSmQrtPjdCF8zxo0/7ujDAnt9AXQuP lkJJbVYu7i4LTNxGtv8V0l8zvKUz8/LwHmyq8k0fXGCQLwchw3wPUFQgQBekkioaoE79 Ofu62ut4IfBcOMzFkYbB3Im83ejzFj/z83vS08+JzfybtRiy9f6aG2Y3a+kk0ihpvGhV eeGw== X-Received: by 10.180.74.172 with SMTP id u12mr15279657wiv.0.1367877821460; Mon, 06 May 2013 15:03:41 -0700 (PDT) Received: from ithaqua.etoilebsd.net (ithaqua.etoilebsd.net. [37.59.37.188]) by mx.google.com with ESMTPSA id i4sm16464238wix.10.2013.05.06.15.03.39 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Mon, 06 May 2013 15:03:40 -0700 (PDT) Sender: Baptiste Daroussin Date: Tue, 7 May 2013 00:03:37 +0200 From: Baptiste Daroussin To: Emanuel Haupt Subject: Re: updating textproc/libebml, multimedia/libmatroska Message-ID: <20130506220337.GI91136@ithaqua.etoilebsd.net> References: <20130506225927.91169cb53fd02e1ca9d2f980@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="k9xkV0rc9XGsukaG" Content-Disposition: inline In-Reply-To: <20130506225927.91169cb53fd02e1ca9d2f980@FreeBSD.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: multimedia@FreeBSD.org X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 May 2013 22:03:43 -0000 --k9xkV0rc9XGsukaG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, May 06, 2013 at 10:59:27PM +0200, Emanuel Haupt wrote: > If there are no objections I'd like to update: >=20 > textproc/libebml -> 1.3.0 > https://github.com/Matroska-Org/libebml/blob/master/ChangeLog >=20 > multimedia/libmatroska -> 1.4.0 > https://github.com/Matroska-Org/libmatroska/blob/master/ChangeLog >=20 > Patch: > http://people.freebsd.org/~ehaupt/patches/libebml_libmatroska.patch >=20 > and bump the depending ports due to the ABI change. >=20 Approved with multimedia@ hat regards, Bapt --k9xkV0rc9XGsukaG Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAlGIKLkACgkQ8kTtMUmk6EzvxwCgps1GpK2oWbXkGdCrk5BVipK1 EYMAniewp91+Ti3+FN+CVF0JHS/2jrFp =xCK2 -----END PGP SIGNATURE----- --k9xkV0rc9XGsukaG-- From owner-freebsd-multimedia@FreeBSD.ORG Fri May 10 06:50:31 2013 Return-Path: Delivered-To: multimedia@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9975756C; Fri, 10 May 2013 06:50:31 +0000 (UTC) (envelope-from miwi@freebsd.org) Received: from bsdhash.org (bsdhash.org [94.23.250.27]) by mx1.freebsd.org (Postfix) with ESMTP id D31091EC; Fri, 10 May 2013 06:50:30 +0000 (UTC) Received: from [192.168.0.105] (sdg-207-188.tm.net.my [202.188.207.188]) by bsdhash.org (Postfix) with ESMTPA id 3ACD3512ED; Fri, 10 May 2013 14:50:26 +0800 (MYT) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 6.3 \(1503\)) Subject: Fwd: gstreamer1-plugins-vpx-1.0.7 failed on amd64 8 From: Martin Wilke Date: Fri, 10 May 2013 14:50:21 +0800 Content-Transfer-Encoding: quoted-printable Message-Id: <6921F2A0-8FF9-4F5D-97D9-5ECB819A30F3@freebsd.org> References: <201305100623.r4A6Ngpc092200@pointyhat.freebsd.org> To: multimedia@FreeBSD.org X-Mailer: Apple Mail (2.1503) Cc: Koop Mast X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 May 2013 06:50:31 -0000 Begin forwarded message: > From: Portbuild user > Subject: gstreamer1-plugins-vpx-1.0.7 failed on amd64 8 > Date: May 10, 2013 2:23:42 PM GMT+08:00 > To: miwi@freebsd.org, itetcu@FreeBSD.org >=20 > You can also find this build log at >=20 > = http://pointyhat.freebsd.org/errorlogs/amd64-errorlogs/a.8.20130510010703.= pointyhat/gstreamer1-plugins-vpx-1.0.7.log >=20 > building gstreamer1-plugins-vpx-1.0.7 on beefy3.isc.freebsd.org > in directory /a/pkgbuild/8/20130510010703.pointyhat/chroot/2881 > building for: 8.3-RELEASE-p8 amd64 > maintained by: multimedia@FreeBSD.org > port directory: /usr/ports/multimedia/gstreamer1-plugins-vpx > Makefile ident: $FreeBSD: = head/multimedia/gstreamer1-plugins-vpx/Makefile 316693 2013-04-27 = 20:56:38Z kwm $ > build started at Fri May 10 06:16:35 UTC 2013 > FETCH_DEPENDS=3D > PATCH_DEPENDS=3Dlibtool-2.4.2.tbz > EXTRACT_DEPENDS=3D > BUILD_DEPENDS=3Dfreetype2-2.4.11.tbz gamin-0.1.10_5.tbz = gettext-0.18.1.1_1.tbz gio-fam-backend-2.34.3.tbz glib-2.34.3.tbz = gmake-3.82_1.tbz gnomehier-3.0.tbz gobject-introspection-1.34.2.tbz = gstreamer1-1.0.7.tbz gstreamer1-plugins-1.0.7.tbz = gstreamer1-plugins-good-1.0.7.tbz iso-codes-3.41.tbz libffi-3.0.13.tbz = libiconv-1.14_1.tbz libtool-2.4.2.tbz libvpx-1.1.0.tbz = libxml2-2.8.0_2.tbz orc-0.4.16_1.tbz pcre-8.32.tbz perl-5.14.2_3.tbz = pkgconf-0.9.2_1.tbz python27-2.7.3_6.tbz > RUN_DEPENDS=3Dfreetype2-2.4.11.tbz gamin-0.1.10_5.tbz = gettext-0.18.1.1_1.tbz gio-fam-backend-2.34.3.tbz glib-2.34.3.tbz = gnomehier-3.0.tbz gobject-introspection-1.34.2.tbz gstreamer1-1.0.7.tbz = gstreamer1-plugins-1.0.7.tbz gstreamer1-plugins-good-1.0.7.tbz = iso-codes-3.41.tbz libffi-3.0.13.tbz libiconv-1.14_1.tbz = libvpx-1.1.0.tbz libxml2-2.8.0_2.tbz orc-0.4.16_1.tbz pcre-8.32.tbz = perl-5.14.2_3.tbz pkgconf-0.9.2_1.tbz python27-2.7.3_6.tbz > PKG_DEPENDS=3D > prefixes: LOCALBASE=3Dusr/local > add_pkg > add_pkg > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= > =3D> gst-plugins-good-1.0.7.tar.xz doesn't seem to exist in = /tmp/distfiles/. > =3D> Attempting to fetch = ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles//gst-plugins-good= -1.0.7.tar.xz > fetch: = ftp://ftp-master.freebsd.org/pub/FreeBSD/ports/distfiles//gst-plugins-good= -1.0.7.tar.xz: File unavailable (e.g., file not found, no access) > =3D> Attempting to fetch = ftp://pointyhat.FreeBSD.org/pub/FreeBSD/distfiles//gst-plugins-good-1.0.7.= tar.xz > fetch: = ftp://pointyhat.FreeBSD.org/pub/FreeBSD/distfiles//gst-plugins-good-1.0.7.= tar.xz: No route to host > =3D> Attempting to fetch = http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.0= .7.tar.xz > gst-plugins-good-1.0.7.tar.xz 2630 kB 1803 = kBps > =3D=3D=3D> Fetching all distfiles required by = gstreamer1-plugins-vpx-1.0.7 for building > =3D> SHA256 Checksum OK for gst-plugins-good-1.0.7.tar.xz. > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > add_pkg > =3D=3D=3D> Fetching all distfiles required by = gstreamer1-plugins-vpx-1.0.7 for building > =3D=3D=3D> Extracting for gstreamer1-plugins-vpx-1.0.7 > =3D> SHA256 Checksum OK for gst-plugins-good-1.0.7.tar.xz. > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > add_pkg libtool-2.4.2.tbz > adding dependencies > adding package libtool-2.4.2.tbz > =3D=3D=3D> Patching for gstreamer1-plugins-vpx-1.0.7 > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on package: = libtool>=3D2.4 - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on package: = libtool>=3D2.4 - found > =3D=3D=3D> Applying FreeBSD patches for gstreamer1-plugins-vpx-1.0.7 > Deleting libtool-2.4.2 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > add_pkg freetype2-2.4.11.tbz gamin-0.1.10_5.tbz gettext-0.18.1.1_1.tbz = gio-fam-backend-2.34.3.tbz glib-2.34.3.tbz gmake-3.82_1.tbz = gnomehier-3.0.tbz gobject-introspection-1.34.2.tbz gstreamer1-1.0.7.tbz = gstreamer1-plugins-1.0.7.tbz gstreamer1-plugins-good-1.0.7.tbz = iso-codes-3.41.tbz libffi-3.0.13.tbz libiconv-1.14_1.tbz = libtool-2.4.2.tbz libvpx-1.1.0.tbz libxml2-2.8.0_2.tbz orc-0.4.16_1.tbz = pcre-8.32.tbz perl-5.14.2_3.tbz pkgconf-0.9.2_1.tbz python27-2.7.3_6.tbz > adding dependencies > adding package freetype2-2.4.11.tbz > adding package gamin-0.1.10_5.tbz > Removing stale symlinks from /usr/bin... > Skipping /usr/bin/perl > Skipping /usr/bin/perl5 > Done. > Creating various symlinks in /usr/bin... > Symlinking /usr/local/bin/perl5.14.2 to /usr/bin/perl > Symlinking /usr/local/bin/perl5.14.2 to /usr/bin/perl5 > Done. > Cleaning up /etc/make.conf... Done. > Spamming /etc/make.conf... Done. > Cleaning up /etc/manpath.config... Done. > Spamming /etc/manpath.config... Done. >=20 > =3D=3D=3D=3D > Note that some of the standard modules are provided as separate > ports since they require extra dependencies: >=20 > bsddb databases/py-bsddb > gdbm databases/py-gdbm > sqlite3 databases/py-sqlite3 > tkinter x11-toolkits/py-tkinter >=20 > Install them as needed. > =3D=3D=3D=3D >=20 > No schema files found: doing nothing. >=20 > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >=20 > Gamin will only provide realtime notification of changes for at most n = files, > where n is the minimum value between (kern.maxfiles * 0.7) and > (kern.maxfilesperproc - 200). Beyond that limit, files will be polled. >=20 > If you often open several large folders with Nautilus, you might want = to > increase the kern.maxfiles tunable (you do not need to set > kern.maxfilesperproc, since it is computed at boot time from = kern.maxfiles). >=20 > For a typical desktop, add the following line to /boot/loader.conf, = then > reboot the system: >=20 > kern.maxfiles=3D"25000" >=20 > The behavior of gamin can be controlled via the various gaminrc files. > See http://www.gnome.org/~veillard/gamin/config.html on how to create > these files. In particular, if you find gam_server is taking up too = much > CPU time polling for changes, something like the following may help > in one of the gaminrc files: >=20 > # reduce polling frequency to once per 10 seconds > # for UFS file systems in order to lower CPU load > fsset ufs poll 10 >=20 > = =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D >=20 > adding package gettext-0.18.1.1_1.tbz > skipping gettext-0.18.1.1_1, already added > adding package gio-fam-backend-2.34.3.tbz > adding package glib-2.34.3.tbz > skipping glib-2.34.3, already added > adding package gmake-3.82_1.tbz > adding package gnomehier-3.0.tbz > ./etc/CORBA missing (created) > ./etc/CORBA/servers missing (created) > ./etc/X11 missing (created) > ./etc/X11/serverconfig missing (created) > ./etc/X11/starthere missing (created) > ./etc/X11/sysconfig missing (created) > ./etc/dconf missing (created) > ./etc/dconf/db missing (created) > ./etc/dconf/profile missing (created) > ./etc/gconf missing (created) > ./etc/gconf/gconf.xml.defaults missing (created) > ./etc/gconf/gconf.xml.mandatory missing (created) > ./etc/gconf/gconf.xml.system missing (created) > ./etc/gconf/schemas missing (created) > ./etc/gnome missing (created) > ./etc/gnome/config missing (created) > ./etc/gnome-vfs-2.0 missing (created) > ./etc/gnome-vfs-2.0/modules missing (created) > ./etc/mateconf missing (created) > ./etc/mateconf/mateconf.xml.defaults missing (created) > ./etc/mateconf/mateconf.xml.mandatory missing (created) > ./etc/mateconf/mateconf.xml.system missing (created) > ./etc/mateconf/schemas missing (created) > ./etc/sound missing (created) > ./etc/sound/events missing (created) > ./etc/vfs missing (created) > ./etc/vfs/modules missing (created) > ./etc/xdg missing (created) > ./etc/xdg/autostart missing (created) > ./include/gconf missing (created) > ./include/gdkcardimage missing (created) > ./include/gnome-1.0 missing (created) > ./lib/GConf missing (created) > ./lib/bonobo missing (created) > ./lib/bonobo/monikers missing (created) > ./lib/bonobo/plugin missing (created) > ./lib/girepository-1.0 missing (created) > ./lib/gnome-vfs-2.0 missing (created) > ./lib/gnome-vfs-2.0/modules missing (created) > ./lib/mate-vfs-2.0 missing (created) > ./lib/mate-vfs-2.0/modules missing (created) > ./lib/matecomponent missing (created) > ./lib/matecomponent/monikers missing (created) > ./lib/matecomponent-2.0 missing (created) > ./lib/matecomponent-2.0/samples missing (created) > ./lib/vfs missing (created) > ./lib/vfs/modules missing (created) > ./libdata/bonobo missing (created) > ./libdata/bonobo/servers missing (created) > ./libdata/matecomponent missing (created) > ./libdata/matecomponent/servers missing (created) > ./share/MateConf missing (created) > ./share/MateConf/gsettings missing (created) > ./share/applets missing (created) > ./share/applets/Amusements missing (created) > ./share/applets/Clocks missing (created) > ./share/applets/Monitors missing (created) > ./share/applets/Multimedia missing (created) > ./share/applets/Network missing (created) > ./share/applets/Utility missing (created) > ./share/application-registry missing (created) > ./share/capplets missing (created) > ./share/control-center missing (created) > ./share/control-center/Desktop missing (created) > ./share/control-center/Documents missing (created) > ./share/control-center/Peripherals missing (created) > ./share/control-center/Session missing (created) > ./share/control-center/capplets missing (created) > ./share/control-center/keybindings missing (created) > ./share/control-center/keybindings/gtk-modules missing (created) > ./share/control-center-2.0 missing (created) > ./share/control-center-2.0/capplets missing (created) > ./share/doc/libgda missing (created) > ./share/gir-1.0 missing (created) > ./share/gnome missing (created) > ./share/gnome/apps missing (created) > ./share/gnome/apps/Applications missing (created) > ./share/gnome/apps/Audio missing (created) > ./share/gnome/apps/Development missing (created) > ./share/gnome/apps/Games missing (created) > ./share/gnome/apps/Graphics missing (created) > ./share/gnome/apps/Internet missing (created) > ./share/gnome/apps/Multimedia missing (created) > ./share/gnome/apps/Settings missing (created) > ./share/gnome/apps/Settings/Desktop missing (created) > ./share/gnome/apps/Settings/Documents missing (created) > ./share/gnome/apps/Settings/Peripherals missing (created) > ./share/gnome/apps/Settings/Session missing (created) > ./share/gnome/apps/System missing (created) > ./share/gnome/apps/Utilities missing (created) > ./share/gnome/autostart missing (created) > ./share/gnome/help missing (created) > ./share/gnome/help/fdl missing (created) > ./share/gnome/help/fdl/C missing (created) > ./share/gnome/help/gpl missing (created) > ./share/gnome/help/gpl/C missing (created) > ./share/gnome/help/lgpl missing (created) > ./share/gnome/help/lgpl/C missing (created) > ./share/gnome/panel missing (created) > ./share/gnome/ui missing (created) > ./share/gnome/wm-properties missing (created) > ./share/gnome-2.0 missing (created) > ./share/gnome-2.0/ui missing (created) > ./share/gnome-about missing (created) > ./share/gnome-control-center missing (created) > ./share/gnome-control-center/keybindings missing (created) > ./share/gnome-settings-daemon-3.0 missing (created) > ./share/images missing (created) > ./share/mate missing (created) > ./share/mate/help missing (created) > ./share/mate-2.0 missing (created) > ./share/mate-2.0/ui missing (created) > ./share/mate-control-center missing (created) > ./share/mate-control-center/keybindings missing (created) > ./share/mc missing (created) > ./share/mc/templates missing (created) > ./share/mime-info missing (created) > ./share/oaf missing (created) > ./share/omf missing (created) > ./share/pixmaps/document-icons missing (created) > ./share/pixmaps/splash missing (created) > ./share/sgml/docbook missing (created) > ./share/sgml/docbook/gnome-customization-0.1 missing (created) > ./share/sounds missing (created) > ./share/vala missing (created) > ./share/vala/vapi missing (created) > ./share/vfolders missing (created) > ./share/xmodmap missing (created) > adding package gobject-introspection-1.34.2.tbz > adding package gstreamer1-1.0.7.tbz > adding package gstreamer1-plugins-1.0.7.tbz > adding package gstreamer1-plugins-good-1.0.7.tbz > adding package iso-codes-3.41.tbz > skipping iso-codes-3.41, already added > adding package libffi-3.0.13.tbz > skipping libffi-3.0.13, already added > adding package libiconv-1.14_1.tbz > skipping libiconv-1.14_1, already added > adding package libtool-2.4.2.tbz > adding package libvpx-1.1.0.tbz > adding package libxml2-2.8.0_2.tbz > skipping libxml2-2.8.0_2, already added > adding package orc-0.4.16_1.tbz > skipping orc-0.4.16_1, already added > adding package pcre-8.32.tbz > skipping pcre-8.32, already added > adding package perl-5.14.2_3.tbz > skipping perl-5.14.2_3, already added > adding package pkgconf-0.9.2_1.tbz > skipping pkgconf-0.9.2_1, already added > adding package python27-2.7.3_6.tbz > skipping python27-2.7.3_6, already added > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on package: = gobject-introspection>=3D1.31.1 - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on package: = gstreamer1>=3D1.0.5 - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on package: = iso-codes>=3D0 - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on package: = orc>=3D0.4.16 - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on executable: = pkgconf - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on package: = gstreamer1-plugins>=3D1.0.5 - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on executable: gmake = - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on package: = gstreamer1-plugins-good>=3D1.0.5 - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on package: = libtool>=3D2.4 - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on shared library: = gstreamer-1.0 - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on shared library: = freetype - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on shared library: = orc-0.4 - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on shared library: = intl - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on shared library: = vpx - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on shared library: = xml2.5 - found > =3D=3D=3D> Configuring for gstreamer1-plugins-vpx-1.0.7 > configure: loading site script /usr/ports/Templates/config.site > checking build system type... amd64-portbld-freebsd8.3 > checking host system type... amd64-portbld-freebsd8.3 > checking target system type... amd64-portbld-freebsd8.3 > checking for a BSD-compatible install... /usr/bin/install -c -o root = -g wheel > checking whether build environment is sane... yes > checking for a thread-safe mkdir -p... (cached) /bin/mkdir -p > checking for gawk... (cached) /usr/bin/awk > checking whether gmake sets $(MAKE)... yes > checking how to create a ustar tar archive... (cached) /usr/bin/tar > checking nano version... 0 (release) > checking whether to enable maintainer-specific portions of = Makefiles... yes > checking whether gmake supports nested variables... yes > checking how to print strings... printf > checking for style of include used by gmake... GNU > checking for gcc... cc > checking whether the C compiler works... yes > checking for C compiler default output file name... a.out > checking for suffix of executables...=20 > checking whether we are cross compiling... no > checking for suffix of object files... o > checking whether we are using the GNU C compiler... yes > checking whether cc accepts -g... yes > checking for cc option to accept ISO C89... none needed > checking dependency style of cc... gcc3 > checking for a sed that does not truncate output... (cached) = /usr/bin/sed > checking for grep that handles long lines and -e... (cached) = /usr/bin/grep > checking for egrep... (cached) /usr/bin/egrep > checking for fgrep... (cached) /usr/bin/fgrep > checking for ld used by cc... /usr/bin/ld > checking if the linker (/usr/bin/ld) is GNU ld... yes > checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B > checking the name lister (/usr/bin/nm -B) interface... BSD nm > checking whether ln -s works... yes > checking the maximum length of command line arguments... (cached) = 262144 > checking whether the shell understands some XSI constructs... yes > checking whether the shell understands "+=3D"... no > checking how to convert amd64-portbld-freebsd8.3 file names to = amd64-portbld-freebsd8.3 format... func_convert_file_noop > checking how to convert amd64-portbld-freebsd8.3 file names to = toolchain format... func_convert_file_noop > checking for /usr/bin/ld option to reload object files... -r > checking for objdump... objdump > checking how to recognize dependent libraries... pass_all > checking for dlltool... no > checking how to associate runtime and link libraries... printf %s\n > checking for ar... ar > checking for archiver @FILE support... no > checking for strip... strip > checking for ranlib... ranlib > checking command to parse /usr/bin/nm -B output from cc object... ok > checking for sysroot... no > checking for mt... mt > checking if mt is a manifest tool... no > checking how to run the C preprocessor... cpp > checking for ANSI C header files... yes > checking for sys/types.h... (cached) yes > checking for sys/stat.h... (cached) yes > checking for stdlib.h... (cached) yes > checking for string.h... (cached) yes > checking for memory.h... (cached) yes > checking for strings.h... (cached) yes > checking for inttypes.h... (cached) yes > checking for stdint.h... (cached) yes > checking for unistd.h... (cached) yes > checking for dlfcn.h... (cached) yes > checking for objdir... .libs > checking if cc supports -fno-rtti -fno-exceptions... no > checking for cc option to produce PIC... -fPIC -DPIC > checking if cc PIC flag -fPIC -DPIC works... yes > checking if cc static flag -static works... yes > checking if cc supports -c -o file.o... yes > checking if cc supports -c -o file.o... (cached) yes > checking whether the cc linker (/usr/bin/ld) supports shared = libraries... yes > checking whether -lc should be explicitly linked in... no > checking dynamic linker characteristics... freebsd8.3 ld.so > checking how to hardcode library paths into programs... immediate > checking for shl_load... no > checking for shl_load in -ldld... no > checking for dlopen... yes > checking whether a program can dlopen itself... yes > checking whether a statically linked program can dlopen itself... no > checking whether stripping libraries is possible... yes > checking if libtool supports shared libraries... yes > checking whether to build shared libraries... yes > checking whether to build static libraries... no > checking whether NLS is requested... yes > checking for msgfmt... /usr/local/bin/msgfmt > checking for gmsgfmt... /usr/local/bin/msgfmt > checking for xgettext... /usr/local/bin/xgettext > checking for msgmerge... /usr/local/bin/msgmerge > checking for ld used by GCC... /usr/bin/ld > checking if the linker (/usr/bin/ld) is GNU ld... yes > checking for shared library run path origin... done > checking for CFPreferencesCopyAppValue... no > checking for CFLocaleCopyCurrent... no > checking for GNU gettext in libc... no > checking for iconv... yes > checking for working iconv... yes > checking how to link with libiconv... /usr/local/lib/libiconv.so = -Wl,-rpath -Wl,/usr/local/lib > checking for GNU gettext in libintl... yes > checking whether to use NLS... yes > checking where the gettext function comes from... external libintl > checking how to link with libintl... /usr/local/lib/libintl.so = /usr/local/lib/libiconv.so -Wl,-rpath -Wl,/usr/local/lib > checking pkg-config is at least version 0.9.0... yes > checking for VALGRIND... no > configure: Using GStreamer Good Plug-ins source release as package = name > configure: Using Unknown package origin as package origin >=20 > configure: *** checking feature: building of plug-ins with external = deps *** > configure: building external plug-ins >=20 > configure: *** checking feature: building of experimental plug-ins *** > configure: not building experimental plug-ins > checking whether byte ordering is bigendian... no > checking whether byte ordering is bigendian... (cached) no > checking for gcc... (cached) cc > checking whether we are using the GNU C compiler... (cached) yes > checking whether cc accepts -g... (cached) yes > checking for cc option to accept ISO C89... (cached) none needed > checking dependency style of cc... (cached) gcc3 > checking for cc option to accept ISO C99... -std=3Dgnu99 > checking for cc -std=3Dgnu99 option to accept ISO Standard C... = (cached) -std=3Dgnu99 > checking whether we are using the GNU C++ compiler... yes > checking whether c++ accepts -g... yes > checking dependency style of c++... gcc3 > checking how to run the C++ preprocessor... c++ -E > checking for ld used by c++... /usr/bin/ld > checking if the linker (/usr/bin/ld) is GNU ld... yes > checking whether the c++ linker (/usr/bin/ld) supports shared = libraries... yes > checking for c++ option to produce PIC... -fPIC -DPIC > checking if c++ PIC flag -fPIC -DPIC works... yes > checking if c++ static flag -static works... yes > checking if c++ supports -c -o file.o... yes > checking if c++ supports -c -o file.o... (cached) yes > checking whether the c++ linker (/usr/bin/ld) supports shared = libraries... yes > checking dynamic linker characteristics... freebsd8.3 ld.so > checking how to hardcode library paths into programs... immediate > checking for c++... yes > checking how to run the C++ preprocessor... c++ -E > checking for gcc... gcc > checking whether we are using the GNU Objective C compiler... yes > checking whether gcc accepts -g... yes > checking dependency style of gcc... gcc3 > checking whether cc -std=3Dgnu99 and cc understand -c and -o = together... yes > checking dependency style of cc -std=3Dgnu99... gcc3 > checking for working do while(0) macros... yes > checking for valgrind... no > checking for gtkdoc-check... no > checking for gtkdoc-rebase... no > checking for gtkdoc-mkpdf... no > checking whether to build gtk-doc documentation... no > configure: Looking for Python version >=3D 2.1 > checking for python... /usr/local/bin/python > checking "/usr/local/bin/python":... okay > checking local Python configuration... looks good > checking whether to build plugin documentation... no (gtk-doc disabled = or not available) > checking for cos in -lm... yes > checking for ANSI C header files... (cached) yes > checking for stdint types... stdint.h (shortcircuit) > make use of stdint.h in _stdint.h (assuming C99 compatible system) > checking for sys/time.h... (cached) yes > checking for sys/socket.h... (cached) yes > checking for FIONREAD in sys/ioctl.h... yes > checking if compiler supports gcc-style inline assembly... yes > checking for rint... yes > checking for sinh... yes > checking for cosh... yes > checking for asinh... yes > checking for fpclass... no > checking for isinf... yes > checking for stdlib.h... (cached) yes > checking for unistd.h... (cached) yes > checking for sys/param.h... (cached) yes > checking for getpagesize... (cached) yes > checking for working mmap... yes > checking for struct ip_mreqn... yes > checking for GLIB... yes > checking for glib-genmarshal... glib-genmarshal (from pkg-config path) > checking for glib-mkenums... glib-mkenums > checking for GIO... yes > checking for ORC... yes > checking for usable orcc... /usr/local/bin/orcc > checking for GST... yes > configure: using GStreamer tools in /usr/local/bin > configure: using GStreamer plug-ins in /usr/local/lib/gstreamer-1.0 > checking for GST_BASE... yes > checking for GST_CONTROLLER... yes > checking for GST_NET... yes > checking for GST_CHECK... no > configure: Package gstreamer-check-1.0 was not found in the pkg-config = search path. > Perhaps you should add the directory containing = `gstreamer-check-1.0.pc' > to the PKG_CONFIG_PATH environment variable > Package 'gstreamer-check-1.0', required by 'world', not found > configure: no gstreamer-check-1.0 >=3D 1.0.0 (GStreamer Check unittest = Library) found > checking for GST_PLUGINS_BASE... yes > configure: using GStreamer Base Plugins in = /usr/local/lib/gstreamer-1.0 > configure: Using GStreamer Core Plugins in = /usr/local/lib/gstreamer-1.0 > configure: Using GStreamer Base Plugins in = /usr/local/lib/gstreamer-1.0 > checking for GTK... no > checking for GTK_X11... no > configure: Using /usr/local/lib/gstreamer-1.0 as the plugin install = location > configure: Setting GST_PACKAGE_RELEASE_DATETIME to 2013-04-26 > checking whether to build static plugins or not... no > checking whether the GStreamer debugging system is enabled... yes > checking to see if compiler understands -Wall... yes > checking to see if compiler understands = -Wdeclaration-after-statement... yes > checking to see if compiler understands -Wvla... no > checking to see if compiler understands -Wpointer-arith... yes > checking to see if compiler understands -Wmissing-declarations... yes > checking to see if compiler understands -Wmissing-prototypes... yes > checking to see if compiler understands -Wredundant-decls... yes > checking to see if compiler understands -Wwrite-strings... yes > checking to see if compiler understands -Wold-style-definition... yes > checking to see if compiler understands -Waggregate-return... yes > checking to see if compiler understands -Winit-self... yes > checking to see if compiler understands -Wmissing-include-dirs... yes > checking to see if compiler understands -Waddress... yes > checking to see if compiler understands -Wno-multichar... yes > checking to see if compiler understands -Wnested-externs... yes > configure: set WARNING_CFLAGS to -Wall -Wdeclaration-after-statement = -Wpointer-arith -Wmissing-declarations -Wmissing-prototypes = -Wredundant-decls -Wwrite-strings -Wold-style-definition = -Waggregate-return -Winit-self -Wmissing-include-dirs -Waddress = -Wno-multichar -Wnested-externs > configure: set ERROR_CFLAGS to=20 > checking to see if c++ compiler understands ... yes > checking to see if c++ compiler understands -Wall... yes > checking to see if c++ compiler understands -Wmissing-declarations... = yes > checking to see if c++ compiler understands -Wredundant-decls... yes > checking to see if c++ compiler understands -Wwrite-strings... yes > checking to see if c++ compiler understands -Winit-self... yes > checking to see if c++ compiler understands -Wmissing-include-dirs... = yes > checking to see if c++ compiler understands -Waddress... yes > checking to see if c++ compiler understands -Wno-multichar... yes > configure: set WARNING_CXXFLAGS to -Wall -Wmissing-declarations = -Wredundant-decls -Wwrite-strings -Winit-self -Wmissing-include-dirs = -Waddress -Wno-multichar > configure: set ERROR_CXXFLAGS to=20 > checking to see if Objective C compiler understands ... yes > checking to see if Objective C compiler understands -Wall... yes > checking to see if Objective C compiler understands = -Wmissing-declarations... yes > checking to see if Objective C compiler understands = -Wmissing-prototypes... yes > checking to see if Objective C compiler understands = -Wredundant-decls... yes > checking to see if Objective C compiler understands -Wwrite-strings... = yes > checking to see if Objective C compiler understands = -Wold-style-definition... yes > checking to see if Objective C compiler understands -Winit-self... yes > checking to see if Objective C compiler understands = -Wmissing-include-dirs... yes > checking to see if Objective C compiler understands -Wno-multichar... = yes > checking to see if Objective C compiler understands = -Wnested-externs... yes > configure: set WARNING_OBJCFLAGS to -Wall -Wmissing-declarations = -Wmissing-prototypes -Wredundant-decls -Wwrite-strings = -Wold-style-definition -Winit-self -Wmissing-include-dirs -Wno-multichar = -Wnested-externs > configure: set ERROR_OBJCFLAGS to=20 > configure: Using autoaudiosink as default audio sink > configure: Using alsasrc as default audio source > configure: Using autovideosink as default video sink > configure: Using v4l2src as default video source > configure: Using goom as default visualizer >=20 > configure: Checking libraries for plugins in sys/ >=20 >=20 > configure: *** checking feature: DirectSound plug-in *** > configure: *** for plug-ins: directsoundsink *** > configure: *** These plugins will not be built: directsoundsink >=20 > configure: *** checking feature: Win32 WaveForm *** > configure: *** for plug-ins: waveformsink *** > configure: *** These plugins will not be built: waveformsink >=20 > configure: *** checking feature: OSS audio *** > configure: *** for plug-ins: ossaudio *** > checking sys/soundcard.h usability... yes > checking sys/soundcard.h presence... yes > checking for sys/soundcard.h... yes > configure: *** These plugins will be built: ossaudio >=20 > configure: *** checking feature: Open Sound System 4 *** > configure: *** for plug-ins: oss4 *** > checking Checking if we can build the OSS4 elements... checking = fcntl.h usability... yes > checking fcntl.h presence... yes > checking for fcntl.h... yes > checking sys/ioctl.h usability... yes > checking sys/ioctl.h presence... yes > checking for sys/ioctl.h... yes > checking for sys/stat.h... (cached) yes > checking for sys/types.h... (cached) yes > configure: *** These plugins will be built: oss4 >=20 > configure: *** checking feature: Sun Audio *** > configure: *** for plug-ins: sunaudio *** > configure: *** These plugins will not be built: sunaudio >=20 > configure: *** checking feature: OSX audio *** > configure: *** for plug-ins: osxaudio *** > configure: *** These plugins will not be built: osxaudio >=20 > configure: *** checking feature: OSX video *** > configure: *** for plug-ins: osxvideosink *** > configure: *** These plugins will not be built: osxvideosink >=20 > configure: *** checking feature: Video 4 Linux 2 *** > configure: *** for plug-ins: v4l2src *** > configure: *** These plugins will not be built: v4l2src > checking for X... libraries /usr/local/lib, headers /usr/local/include >=20 > configure: *** checking feature: X libraries and plugins *** > configure: *** for plug-ins: ximagesrc *** > configure: *** These plugins will not be built: ximagesrc >=20 > configure: *** checking feature: X Shared Memory extension *** >=20 > configure: *** checking feature: X11 XVideo extensions *** >=20 > configure: Checking libraries for plugins in ext/ >=20 >=20 > configure: *** checking feature: aalib ASCII Art library *** > configure: *** for plug-ins: aasink *** > configure: *** These plugins will not be built: aasink >=20 > configure: *** checking feature: Cairo graphics rendering and gobject = bindings *** > configure: *** for plug-ins: cairo *** > configure: *** These plugins will not be built: cairo >=20 > configure: *** checking feature: FLAC lossless audio *** > configure: *** for plug-ins: flac *** > configure: *** These plugins will not be built: flac >=20 > configure: *** checking feature: GDK pixbuf *** > configure: *** for plug-ins: gdkpixbuf *** > configure: *** These plugins will not be built: gdkpixbuf >=20 > configure: *** checking feature: Jack *** > configure: *** for plug-ins: jack *** > configure: *** These plugins will not be built: jack >=20 > configure: *** checking feature: jpeg library *** > configure: *** for plug-ins: jpeg *** > configure: *** These plugins will not be built: jpeg >=20 > configure: *** checking feature: libcaca coloured ASCII art *** > configure: *** for plug-ins: cacasink *** > configure: *** These plugins will not be built: cacasink >=20 > configure: *** checking feature: libdv DV demuxer/decoder *** > configure: *** for plug-ins: dv *** > configure: *** These plugins will not be built: dv >=20 > configure: *** checking feature: Portable Network Graphics library *** > configure: *** for plug-ins: png *** > configure: *** These plugins will not be built: png >=20 > configure: *** checking feature: pulseaudio plug-in *** > configure: *** for plug-ins: pulseaudio *** > checking process.h usability... no > checking process.h presence... no > checking for process.h... no > checking for PULSE... no > configure: Package libpulse was not found in the pkg-config search = path. > Perhaps you should add the directory containing `libpulse.pc' > to the PKG_CONFIG_PATH environment variable > Package 'libpulse', required by 'world', not found > configure: *** These plugins will not be built: pulseaudio >=20 > configure: *** checking feature: raw1394 and avc1394 library *** > configure: *** for plug-ins: 1394 *** > configure: *** These plugins will not be built: 1394 >=20 > configure: *** checking feature: Shoutcast/Icecast client library *** > configure: *** for plug-ins: shout2 *** > configure: *** These plugins will not be built: shout2 >=20 > configure: *** checking feature: soup http client plugin (2.4) *** > configure: *** for plug-ins: souphttpsrc *** > configure: *** These plugins will not be built: souphttpsrc >=20 > configure: *** checking feature: speex speech codec *** > configure: *** for plug-ins: speex *** > configure: *** These plugins will not be built: speex >=20 > configure: *** checking feature: taglib tagging library *** > configure: *** for plug-ins: taglib *** > configure: *** These plugins will not be built: taglib >=20 > configure: *** checking feature: VPX decoder *** > configure: *** for plug-ins: vpx *** > checking for VPX... yes > checking for vpx_codec_vp8_cx_algo in -lvpx... yes > checking for vpx_codec_vp8_dx_algo in -lvpx... yes > configure: *** These plugins will be built: vpx >=20 > configure: *** checking feature: wavpack plug-in *** > configure: *** for plug-ins: wavpack *** > configure: *** These plugins will not be built: wavpack >=20 > configure: *** checking feature: zlib support for qtdemux/matroska *** > checking for uncompress in -lz... yes > checking zlib.h usability... yes > checking zlib.h presence... yes > checking for zlib.h... yes >=20 > configure: *** checking feature: bz2 library for matroska *** > checking for BZ2_bzCompress in -lbz2... yes > checking bzlib.h usability... yes > checking bzlib.h presence... yes > checking for bzlib.h... yes > checking that generated files are newer than configure... done > configure: creating ./config.status > config.status: creating Makefile > config.status: creating gst/Makefile > config.status: creating gst/alpha/Makefile > config.status: creating gst/apetag/Makefile > config.status: creating gst/audiofx/Makefile > config.status: creating gst/audioparsers/Makefile > config.status: creating gst/auparse/Makefile > config.status: creating gst/autodetect/Makefile > config.status: creating gst/avi/Makefile > config.status: creating gst/cutter/Makefile > config.status: creating gst/deinterlace/Makefile > config.status: creating gst/debugutils/Makefile > config.status: creating gst/effectv/Makefile > config.status: creating gst/equalizer/Makefile > config.status: creating gst/flv/Makefile > config.status: creating gst/goom/Makefile > config.status: creating gst/goom2k1/Makefile > config.status: creating gst/id3demux/Makefile > config.status: creating gst/icydemux/Makefile > config.status: creating gst/imagefreeze/Makefile > config.status: creating gst/interleave/Makefile > config.status: creating gst/isomp4/Makefile > config.status: creating gst/law/Makefile > config.status: creating gst/level/Makefile > config.status: creating gst/matroska/Makefile > config.status: creating gst/monoscope/Makefile > config.status: creating gst/multifile/Makefile > config.status: creating gst/multipart/Makefile > config.status: creating gst/replaygain/Makefile > config.status: creating gst/rtp/Makefile > config.status: creating gst/rtpmanager/Makefile > config.status: creating gst/rtsp/Makefile > config.status: creating gst/shapewipe/Makefile > config.status: creating gst/smpte/Makefile > config.status: creating gst/spectrum/Makefile > config.status: creating gst/udp/Makefile > config.status: creating gst/videobox/Makefile > config.status: creating gst/videocrop/Makefile > config.status: creating gst/videofilter/Makefile > config.status: creating gst/videomixer/Makefile > config.status: creating gst/wavenc/Makefile > config.status: creating gst/wavparse/Makefile > config.status: creating gst/flx/Makefile > config.status: creating gst/y4m/Makefile > config.status: creating ext/Makefile > config.status: creating ext/aalib/Makefile > config.status: creating ext/cairo/Makefile > config.status: creating ext/dv/Makefile > config.status: creating ext/flac/Makefile > config.status: creating ext/gdk_pixbuf/Makefile > config.status: creating ext/jack/Makefile > config.status: creating ext/jpeg/Makefile > config.status: creating ext/libcaca/Makefile > config.status: creating ext/libpng/Makefile > config.status: creating ext/pulse/Makefile > config.status: creating ext/raw1394/Makefile > config.status: creating ext/shout2/Makefile > config.status: creating ext/soup/Makefile > config.status: creating ext/speex/Makefile > config.status: creating ext/taglib/Makefile > config.status: creating ext/vpx/Makefile > config.status: creating ext/wavpack/Makefile > config.status: creating sys/Makefile > config.status: creating sys/directsound/Makefile > config.status: creating sys/oss/Makefile > config.status: creating sys/oss4/Makefile > config.status: creating sys/osxaudio/Makefile > config.status: creating sys/osxvideo/Makefile > config.status: creating sys/sunaudio/Makefile > config.status: creating sys/v4l2/Makefile > config.status: creating sys/waveform/Makefile > config.status: creating sys/ximage/Makefile > config.status: creating po/Makefile.in > config.status: creating tests/Makefile > config.status: creating tests/check/Makefile > config.status: creating tests/examples/Makefile > config.status: creating tests/examples/audiofx/Makefile > config.status: creating tests/examples/cairo/Makefile > config.status: creating tests/examples/equalizer/Makefile > config.status: creating tests/examples/jack/Makefile > config.status: creating tests/examples/level/Makefile > config.status: creating tests/examples/pulse/Makefile > config.status: creating tests/examples/rtp/Makefile > config.status: creating tests/examples/shapewipe/Makefile > config.status: creating tests/examples/spectrum/Makefile > config.status: creating tests/examples/v4l2/Makefile > config.status: creating tests/files/Makefile > config.status: creating tests/icles/Makefile > config.status: creating common/Makefile > config.status: creating common/m4/Makefile > config.status: creating m4/Makefile > config.status: creating docs/Makefile > config.status: creating docs/plugins/Makefile > config.status: creating docs/version.entities > config.status: creating pkgconfig/Makefile > config.status: creating = pkgconfig/gstreamer-plugins-good-uninstalled.pc > config.status: creating gst-plugins-good.spec > config.status: creating config.h > config.status: executing depfiles commands > config.status: executing libtool commands > config.status: executing po-directories commands > config.status: creating po/POTFILES > config.status: creating po/Makefile > config.status: executing _stdint.h commands > config.status: creating _stdint.h : _GST_PLUGINS_GOOD__STDINT_H > configure: *** Plug-ins without external dependencies that will be = built: > alpha > apetag > audiofx > audioparsers > auparse > autodetect > avi > cutter > debugutils > deinterlace > effectv > equalizer > flv > flx > goom > goom2k1 > icydemux > id3demux > imagefreeze > interleave > isomp4 > law > level > matroska > multifile > multipart > replaygain > rtp > rtpmanager > rtsp > shapewipe > smpte > spectrum > udp > videobox > videocrop > videofilter > videomixer > wavenc > wavparse > y4m >=20 > configure: *** Plug-ins without external dependencies that will NOT be = built: > monoscope >=20 > configure: *** Plug-ins that have NOT been ported: >=20 > configure: *** Plug-ins with dependencies that will be built: > oss4 > ossaudio > vpx >=20 > configure: *** Plug-ins with dependencies that will NOT be built: > 1394 > aasink > cacasink > cairo > directsoundsink > dv > flac > gdkpixbuf > jack > jpeg > osxaudio > osxvideosink > png > pulseaudio > shout2 > souphttpsrc > speex > sunaudio > taglib > v4l2src > waveformsink > wavpack > ximagesrc >=20 > configure: *** Orc acceleration enabled. >=20 > =3D=3D=3D> Building for gstreamer1-plugins-vpx-1.0.7 > CC libgstvpx_la-gstvp8dec.lo > CC libgstvpx_la-gstvp8enc.lo > CC libgstvpx_la-gstvp8utils.lo > CC libgstvpx_la-plugin.lo > CCLD libgstvpx.la > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > make: don't know how to make regression-test(continuing) > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > add_pkg freetype2-2.4.11.tbz gamin-0.1.10_5.tbz gettext-0.18.1.1_1.tbz = gio-fam-backend-2.34.3.tbz glib-2.34.3.tbz gnomehier-3.0.tbz = gobject-introspection-1.34.2.tbz gstreamer1-1.0.7.tbz = gstreamer1-plugins-1.0.7.tbz gstreamer1-plugins-good-1.0.7.tbz = iso-codes-3.41.tbz libffi-3.0.13.tbz libiconv-1.14_1.tbz = libvpx-1.1.0.tbz libxml2-2.8.0_2.tbz orc-0.4.16_1.tbz pcre-8.32.tbz = perl-5.14.2_3.tbz pkgconf-0.9.2_1.tbz python27-2.7.3_6.tbz > adding dependencies > adding package freetype2-2.4.11.tbz > skipping freetype2-2.4.11, already added > adding package gamin-0.1.10_5.tbz > skipping gamin-0.1.10_5, already added > adding package gettext-0.18.1.1_1.tbz > skipping gettext-0.18.1.1_1, already added > adding package gio-fam-backend-2.34.3.tbz > skipping gio-fam-backend-2.34.3, already added > adding package glib-2.34.3.tbz > skipping glib-2.34.3, already added > adding package gnomehier-3.0.tbz > skipping gnomehier-3.0, already added > adding package gobject-introspection-1.34.2.tbz > skipping gobject-introspection-1.34.2, already added > adding package gstreamer1-1.0.7.tbz > skipping gstreamer1-1.0.7, already added > adding package gstreamer1-plugins-1.0.7.tbz > skipping gstreamer1-plugins-1.0.7, already added > adding package gstreamer1-plugins-good-1.0.7.tbz > skipping gstreamer1-plugins-good-1.0.7, already added > adding package iso-codes-3.41.tbz > skipping iso-codes-3.41, already added > adding package libffi-3.0.13.tbz > skipping libffi-3.0.13, already added > adding package libiconv-1.14_1.tbz > skipping libiconv-1.14_1, already added > adding package libvpx-1.1.0.tbz > skipping libvpx-1.1.0, already added > adding package libxml2-2.8.0_2.tbz > skipping libxml2-2.8.0_2, already added > adding package orc-0.4.16_1.tbz > skipping orc-0.4.16_1, already added > adding package pcre-8.32.tbz > skipping pcre-8.32, already added > adding package perl-5.14.2_3.tbz > skipping perl-5.14.2_3, already added > adding package pkgconf-0.9.2_1.tbz > skipping pkgconf-0.9.2_1, already added > adding package python27-2.7.3_6.tbz > skipping python27-2.7.3_6, already added > =3D=3D=3D> Installing for gstreamer1-plugins-vpx-1.0.7 > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on package: = iso-codes>=3D0 - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on package: = gstreamer1-plugins-good>=3D1.0.5 - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on shared library: = gstreamer-1.0 - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on shared library: = freetype - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on shared library: = orc-0.4 - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on shared library: = intl - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on shared library: = vpx - found > =3D=3D=3D> gstreamer1-plugins-vpx-1.0.7 depends on shared library: = xml2.5 - found > =3D=3D=3D> Generating temporary packing list > =3D=3D=3D> Checking if multimedia/gstreamer1-plugins-vpx already = installed > gmake[1]: Entering directory = `/work/a/ports/multimedia/gstreamer1-plugins-vpx/work/gst-plugins-good-1.0= .7/ext/vpx' > gmake[1]: Nothing to be done for `install-exec-am'. > /bin/mkdir -p '/usr/local/lib/gstreamer-1.0' > /bin/sh = /work/a/ports/multimedia/gstreamer1-plugins-vpx/work/gnome-libtool = --mode=3Dinstall /usr/bin/install -c -o root -g wheel libgstvpx.la = '/usr/local/lib/gstreamer-1.0' > gnome-libtool: install: /usr/bin/install -c -o root -g wheel = .libs/libgstvpx.so /usr/local/lib/gstreamer-1.0/libgstvpx.so > gnome-libtool: install: /usr/bin/install -c -o root -g wheel = .libs/libgstvpx.lai /usr/local/lib/gstreamer-1.0/libgstvpx.la > /bin/mkdir -p '/usr/local/share/gstreamer-1.0/presets' > install -o root -g wheel -m 444 GstVP8Enc.prs = '/usr/local/share/gstreamer-1.0/presets' > gmake[1]: Leaving directory = `/work/a/ports/multimedia/gstreamer1-plugins-vpx/work/gst-plugins-good-1.0= .7/ext/vpx' > =3D=3D=3D> Running ldconfig > /sbin/ldconfig -m /usr/local/lib > =3D=3D=3D> Registering installation for gstreamer1-plugins-vpx-1.0.7 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D> Building package for gstreamer1-plugins-vpx-1.0.7 > Deleting gstreamer1-plugins-vpx-1.0.7 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >=20 > =3D=3D=3D Checking filesystem state > list of extra files and directories in / (not present before this port = was installed but present after it was deinstalled) > 1821128 2 -r--r--r-- 1 root wheel = 106 May 10 06:23 usr/local/share/gstreamer-1.0/presets/GstVP8Enc.prs > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > build of /usr/ports/multimedia/gstreamer1-plugins-vpx ended at Fri May = 10 06:23:38 UTC 2013 >=20 +-----------------oOO--(_)--OOo-------------------------+ With best Regards, Martin Wilke (miwi_(at)_FreeBSD.org) Mess with the Best, Die like the Rest From owner-freebsd-multimedia@FreeBSD.ORG Fri May 10 13:19:33 2013 Return-Path: Delivered-To: multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 98D2F877 for ; Fri, 10 May 2013 13:19:33 +0000 (UTC) (envelope-from portscout@portscout.freebsd.org) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id 613F191E for ; Fri, 10 May 2013 13:19:33 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id r4ADJRve024436 for ; Fri, 10 May 2013 09:19:27 -0400 (EDT) (envelope-from portscout@null.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id r4ADJRFP024171; Fri, 10 May 2013 09:19:27 -0400 (EDT) (envelope-from portscout) Message-Id: <201305101319.r4ADJRFP024171@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Fri, 10 May 2013 09:19:27 -0400 From: portscout@portscout.freebsd.org To: multimedia@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 May 2013 13:19:33 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/multimedia@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ multimedia/avidemux2 | 2.5.6 | 2.6.4 ------------------------------------------------+-----------------+------------ multimedia/avidemux2-plugins | 2.5.6 | 2.6.4 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks.