- Timestamp:
- 08/27/08 15:14:11 (3 months ago)
- Location:
- trunk/dports/graphics/dcraw
- Files:
-
- 2 modified
-
Portfile (modified) (1 diff)
-
files/Makefile.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dports/graphics/dcraw/Portfile
r39649 r39650 35 35 post-extract { 36 36 xinstall -W ${filespath} Makefile.in ${worksrcpath}/Makefile 37 xinstall -d ${worksrcpath}/build38 37 # Move "install" script; it conflicts with the destroot phase ("make install") 39 38 move ${worksrcpath}/install ${worksrcpath}/install.sh -
trunk/dports/graphics/dcraw/files/Makefile.in
r39645 r39650 5 5 PREFIX = @PREFIX@ 6 6 7 all: dcraw 7 BUILD_DIR = build 8 8 9 dcraw: 10 $(CC) -o dcraw $(CFLAGS) dcraw.c -ljpeg -llcms -lintl -liconv $(CPPFLAGS) $(LDFLAGS) -DLOCALEDIR=\"$(PREFIX)/share/locale/\" 9 all: $(BUILD_DIR)/dcraw 10 11 $(BUILD_DIR)/dcraw: $(BUILD_DIR) 12 $(CC) -o $(BUILD_DIR)/dcraw $(CFLAGS) dcraw.c -ljpeg -llcms -lintl -liconv $(CPPFLAGS) $(LDFLAGS) -DLOCALEDIR=\"$(PREFIX)/share/locale/\" 13 14 $(BUILD_DIR): 15 mkdir -p $(BUILD_DIR) 11 16 12 17 install: 13 install -s -m 755 dcraw $(DESTDIR)$(PREFIX)/bin18 install -s -m 755 $(BUILD_DIR)/dcraw $(DESTDIR)$(PREFIX)/bin

