blob: 37f985321e81f4fb62e20403264a37806558fd59 (
plain)
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
34
35
36
37
38
39
|
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
# $FreeBSD$
PORTNAME= scanmem
PORTVERSION= 0.13
CATEGORIES= sysutils
MASTER_SITES= GOOGLE_CODE
EXTRACT_SUFX= _.tar.gz
MAINTAINER= danfe@FreeBSD.org
COMMENT= Locate and modify various data in an executing process
LICENSE= GPLv3
BROKEN= Unfetchable (google code has gone away)
DEPRECATED= Unfetchable for more than six months (google code has gone away)
EXPIRATION_DATE= 2017-04-30
ONLY_FOR_ARCHS= i386 amd64
ONLY_FOR_ARCHS_REASON= requires linprocfs(5)
USES= readline
GNU_CONFIGURE= yes
CONFIGURE_ENV= ac_cv_file__proc_self_maps=yes \
ac_cv_file__proc_self_mem=yes
OPTIONS_DEFINE= X11 DOCS
OPTIONS_SUB= yes
X11_DESC= Install PyGTK-based GUI (GameConqueror)
X11_CATEGORIES= python
X11_RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/pygtk-2.0.pc:x11-toolkits/py-gtk2
X11_CONFIGURE_ON= --enable-gui
post-patch:
@${REINPLACE_CMD} -e 's,/proc/,/compat/linux&,' ${WRKSRC}/configure
@${REINPLACE_CMD} -e 's, COPYING,,' ${WRKSRC}/gui/Makefile.in
.include <bsd.port.mk>
|