blob: 0c0df897d9b6c180079f662ea33635ea0a64d93c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# New ports collection makefile for: ascii2binary
# Date created: Sun 29 January 2006
# Whom: thierry@pompo.net
#
# $FreeBSD$
#
PORTNAME= ascii2binary
PORTVERSION= 2.14
CATEGORIES= converters
MASTER_SITES= http://billposer.org/Software/Downloads/
MAINTAINER= thierry@FreeBSD.org
COMMENT= Convert between textual representations of numbers and binary
USE_BZIP2= yes
USES= gettext
LICENSE= GPLv3
GNU_CONFIGURE= yes
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
PLIST_FILES= bin/ascii2binary bin/binary2ascii
MAN1= ascii2binary.1 binary2ascii.1
pre-configure:
${REINPLACE_CMD} -e "s|/usr/local|${LOCALBASE}|" ${WRKSRC}/Makefile.in
.include <bsd.port.mk>
|