diff options
author | pi <pi@FreeBSD.org> | 2014-08-15 02:45:19 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2014-08-15 02:45:19 +0800 |
commit | 9cb2e1bf3a1f73fe1d19eb4f6a4c09a2b1c43299 (patch) | |
tree | a0dc71b2268592f8baf6507c70a7ded61393d1d0 | |
parent | 74fb6caef92f04592d097574f7d14478016541b1 (diff) | |
download | freebsd-ports-gnome-9cb2e1bf3a1f73fe1d19eb4f6a4c09a2b1c43299.tar.gz freebsd-ports-gnome-9cb2e1bf3a1f73fe1d19eb4f6a4c09a2b1c43299.tar.zst freebsd-ports-gnome-9cb2e1bf3a1f73fe1d19eb4f6a4c09a2b1c43299.zip |
New port: graphics/seq2gif
This software converts a sequences record file generated by ttyrec into a
gif animation directly using portable built-in terminal emulation engine
originated from yaft. yaft provides rare terminal emulation features such as
SIXEL/DRCS.
WWW: http://saitoha.github.io/seq2gif/
PR: 192418
Submitted by: IWAMOTO Kouichi <sue@iwmt.org>
-rw-r--r-- | graphics/Makefile | 1 | ||||
-rw-r--r-- | graphics/seq2gif/Makefile | 36 | ||||
-rw-r--r-- | graphics/seq2gif/distinfo | 2 | ||||
-rw-r--r-- | graphics/seq2gif/pkg-descr | 6 |
4 files changed, 45 insertions, 0 deletions
diff --git a/graphics/Makefile b/graphics/Makefile index 337b64808a0c..89756b567d57 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -961,6 +961,7 @@ SUBDIR += seam-carving-gui SUBDIR += seejpeg SUBDIR += separate + SUBDIR += seq2gif SUBDIR += sharpconstruct SUBDIR += shiva-collections SUBDIR += shotwell diff --git a/graphics/seq2gif/Makefile b/graphics/seq2gif/Makefile new file mode 100644 index 000000000000..9ebb304c4358 --- /dev/null +++ b/graphics/seq2gif/Makefile @@ -0,0 +1,36 @@ +# $FreeBSD$ + +PORTNAME= seq2gif +PORTVERSION= 0.10.3.20140802 +#PORTEPOCH= 0 +CATEGORIES= graphics + +MAINTAINER= sue@iwmt.org +COMMENT= Convert a ttyrec record into a gif animation directly + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +USE_GITHUB= yes +GH_ACCOUNT= saitoha +#GH_TAGNAME= v${PORTVERSION} +GH_TAGNAME= ${GH_COMMIT} +GH_COMMIT= 253dacb + +USE_LDCONFIG= yes +USES= libtool + +GNU_CONFIGURE= yes +#CONFIGURE_ARGS= --with-pkgconfigdir=${LOCALBASE}/libdata/pkgconfig + +INSTALL_TARGET= install-strip + +PORTDOCS= README.md + +PLIST_FILES= bin/seq2gif + +post-install: + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> diff --git a/graphics/seq2gif/distinfo b/graphics/seq2gif/distinfo new file mode 100644 index 000000000000..4e8ef9e3cf07 --- /dev/null +++ b/graphics/seq2gif/distinfo @@ -0,0 +1,2 @@ +SHA256 (seq2gif-0.10.3.20140802.tar.gz) = 6d1cec20e0b85e4e21706b82e85447b0ed421cb11dc4f872bc0a4765631b04ba +SIZE (seq2gif-0.10.3.20140802.tar.gz) = 12236640 diff --git a/graphics/seq2gif/pkg-descr b/graphics/seq2gif/pkg-descr new file mode 100644 index 000000000000..87d07a780f6f --- /dev/null +++ b/graphics/seq2gif/pkg-descr @@ -0,0 +1,6 @@ +This software converts a sequences record file generated by ttyrec into a +gif animation directly using portable built-in terminal emulation engine +originated from yaft. yaft provides rare terminal emulation features such as +SIXEL/DRCS. + +WWW: http://saitoha.github.io/seq2gif/ |