pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
+oggfwd: pipes an ogg stream to an icecast server
Module Name: pkgsrc-wip
Committed By: AcidBear <jake.slazenger%yandex.com@localhost>
Pushed By: jakeSlaz
Date: Thu Feb 13 18:25:52 2020 +0300
Changeset: fdf0e674d5af6b901df95b882599bd862bf29a7b
Added Files:
oggfwd/DESCR
oggfwd/Makefile
oggfwd/PLIST
oggfwd/distinfo
oggfwd/patches/patch-Makefile
Log Message:
+oggfwd: pipes an ogg stream to an icecast server
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=fdf0e674d5af6b901df95b882599bd862bf29a7b
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
oggfwd/DESCR | 1 +
oggfwd/Makefile | 22 ++++++++++++++++++++++
oggfwd/PLIST | 3 +++
oggfwd/distinfo | 7 +++++++
oggfwd/patches/patch-Makefile | 18 ++++++++++++++++++
5 files changed, 51 insertions(+)
diffs:
diff --git a/oggfwd/DESCR b/oggfwd/DESCR
new file mode 100644
index 0000000000..c2f2805c92
--- /dev/null
+++ b/oggfwd/DESCR
@@ -0,0 +1 @@
+Just reads from stdin and sends to icecast server using libshout
diff --git a/oggfwd/Makefile b/oggfwd/Makefile
new file mode 100644
index 0000000000..f565a79d0e
--- /dev/null
+++ b/oggfwd/Makefile
@@ -0,0 +1,22 @@
+# $NetBSD$
+
+DISTNAME= oggfwd
+PKGNAME= oggfwd-20150329
+CATEGORIES= multimedia
+GIT_REPO= https://r-w-x.org/r/oggfwd.git
+
+MAINTAINER= jake.slazenger%yandex.com@localhost
+HOMEPAGE= http://v2v.cc/~j/oggfwd/
+COMMENT= pipes an ogg stream to an icecast server.
+LICENSE= gnu-gpl-v2
+
+USE_LANGUAGES= c
+
+# url2pkg-marker (please do not remove this line.)
+.include "../../audio/libshout/buildlink3.mk"
+.include "../../audio/libvorbis/buildlink3.mk"
+.include "../../multimedia/libogg/buildlink3.mk"
+.include "../../multimedia/libtheora/buildlink3.mk"
+
+.include "../../wip/mk/git-package.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/oggfwd/PLIST b/oggfwd/PLIST
new file mode 100644
index 0000000000..7a4b6a7354
--- /dev/null
+++ b/oggfwd/PLIST
@@ -0,0 +1,3 @@
+@comment $NetBSD$
+bin/oggfwd
+man/man1/oggfwd.1
diff --git a/oggfwd/distinfo b/oggfwd/distinfo
new file mode 100644
index 0000000000..13e11486ec
--- /dev/null
+++ b/oggfwd/distinfo
@@ -0,0 +1,7 @@
+$NetBSD$
+
+SHA1 (oggfwd.git) = e4328426a21175db2df4e36630f67d31ca9631fd
+RMD160 (oggfwd.git) = 9ff453afe215fa355645b1d0638fd45f6216255b
+SHA512 (oggfwd.git) = 156c6219d8dfd99c9ce754cc55c45288ae38c3302b72fd007ddd2c93499d31f805850e9fa63a73525d7a8a555eddf650d824dcce48cbba22fff8327d5ae9433a
+Size (oggfwd.git) = 17791 bytes
+SHA1 (patch-Makefile) = 58aec68ba72bc8a44ec678b0279e56e9ed63da60
diff --git a/oggfwd/patches/patch-Makefile b/oggfwd/patches/patch-Makefile
new file mode 100644
index 0000000000..9f7751ebb7
--- /dev/null
+++ b/oggfwd/patches/patch-Makefile
@@ -0,0 +1,18 @@
+$NetBSD$
+
+--- Makefile.orig 2020-02-13 14:26:47.000000000 +0000
++++ Makefile
+@@ -23,9 +23,10 @@ ${PROG}: ${SRC}
+ ${CC} ${CFLAGS} ${PTHREADFLAGS} ${INCLUDEFLAGS} -o ${PROG} $< ${LINKFLAGS}
+
+ install: ${PROG}
+- ${INSTALL} -c -m 555 -o root -g bin ${PROG} ${BINDIR}
+- test -d ${MAN1DIR} || ${INSTALL} -d -o root ${MAN1DIR}
+- ${INSTALL} -c -m 444 -o root -g bin ${MAN} ${MAN1DIR}
++ ${INSTALL} -d ${DESTDIR}/${BINDIR}
++ ${INSTALL} -c -m 555 ${PROG} ${DESTDIR}/${BINDIR}
++ ${INSTALL} -d ${DESTDIR}/${MAN1DIR}
++ ${INSTALL} -c -m 444 ${MAN} ${DESTDIR}/${MAN1DIR}
+
+ clean:
+ -@rm -f ${PROG} *~ core *.core
Home |
Main Index |
Thread Index |
Old Index