Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
Gmencoder is a GNOME2 frontend to mplayer/mencoder. It supports much of the
output codecs, as well as postprocesing, cropping, scaling, subtitles ripping,
and one, two or three passes for encoding.

View File

@@ -0,0 +1,38 @@
# $NetBSD: Makefile,v 1.61 2013/06/06 12:54:51 wiz Exp $
#
DISTNAME= gmencoder-0.1.0
PKGREVISION= 48
CATEGORIES= multimedia
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gmencoder/}
EXTRACT_SUFX= .tgz
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://gmencoder.sourceforge.net/
COMMENT= GNOME2 frontend to mencoder
DEPENDS+= mencoder>=0.90:../../multimedia/mencoder
DEPENDS+= mplayer>=0.90:../../multimedia/mplayer
GNU_CONFIGURE= yes
USE_TOOLS+= gmake msgfmt pkg-config
USE_PKGLOCALEDIR= yes
CFLAGS+= -DPKG_SYSCONFDIR="\"${PKG_SYSCONFDIR}\""
EGDIR= ${PREFIX}/share/examples/gmencoder
CONF_FILES= ${EGDIR}/gmencoder_opts ${PKG_SYSCONFDIR}/gmencoder_opts
INSTALLATION_DIRS= ${EGDIR}
post-build:
${MV} ${WRKSRC}/etc/gmencoder_opts ${WRKSRC}/etc/gmencoder_opts.in
${SED} -e 's|/usr/local|${PREFIX}|g' \
< ${WRKSRC}/etc/gmencoder_opts.in > ${WRKSRC}/etc/gmencoder_opts
post-install:
${INSTALL_DATA} ${WRKSRC}/etc/gmencoder_opts ${DESTDIR}${EGDIR}
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../devel/libgnomeui/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

View File

@@ -0,0 +1,7 @@
@comment $NetBSD: PLIST,v 1.4 2009/06/14 18:08:04 joerg Exp $
bin/gmencoder
share/examples/gmencoder/gmencoder_opts
share/locale/es/LC_MESSAGES/gmencoder.mo
share/locale/en/LC_MESSAGES/gmencoder.mo
share/pixmaps/gmencoder/media-pause.png
share/pixmaps/gmencoder/media-play.png

View File

@@ -0,0 +1,8 @@
$NetBSD: distinfo,v 1.2 2005/02/24 11:24:02 agc Exp $
SHA1 (gmencoder-0.1.0.tgz) = c262f402b004e2d13fec8f2e81eaf5309f268d83
RMD160 (gmencoder-0.1.0.tgz) = 2621bbcdb8180a940f29a1501acb65e170c2520a
Size (gmencoder-0.1.0.tgz) = 120557 bytes
SHA1 (patch-aa) = 989772ed57ae44eb19f7d8f64a0ee20de5355de4
SHA1 (patch-ab) = bbb32ad10269338ca727e951e11c7a4fdb00ce5d
SHA1 (patch-ac) = b36a57a29360042a2ff266d3d6fea8372747c707

View File

@@ -0,0 +1,12 @@
$NetBSD: patch-aa,v 1.1.1.1 2004/01/26 12:12:06 jmmv Exp $
--- src/callbacks.c.orig 2003-04-23 19:55:26.000000000 +0200
+++ src/callbacks.c 2003-04-23 19:55:40.000000000 +0200
@@ -8,6 +8,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
+#include <pthread.h>
#include "callbacks.h"
#include "interface.h"

View File

@@ -0,0 +1,13 @@
$NetBSD: patch-ab,v 1.1.1.1 2004/01/26 12:12:06 jmmv Exp $
--- src/main.c.orig 2003-06-12 17:32:13.000000000 +0200
+++ src/main.c
@@ -359,7 +359,7 @@ Configura ()
if (!strlen (fichero_opts))
{
- sprintf (fichero_opts, "/etc/gmencoder_opts", home);
+ sprintf (fichero_opts, PKG_SYSCONFDIR "/gmencoder_opts", home);
if (-1 != (fd = open (fichero_opts, O_RDONLY)))
{
close (fd);

View File

@@ -0,0 +1,22 @@
$NetBSD: patch-ac,v 1.1.1.1 2004/01/26 12:12:06 jmmv Exp $
--- configure.orig 2003-06-12 17:48:46.000000000 +0200
+++ configure
@@ -3876,7 +3876,7 @@ done
# Busco la versión de mplayer
echo -n checking for mplayer...
-MPLAYER=`type -path mplayer`
+MPLAYER=`whereis mplayer`
if [ "$?" = "1" ] ; then
echo No mplayer found in your path
fi
@@ -3901,7 +3901,7 @@ esac
EXTRA_DEFS="$EXTRA_DEFS -D$VER -DMP_PATH=\\\"\"${MPLAYER}\\\"\""
echo -n checking for mencoder...
-MENCODER=`type -path mencoder`
+MENCODER=`whereis mencoder`
if [ "$?" = "1" ] ; then
echo No mencoder found in your path
fi