Import libticables2-1.3.3 as comms/libticables2.

"Tilp is a Linking Program" - The TiLP project aims to develop a multi-platform
linking program for use with all TI graphing calculators (TI73 ... V200PLT).

Supported link cables are: GrayLink, BlackLink, SilverLink, DirectLink Parallel
Link, VTi (virtual) and TiEmu (virtual).

Supported hand-helds are: TI73, TI82, TI83, TI83+, TI84+, TI85, TI86, TI89,
Titanium, TI92, TI92+, V200, NSpire, NSpire-CAS.

Capabilities: silent link, screendump, directory listing, send/recv of vars,
send/Recv of backups, send/recv of FLASH apps, send of OS, ROM dumping, ID LIST,
clock, create folder, delete var/app...
This commit is contained in:
rodent 2013-05-26 22:57:53 +00:00
parent f3340f3fc0
commit 365ac28956
6 changed files with 105 additions and 0 deletions

12
comms/libticables2/DESCR Normal file
View file

@ -0,0 +1,12 @@
"Tilp is a Linking Program" - The TiLP project aims to develop a multi-platform
linking program for use with all TI graphing calculators (TI73 ... V200PLT).
Supported link cables are: GrayLink, BlackLink, SilverLink, DirectLink Parallel
Link, VTi (virtual) and TiEmu (virtual).
Supported hand-helds are: TI73, TI82, TI83, TI83+, TI84+, TI85, TI86, TI89,
Titanium, TI92, TI92+, V200, NSpire, NSpire-CAS.
Capabilities: silent link, screendump, directory listing, send/recv of vars,
send/Recv of backups, send/recv of FLASH apps, send of OS, ROM dumping, ID LIST,
clock, create folder, delete var/app...

View file

@ -0,0 +1,26 @@
# $NetBSD: Makefile,v 1.1 2013/05/26 22:57:53 rodent Exp $
#
DISTNAME= libticables2-1.3.3
CATEGORIES= comms
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tilp/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= rodent@NetBSD.org
HOMEPAGE= http://lpg.ticalc.org/prj_tilp/
COMMENT= Multi-platform linking program for TI graphing calculators
LICENSE= gnu-gpl-v2
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
USE_TOOLS+= intltool msgfmt msgmerge pkg-config xgettext
USE_PKGLOCALEDIR= yes
PKGCONFIG_OVERRIDE+= ticables2.pc.in
.include "options.mk"
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk"
.include "../../converters/libiconv/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

8
comms/libticables2/PLIST Normal file
View file

@ -0,0 +1,8 @@
@comment $NetBSD: PLIST,v 1.1 2013/05/26 22:57:53 rodent Exp $
include/tilp2/export1.h
include/tilp2/stdints1.h
include/tilp2/ticables.h
include/tilp2/timeout.h
lib/libticables2.la
lib/pkgconfig/ticables2.pc
${PLIST.nls}share/locale/fr/LC_MESSAGES/libticables2.mo

View file

@ -0,0 +1,30 @@
# $NetBSD: buildlink3.mk,v 1.1 2013/05/26 22:57:53 rodent Exp $
BUILDLINK_TREE+= libticables2
.if !defined(LIBTICABLES2_BUILDLINK3_MK)
LIBTICABLES2_BUILDLINK3_MK:=
BUILDLINK_API_DEPENDS.libticables2+= libticables2>=1.3.3
BUILDLINK_PKGSRCDIR.libticables2?= ../../comms/libticables2
pkgbase := libticables2
.include "../../mk/pkg-build-options.mk"
.if !empty(PKG_BUILD_OPTIONS.libticables2:Mlibusb)
.if empty(PKG_BUILD_OPTIONS.libticables2:Mlibusb1)
.include "../../devel/libusb/buildlink3.mk"
.endif
.endif
.if !empty(PKG_BUILD_OPTIONS.libticables2:Mlibusb1)
.include "../../devel/libusb1/buildlink3.mk"
.endif
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk"
.include "../../converters/libiconv/buildlink3.mk"
.endif # LIBTICABLES2_BUILDLINK3_MK
BUILDLINK_TREE+= -libticables2

View file

@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.1 2013/05/26 22:57:53 rodent Exp $
SHA1 (libticables2-1.3.3.tar.bz2) = 468fc783e07a6349f27185498f340f5ee6af565c
RMD160 (libticables2-1.3.3.tar.bz2) = 0d8df15f82fe587caa235672c1ccf357e5066404
Size (libticables2-1.3.3.tar.bz2) = 495883 bytes

View file

@ -0,0 +1,24 @@
# $NetBSD: options.mk,v 1.1 2013/05/26 22:57:53 rodent Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.libticables2
PKG_SUPPORTED_OPTIONS= libusb libusb1 nls
PKG_SUGGESTED_OPTIONS+= libusb nls
PLIST_VARS+= nls
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mlibusb)
BUILDLINK_ABI_DEPENDS.libusb+= libusb>=0.1.12
.include "../../devel/libusb/buildlink3.mk"
.endif
.if !empty(PKG_OPTIONS:Mlibusb1)
.include "../../devel/libusb1/buildlink3.mk"
CONFIGURE_ARGS+= --enable-libusb10
.endif
.if !empty(PKG_OPTIONS:Mnls)
PLIST.nls= yes
.else
CONFIGURE_ARGS+= --disable-nls
.endif