1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

The AnimeNfo client

The simplest AnimeNfo client. Written in C.
Despite being the simplest example of AnimeNfo client,
all socket operations were done in non-blocking.
This commit is contained in:
Dirk Meyer 2006-11-02 20:32:52 +00:00
parent 01f9727b86
commit 235e07a2f0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=176221
4 changed files with 34 additions and 0 deletions

View File

@ -6,6 +6,7 @@
SUBDIR += WWWdb
SUBDIR += adodb
SUBDIR += adstudio
SUBDIR += animenfo-client
SUBDIR += bbdb
SUBDIR += bbdb-emacs20
SUBDIR += cdb

View File

@ -0,0 +1,25 @@
# New ports collection makefile for: animenfo-client
# Date created: 3rd August 2001
# Whom: dirk.meyer@dinoex.sub.org
#
# $FreeBSD$
#
PORTNAME= animenfo
PORTVERSION= 20020819
CATEGORIES= databases
MASTER_SITES= http://www.animenfo.com/extension/files/
PKGNAMESUFFIX= -client
DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}
EXTRACT_SUFX= .tgz
MAINTAINER= dinoex@FreeBSD.org
COMMENT= AnimeNfo client
USE_GMAKE= yes
PLIST_FILES= bin/animenfo-client
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/animenfo-client ${PREFIX}/bin/
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (animenfo-client.tgz) = ddb3e9d3a9193e2c2617bf8f143c0b53
SHA256 (animenfo-client.tgz) = 5fbc77c958fe19ba0cd768e9c496816e7dfc32186e6b4ce91eabbbde901675a5
SIZE (animenfo-client.tgz) = 10300

View File

@ -0,0 +1,5 @@
The AnimeNfo client
The simplest AnimeNfo client. Written in C.
Despite being the simplest example of AnimeNfo client,
all socket operations were done in non-blocking.