View | Details | Raw Unified | Return to bug 54014
Collapse All | Expand All

(-)aap/Makefile (-19 / +17 lines)
Lines 7-12 Link Here
7
7
8
PORTNAME=	aap
8
PORTNAME=	aap
9
PORTVERSION=	0.900
9
PORTVERSION=	0.900
10
PORTREVISION=	1
10
CATEGORIES=	devel
11
CATEGORIES=	devel
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=	a-a-p
13
MASTER_SITE_SUBDIR=	a-a-p
Lines 16-56 Link Here
16
17
17
MAN1=		aap.1
18
MAN1=		aap.1
18
19
20
NO_BUILD=	yes
19
NO_WRKSUBDIR=	yes
21
NO_WRKSUBDIR=	yes
20
22
21
USE_ZIP=	yes
23
USE_ZIP=	yes
22
USE_PYTHON=	yes
24
USE_PYTHON=	yes
23
PLIST_SUB+=	PORTVERSION=${PORTVERSION}
25
PLIST_SUB+=	PORTVERSION=${PORTVERSION}
24
26
25
# This port does not need to build anything here
26
do-build:
27
	@${TRUE}
28
29
# The files are installed in lib/aap/Exec-${PORTVERSION} and below.  Create
27
# The files are installed in lib/aap/Exec-${PORTVERSION} and below.  Create
30
# a symbolic link for bin/aap so that it's found in $PATH and still knows
28
# a symbolic link for bin/aap so that it's found in $PATH and still knows
31
# where to find the Python modules.
29
# where to find the Python modules.
32
# Also create a link for share/doc/aap, so that more people can find the docs
30
# Also create a link for share/doc/aap, so that more people can find the docs
33
# without clobbering share/doc.
31
# without clobbering share/doc.
34
AAPEXECDIR=	lib/aap/Exec-${PORTVERSION}
32
INSTALLDIR=	${PREFIX}/lib/aap/Exec-${PORTVERSION}
35
INSTALLDIR=	${PREFIX}/${AAPEXECDIR}
36
do-install:
33
do-install:
37
	cd ${WRKSRC} && \
34
	cd ${WRKSRC} && \
38
		${MKDIR} -m 755 ${INSTALLDIR}/doc ${INSTALLDIR}/tools && \
35
		${MKDIR} -m 755 ${INSTALLDIR}/tools && \
39
		${INSTALL_SCRIPT} *.py aap ${INSTALLDIR} && \
36
		${INSTALL_SCRIPT} *.py aap ${INSTALLDIR} && \
40
		${INSTALL_SCRIPT} tools/*.py ${INSTALLDIR}/tools && \
41
		${INSTALL_DATA} -m 644 COPYING README.txt filetype.txt default.aap ${INSTALLDIR} && \
42
		${INSTALL_DATA} doc/*.html doc/exec.pdf ${INSTALLDIR}/doc && \
43
		${INSTALL_DATA} aap.1 ${PREFIX}/man/man1 && \
44
		${LN} -fhs ${INSTALLDIR}/aap ${PREFIX}/bin/aap && \
37
		${LN} -fhs ${INSTALLDIR}/aap ${PREFIX}/bin/aap && \
38
		${INSTALL_SCRIPT} tools/*.py ${INSTALLDIR}/tools && \
39
		${INSTALL_DATA} -m 644 COPYING README.txt default.aap ${INSTALLDIR} && \
40
		${INSTALL_DATA} aap.1 ${PREFIX}/man/man1
41
.if !defined(NOPORTDOCS)
42
	cd ${WRKSRC} && \
43
		${MKDIR} -m 755 ${INSTALLDIR}/doc ${INSTALLDIR}/doc/html && \
44
		${INSTALL_DATA} filetype.txt doc/exec.pdf ${INSTALLDIR}/doc && \
45
		${INSTALL_DATA} doc/*.html ${INSTALLDIR}/doc/html && \
45
		${LN} -fhs ${INSTALLDIR}/doc ${PREFIX}/share/doc/aap
46
		${LN} -fhs ${INSTALLDIR}/doc ${PREFIX}/share/doc/aap
47
.endif
48
	cd ${INSTALLDIR} && \
49
		${PYTHON_CMD} -c "import compileall; compileall.compile_dir('.', 1)"
46
50
47
post-install:
51
test: install
48
	@${SED} -e 's,@PYTHON_CMD@,${PYTHON_CMD},g ; \
52
	cd ${WRKSRC}; ${PREFIX}/bin/aap
49
			s,@AAPEXECDIR@,${AAPEXECDIR},g' \
50
			< ${FILESDIR}/pkg-install.in > ${WRKSRC}/pkg-install
51
	@${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${WRKSRC}/pkg-install ${PKGNAME} POST-INSTALL
52
53
test:
54
	cd ${WRKSRC}; ./aap
55
53
56
.include <bsd.port.mk>
54
.include <bsd.port.mk>
(-)aap/files/pkg-install.in (-15 lines)
Lines 1-15 Link Here
1
#!/bin/sh
2
# $FreeBSD: ports/devel/aap/files/pkg-install.in,v 1.1 2003/06/18 20:40:55 marcus Exp $
3
 
4
if [ "$2" != "POST-INSTALL" ]; then
5
	exit 0
6
fi
7
8
PYTHON_CMD=@PYTHON_CMD@
9
INSTALLDIR=${PKG_PREFIX}/@AAPEXECDIR@
10
11
echo 'Compiling files...'
12
(cd ${INSTALLDIR} && \
13
	${PYTHON_CMD} -c "import compileall; compileall.compile_dir('.', 1)" && \
14
	${PYTHON_CMD} -O -c "import compileall; compileall.compile_dir('.', 1)" \
15
	) || exit 1
(-)aap/pkg-plist (-47 / +89 lines)
Lines 1-98 Link Here
1
bin/aap
1
bin/aap
2
lib/aap/Exec-%%PORTVERSION%%/Action.py
2
lib/aap/Exec-%%PORTVERSION%%/Action.py
3
lib/aap/Exec-%%PORTVERSION%%/Action.pyc
3
lib/aap/Exec-%%PORTVERSION%%/Args.py
4
lib/aap/Exec-%%PORTVERSION%%/Args.py
5
lib/aap/Exec-%%PORTVERSION%%/Args.pyc
4
lib/aap/Exec-%%PORTVERSION%%/COPYING
6
lib/aap/Exec-%%PORTVERSION%%/COPYING
5
lib/aap/Exec-%%PORTVERSION%%/Cache.py
7
lib/aap/Exec-%%PORTVERSION%%/Cache.py
8
lib/aap/Exec-%%PORTVERSION%%/Cache.pyc
6
lib/aap/Exec-%%PORTVERSION%%/Commands.py
9
lib/aap/Exec-%%PORTVERSION%%/Commands.py
10
lib/aap/Exec-%%PORTVERSION%%/Commands.pyc
7
lib/aap/Exec-%%PORTVERSION%%/CopyMove.py
11
lib/aap/Exec-%%PORTVERSION%%/CopyMove.py
12
lib/aap/Exec-%%PORTVERSION%%/CopyMove.pyc
8
lib/aap/Exec-%%PORTVERSION%%/Depend.py
13
lib/aap/Exec-%%PORTVERSION%%/Depend.py
14
lib/aap/Exec-%%PORTVERSION%%/Depend.pyc
9
lib/aap/Exec-%%PORTVERSION%%/Dictlist.py
15
lib/aap/Exec-%%PORTVERSION%%/Dictlist.py
16
lib/aap/Exec-%%PORTVERSION%%/Dictlist.pyc
10
lib/aap/Exec-%%PORTVERSION%%/DoAddDef.py
17
lib/aap/Exec-%%PORTVERSION%%/DoAddDef.py
18
lib/aap/Exec-%%PORTVERSION%%/DoAddDef.pyc
11
lib/aap/Exec-%%PORTVERSION%%/DoArgs.py
19
lib/aap/Exec-%%PORTVERSION%%/DoArgs.py
20
lib/aap/Exec-%%PORTVERSION%%/DoArgs.pyc
12
lib/aap/Exec-%%PORTVERSION%%/DoBuild.py
21
lib/aap/Exec-%%PORTVERSION%%/DoBuild.py
22
lib/aap/Exec-%%PORTVERSION%%/DoBuild.pyc
13
lib/aap/Exec-%%PORTVERSION%%/DoInstall.py
23
lib/aap/Exec-%%PORTVERSION%%/DoInstall.py
24
lib/aap/Exec-%%PORTVERSION%%/DoInstall.pyc
14
lib/aap/Exec-%%PORTVERSION%%/DoRead.py
25
lib/aap/Exec-%%PORTVERSION%%/DoRead.py
26
lib/aap/Exec-%%PORTVERSION%%/DoRead.pyc
15
lib/aap/Exec-%%PORTVERSION%%/Error.py
27
lib/aap/Exec-%%PORTVERSION%%/Error.py
28
lib/aap/Exec-%%PORTVERSION%%/Error.pyc
16
lib/aap/Exec-%%PORTVERSION%%/Filetype.py
29
lib/aap/Exec-%%PORTVERSION%%/Filetype.py
30
lib/aap/Exec-%%PORTVERSION%%/Filetype.pyc
17
lib/aap/Exec-%%PORTVERSION%%/Global.py
31
lib/aap/Exec-%%PORTVERSION%%/Global.py
32
lib/aap/Exec-%%PORTVERSION%%/Global.pyc
18
lib/aap/Exec-%%PORTVERSION%%/Main.py
33
lib/aap/Exec-%%PORTVERSION%%/Main.py
34
lib/aap/Exec-%%PORTVERSION%%/Main.pyc
19
lib/aap/Exec-%%PORTVERSION%%/Message.py
35
lib/aap/Exec-%%PORTVERSION%%/Message.py
36
lib/aap/Exec-%%PORTVERSION%%/Message.pyc
20
lib/aap/Exec-%%PORTVERSION%%/Node.py
37
lib/aap/Exec-%%PORTVERSION%%/Node.py
38
lib/aap/Exec-%%PORTVERSION%%/Node.pyc
21
lib/aap/Exec-%%PORTVERSION%%/ParsePos.py
39
lib/aap/Exec-%%PORTVERSION%%/ParsePos.py
40
lib/aap/Exec-%%PORTVERSION%%/ParsePos.pyc
22
lib/aap/Exec-%%PORTVERSION%%/PkgInstall.py
41
lib/aap/Exec-%%PORTVERSION%%/PkgInstall.py
42
lib/aap/Exec-%%PORTVERSION%%/PkgInstall.pyc
23
lib/aap/Exec-%%PORTVERSION%%/Port.py
43
lib/aap/Exec-%%PORTVERSION%%/Port.py
44
lib/aap/Exec-%%PORTVERSION%%/Port.pyc
24
lib/aap/Exec-%%PORTVERSION%%/PrintProfile.py
45
lib/aap/Exec-%%PORTVERSION%%/PrintProfile.py
46
lib/aap/Exec-%%PORTVERSION%%/PrintProfile.pyc
25
lib/aap/Exec-%%PORTVERSION%%/Process.py
47
lib/aap/Exec-%%PORTVERSION%%/Process.py
48
lib/aap/Exec-%%PORTVERSION%%/Process.pyc
26
lib/aap/Exec-%%PORTVERSION%%/README.txt
49
lib/aap/Exec-%%PORTVERSION%%/README.txt
27
lib/aap/Exec-%%PORTVERSION%%/RecPos.py
50
lib/aap/Exec-%%PORTVERSION%%/RecPos.py
51
lib/aap/Exec-%%PORTVERSION%%/RecPos.pyc
28
lib/aap/Exec-%%PORTVERSION%%/RecPython.py
52
lib/aap/Exec-%%PORTVERSION%%/RecPython.py
53
lib/aap/Exec-%%PORTVERSION%%/RecPython.pyc
29
lib/aap/Exec-%%PORTVERSION%%/Remote.py
54
lib/aap/Exec-%%PORTVERSION%%/Remote.py
55
lib/aap/Exec-%%PORTVERSION%%/Remote.pyc
30
lib/aap/Exec-%%PORTVERSION%%/RootShell.py
56
lib/aap/Exec-%%PORTVERSION%%/RootShell.py
57
lib/aap/Exec-%%PORTVERSION%%/RootShell.pyc
31
lib/aap/Exec-%%PORTVERSION%%/Rule.py
58
lib/aap/Exec-%%PORTVERSION%%/Rule.py
59
lib/aap/Exec-%%PORTVERSION%%/Rule.pyc
32
lib/aap/Exec-%%PORTVERSION%%/Scope.py
60
lib/aap/Exec-%%PORTVERSION%%/Scope.py
61
lib/aap/Exec-%%PORTVERSION%%/Scope.pyc
33
lib/aap/Exec-%%PORTVERSION%%/Sign.py
62
lib/aap/Exec-%%PORTVERSION%%/Sign.py
63
lib/aap/Exec-%%PORTVERSION%%/Sign.pyc
34
lib/aap/Exec-%%PORTVERSION%%/Util.py
64
lib/aap/Exec-%%PORTVERSION%%/Util.py
65
lib/aap/Exec-%%PORTVERSION%%/Util.pyc
35
lib/aap/Exec-%%PORTVERSION%%/VersCont.py
66
lib/aap/Exec-%%PORTVERSION%%/VersCont.py
67
lib/aap/Exec-%%PORTVERSION%%/VersCont.pyc
36
lib/aap/Exec-%%PORTVERSION%%/VersContCvs.py
68
lib/aap/Exec-%%PORTVERSION%%/VersContCvs.py
69
lib/aap/Exec-%%PORTVERSION%%/VersContCvs.pyc
37
lib/aap/Exec-%%PORTVERSION%%/Version.py
70
lib/aap/Exec-%%PORTVERSION%%/Version.py
71
lib/aap/Exec-%%PORTVERSION%%/Version.pyc
38
lib/aap/Exec-%%PORTVERSION%%/Work.py
72
lib/aap/Exec-%%PORTVERSION%%/Work.py
73
lib/aap/Exec-%%PORTVERSION%%/Work.pyc
39
lib/aap/Exec-%%PORTVERSION%%/__init__.py
74
lib/aap/Exec-%%PORTVERSION%%/__init__.py
75
lib/aap/Exec-%%PORTVERSION%%/__init__.pyc
40
lib/aap/Exec-%%PORTVERSION%%/aap
76
lib/aap/Exec-%%PORTVERSION%%/aap
41
lib/aap/Exec-%%PORTVERSION%%/aap.py
77
lib/aap/Exec-%%PORTVERSION%%/aap.py
78
lib/aap/Exec-%%PORTVERSION%%/aap.pyc
42
lib/aap/Exec-%%PORTVERSION%%/aapnetrc.py
79
lib/aap/Exec-%%PORTVERSION%%/aapnetrc.py
80
lib/aap/Exec-%%PORTVERSION%%/aapnetrc.pyc
43
lib/aap/Exec-%%PORTVERSION%%/default.aap
81
lib/aap/Exec-%%PORTVERSION%%/default.aap
44
lib/aap/Exec-%%PORTVERSION%%/doc/exec.html
82
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/exec.pdf
45
lib/aap/Exec-%%PORTVERSION%%/doc/exec.pdf
83
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/filetype.txt
46
lib/aap/Exec-%%PORTVERSION%%/doc/index.html
84
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/exec.html
47
lib/aap/Exec-%%PORTVERSION%%/doc/license.html
85
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/index.html
48
lib/aap/Exec-%%PORTVERSION%%/doc/ln12.html
86
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/license.html
49
lib/aap/Exec-%%PORTVERSION%%/doc/p1714.html
87
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/ln12.html
50
lib/aap/Exec-%%PORTVERSION%%/doc/p2794.html
88
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/p1714.html
51
lib/aap/Exec-%%PORTVERSION%%/doc/p30.html
89
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/p2794.html
52
lib/aap/Exec-%%PORTVERSION%%/doc/p794.html
90
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/p30.html
53
lib/aap/Exec-%%PORTVERSION%%/doc/ref-arguments.html
91
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/p794.html
54
lib/aap/Exec-%%PORTVERSION%%/doc/ref-attributes.html
92
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/ref-arguments.html
55
lib/aap/Exec-%%PORTVERSION%%/doc/ref-commands.html
93
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/ref-attributes.html
56
lib/aap/Exec-%%PORTVERSION%%/doc/ref-syntax.html
94
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/ref-commands.html
57
lib/aap/Exec-%%PORTVERSION%%/doc/ref-variables.html
95
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/ref-syntax.html
58
lib/aap/Exec-%%PORTVERSION%%/doc/tutor-actions.html
96
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/ref-variables.html
59
lib/aap/Exec-%%PORTVERSION%%/doc/tutor-compile.html
97
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/tutor-actions.html
60
lib/aap/Exec-%%PORTVERSION%%/doc/tutor-cvs.html
98
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/tutor-compile.html
61
lib/aap/Exec-%%PORTVERSION%%/doc/tutor-distribute.html
99
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/tutor-cvs.html
62
lib/aap/Exec-%%PORTVERSION%%/doc/tutor-include.html
100
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/tutor-distribute.html
63
lib/aap/Exec-%%PORTVERSION%%/doc/tutor-pipe.html
101
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/tutor-include.html
64
lib/aap/Exec-%%PORTVERSION%%/doc/tutor-port.html
102
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/tutor-pipe.html
65
lib/aap/Exec-%%PORTVERSION%%/doc/tutor-python.html
103
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/tutor-port.html
66
lib/aap/Exec-%%PORTVERSION%%/doc/tutor-start.html
104
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/tutor-python.html
67
lib/aap/Exec-%%PORTVERSION%%/doc/tutor-variant.html
105
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/tutor-start.html
68
lib/aap/Exec-%%PORTVERSION%%/doc/tutor-website.html
106
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/tutor-variant.html
69
lib/aap/Exec-%%PORTVERSION%%/doc/user-autodep.html
107
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/tutor-website.html
70
lib/aap/Exec-%%PORTVERSION%%/doc/user-basics.html
108
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-autodep.html
71
lib/aap/Exec-%%PORTVERSION%%/doc/user-cvs.html
109
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-basics.html
72
lib/aap/Exec-%%PORTVERSION%%/doc/user-debug.html
110
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-cvs.html
73
lib/aap/Exec-%%PORTVERSION%%/doc/user-depend.html
111
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-debug.html
74
lib/aap/Exec-%%PORTVERSION%%/doc/user-fetch.html
112
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-depend.html
75
lib/aap/Exec-%%PORTVERSION%%/doc/user-filetype.html
113
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-fetch.html
76
lib/aap/Exec-%%PORTVERSION%%/doc/user-install.html
114
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-filetype.html
77
lib/aap/Exec-%%PORTVERSION%%/doc/user-issue.html
115
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-install.html
78
lib/aap/Exec-%%PORTVERSION%%/doc/user-makedif.html
116
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-issue.html
79
lib/aap/Exec-%%PORTVERSION%%/doc/user-package.html
117
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-makedif.html
80
lib/aap/Exec-%%PORTVERSION%%/doc/user-porting.html
118
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-package.html
81
lib/aap/Exec-%%PORTVERSION%%/doc/user-publish.html
119
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-porting.html
82
lib/aap/Exec-%%PORTVERSION%%/doc/user-python.html
120
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-publish.html
83
lib/aap/Exec-%%PORTVERSION%%/doc/user-tools.html
121
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-python.html
84
lib/aap/Exec-%%PORTVERSION%%/doc/user-variant.html
122
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-tools.html
85
lib/aap/Exec-%%PORTVERSION%%/doc/user-version.html
123
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-variant.html
86
lib/aap/Exec-%%PORTVERSION%%/filetype.txt
124
%%PORTDOCS%%lib/aap/Exec-%%PORTVERSION%%/doc/html/user-version.html
87
lib/aap/Exec-%%PORTVERSION%%/tools/__init__.py
125
lib/aap/Exec-%%PORTVERSION%%/tools/__init__.py
126
lib/aap/Exec-%%PORTVERSION%%/tools/__init__.pyc
88
lib/aap/Exec-%%PORTVERSION%%/tools/gcc.py
127
lib/aap/Exec-%%PORTVERSION%%/tools/gcc.py
128
lib/aap/Exec-%%PORTVERSION%%/tools/gcc.pyc
89
lib/aap/Exec-%%PORTVERSION%%/tools/icc.py
129
lib/aap/Exec-%%PORTVERSION%%/tools/icc.py
130
lib/aap/Exec-%%PORTVERSION%%/tools/icc.pyc
90
lib/aap/Exec-%%PORTVERSION%%/tools/mingw.py
131
lib/aap/Exec-%%PORTVERSION%%/tools/mingw.py
132
lib/aap/Exec-%%PORTVERSION%%/tools/mingw.pyc
91
lib/aap/Exec-%%PORTVERSION%%/tools/msvc.py
133
lib/aap/Exec-%%PORTVERSION%%/tools/msvc.py
92
share/doc/aap
134
lib/aap/Exec-%%PORTVERSION%%/tools/msvc.pyc
93
@unexec rm -f %D/lib/aap/Exec-%%PORTVERSION%%/tools/*.py[co]
135
%%PORTDOCS%%share/doc/aap
94
@unexec rm -f %D/lib/aap/Exec-%%PORTVERSION%%/*.py[co]
95
@dirrm lib/aap/Exec-%%PORTVERSION%%/doc
96
@dirrm lib/aap/Exec-%%PORTVERSION%%/tools
136
@dirrm lib/aap/Exec-%%PORTVERSION%%/tools
137
%%PORTDOCS%%@dirrm lib/aap/Exec-%%PORTVERSION%%/doc/html
138
%%PORTDOCS%%@dirrm lib/aap/Exec-%%PORTVERSION%%/doc
97
@dirrm lib/aap/Exec-%%PORTVERSION%%
139
@dirrm lib/aap/Exec-%%PORTVERSION%%
98
@dirrm lib/aap
140
@dirrm lib/aap

Return to bug 54014