upgrade to version 3.2
This commit is contained in:
parent
8d3d86e3a5
commit
f749ec286b
@ -1,8 +1,8 @@
|
|||||||
# $OpenBSD: Makefile,v 1.3 2001/06/06 10:01:41 kevlo Exp $
|
# $OpenBSD: Makefile,v 1.4 2001/08/11 16:08:47 kevlo Exp $
|
||||||
|
|
||||||
COMMENT= "generic playlist manager for UNIX"
|
COMMENT= "generic playlist manager for UNIX"
|
||||||
|
|
||||||
DISTNAME= xhippo-3.1
|
DISTNAME= xhippo-3.2
|
||||||
CATEGORIES= audio
|
CATEGORIES= audio
|
||||||
NEED_VERSION= 1.414
|
NEED_VERSION= 1.414
|
||||||
|
|
||||||
@ -28,8 +28,8 @@ CONFIGURE_STYLE= gnu
|
|||||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||||
LDFLAGS="-L${LOCALBASE}/lib"
|
LDFLAGS="-L${LOCALBASE}/lib"
|
||||||
|
|
||||||
DOCS= ChangeLog gnu-xhippo.html screenshot.jpeg xhippo.info.gz \
|
DOCS= ChangeLog gnu-xhippo.html screenshot.jpeg xhippo.html.gz \
|
||||||
xhippo.ps.gz xhippo.sgml xhippo.txt.gz
|
xhippo.info.gz xhippo.ps.gz xhippo.sgml xhippo.txt.gz
|
||||||
|
|
||||||
post-install:
|
post-install:
|
||||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xhippo
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xhippo
|
||||||
@ -37,5 +37,6 @@ post-install:
|
|||||||
${INSTALL_DATA} ${WRKSRC}/xhippo.config ${PREFIX}/share/examples/xhippo/xhippo.config-sample
|
${INSTALL_DATA} ${WRKSRC}/xhippo.config ${PREFIX}/share/examples/xhippo/xhippo.config-sample
|
||||||
${INSTALL_DATA} ${WRKSRC}/xhippo.gtkrc ${PREFIX}/share/examples/xhippo
|
${INSTALL_DATA} ${WRKSRC}/xhippo.gtkrc ${PREFIX}/share/examples/xhippo
|
||||||
cd ${WRKSRC}/doc; ${INSTALL_DATA} ${DOCS} ${PREFIX}/share/doc/xhippo
|
cd ${WRKSRC}/doc; ${INSTALL_DATA} ${DOCS} ${PREFIX}/share/doc/xhippo
|
||||||
|
${INSTALL_MAN} ${WRKSRC}/doc/xhippo.1 ${PREFIX}/man/man1
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.mk>
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
MD5 (xhippo-3.1.tar.gz) = 10174dce4b78e68117a84da4e75486ea
|
MD5 (xhippo-3.2.tar.gz) = 8f8a0ae7006f162aebc19af3680970a8
|
||||||
RMD160 (xhippo-3.1.tar.gz) = 2a81779bab03e76cbc9289676ddc0491011411c3
|
RMD160 (xhippo-3.2.tar.gz) = 929548977e33b91722d5e9d4788e26e58997e1dd
|
||||||
SHA1 (xhippo-3.1.tar.gz) = a4567175d66e4cabc209d29a7d6046002cc8e1bd
|
SHA1 (xhippo-3.2.tar.gz) = 24a5468ff8cca2f92a3ce8ca8bd3d7592b2b191d
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
--- callbacks.c.orig Wed Jun 6 09:05:30 2001
|
|
||||||
+++ callbacks.c Wed Jun 6 09:07:03 2001
|
|
||||||
@@ -428,11 +428,12 @@
|
|
||||||
if (!(*++q == '\n')) break;
|
|
||||||
*q = '\0';
|
|
||||||
if (strlen(p) > 5 && !strncmp(p, "file:", 5)) {
|
|
||||||
- if (filetype(p + 5) == 2) {
|
|
||||||
+#ifdef HAVE_NFTW
|
|
||||||
+ if (filetype(p + 5) == 2)
|
|
||||||
add_directory(p + 5);
|
|
||||||
- } else {
|
|
||||||
+#endif
|
|
||||||
+ if (filetype(p + 5) != 2)
|
|
||||||
add_file(p + 5);
|
|
||||||
- }
|
|
||||||
}
|
|
||||||
p = q + 1;
|
|
||||||
}
|
|
@ -1,22 +0,0 @@
|
|||||||
--- xhippo.c.orig Wed Jun 6 09:03:19 2001
|
|
||||||
+++ xhippo.c Wed Jun 6 09:05:04 2001
|
|
||||||
@@ -611,13 +611,14 @@
|
|
||||||
|
|
||||||
/* Deal with non-options */
|
|
||||||
while (optind < argc) {
|
|
||||||
- if (mode_commandline_songs) {
|
|
||||||
+ if (mode_commandline_songs)
|
|
||||||
add_file(argv[optind++]);
|
|
||||||
- } else if (mode_commandline_dirs) {
|
|
||||||
- add_directory(argv[optind++]);
|
|
||||||
- } else {
|
|
||||||
+ else
|
|
||||||
read_playlist(argv[optind++]);
|
|
||||||
- }
|
|
||||||
+#ifdef HAVE_NFTW
|
|
||||||
+ if (mode_commandline_dirs)
|
|
||||||
+ add_directory(argv[optind++]);
|
|
||||||
+#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Show the list and scrollbar. */
|
|
@ -1,8 +1,10 @@
|
|||||||
@comment $OpenBSD: PLIST,v 1.2 2001/06/06 10:01:51 kevlo Exp $
|
@comment $OpenBSD: PLIST,v 1.3 2001/08/11 16:08:57 kevlo Exp $
|
||||||
bin/xhippo
|
bin/xhippo
|
||||||
|
man/man1/xhippo.1
|
||||||
share/doc/xhippo/ChangeLog
|
share/doc/xhippo/ChangeLog
|
||||||
share/doc/xhippo/gnu-xhippo.html
|
share/doc/xhippo/gnu-xhippo.html
|
||||||
share/doc/xhippo/screenshot.jpeg
|
share/doc/xhippo/screenshot.jpeg
|
||||||
|
share/doc/xhippo/xhippo.html.gz
|
||||||
share/doc/xhippo/xhippo.info.gz
|
share/doc/xhippo/xhippo.info.gz
|
||||||
share/doc/xhippo/xhippo.ps.gz
|
share/doc/xhippo/xhippo.ps.gz
|
||||||
share/doc/xhippo/xhippo.sgml
|
share/doc/xhippo/xhippo.sgml
|
||||||
|
Loading…
x
Reference in New Issue
Block a user